vote up 9 vote down star
1

How do I create a file-like object (same duck time as File) with the contents of a string?

flag

3 Answers

vote up 0 vote down

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

link|flag
"Page not found" -- rfk.id.au/software/projects/… – J.F. Sebastian Feb 7 at 23:00
What a shame. Can't find the orginal... – e-satis Feb 8 at 18:56
vote up 5 vote down

In Python 3.0:

import io

with io.StringIO() as f:
    f.write('abcdef')
    print('gh', file=f)
    f.seek(0)
    print(f.read())
link|flag
vote up 16 vote down check

Use the StringIO module. For example:

>>> from cStringIO import StringIO
>>> f = StringIO('foo')
>>> f.read()
'foo'

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".)

link|flag
There is a reason now to use cStringIO: cStringIO doesn't support unicode strings. – Armin Ronacher Sep 26 '08 at 21:38
I think a better idea is to do 'import cStringIO as StringIO'. That way if you need to switch to the pure python implementation for any reason, you only need to change one line.. – John Fouhy Sep 28 '08 at 21:55
I made edits after reading the above comments. Thank you both. – Daryl Spitzer Sep 29 '08 at 20:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.