How do I create a file-like object (same duck time as File) with the contents of a string?
|
|
Two good answers. I'd add a little trick. If you need a real file object some methods expect one and not just an interface, here is a way to create an adapter : http://www.rfk.id.au/software/projects/filelike/api/filelike.htm |
||||
|
|
|
In Python 3.0:
|
||
|
|
|
|
Use the StringIO module. For example:
I use cStringIO (which is faster), but note that it doesn't accept Unicode strings that cannot be encoded as plain ASCII strings. (You can switch to StringIO by changing "from cStringIO" to "from StringIO".) |
||||||
|
