Tagged Questions
The stringio tag has no wiki summary.
7
votes
3answers
5k views
Retrieving the output of subprocess.call()
How can I get the output of a process run using subprocess.call()?
Passing a StringIO.StringIO object to stdout gives this error:
Traceback (most recent call last):
File "<stdin>", line 1, ...
6
votes
1answer
617 views
how do I clear a stringio object?
I have a stringio object created and it has some text in it. I'd like to clear its existing values and reuse it instead of recalling it. Is there anyway of doing this?
5
votes
2answers
87 views
lxml.etree.iterparse closes input file handler?
filterous is using iterparse to parse a simple XML StringIO object in a unit test. However, when trying to access the StringIO object afterwards, Python exits with a "ValueError: I/O operation on ...
5
votes
4answers
2k views
python StringIO usage?
Using StringIO as string buffer is slower than using list as buffer. when is StringIO used?
from io import StringIO
def meth1(string):
a = []
for i in range(100):
a.append(string)
...
5
votes
2answers
2k views
Python: How to get StringIO.writelines to accept unicode string?
I'm getting a
UnicodeEncodeError: 'ascii' codec can't encode character u'\xa3' in position 34: ordinal not in range(128)
on a string stored in 'a.desc' below as it contains the '£' character. ...
4
votes
3answers
305 views
Python StringIO replacement that works with bytes instead of strings?
Is there any replacement for python StringIO class, one that will work with bytes instead of strings?
It may not be obvious but if you used StringIO for processing binary data you are out of luck ...
3
votes
1answer
323 views
Can I use cStringIO the same as StringIO?
I did this:
import cStringIO.StringIO as StringIO
And I realize I've been using it everywhere. Is that fine?
Is it treated the same as StringIO?
3
votes
2answers
178 views
Python's StringIO for Clojure
Is there something equivalent to Python's StingIO for Clojure?
I'm trying to write a report generating/literate programming system similar to Sweave and Pweave for Clojure. I'm currently using a temp ...
3
votes
1answer
471 views
Unicode problems when using io.StringIO to mock a file
I am using an io.StringIO object to mock a file in a unit-test for a class. The problem is that this class seems expect all strings to be unicode by default, but the builtin str does not return ...
3
votes
2answers
763 views
python 2.7 / exec / what is wrong?
I have this code which runs fine in Python 2.5 but not in 2.7:
import sys
import traceback
try:
from io import StringIO
except:
from StringIO import StringIO
def CaptureExec(stmt):
oldio ...
2
votes
4answers
207 views
Using Python, how do you untar purely in memory?
I'm working in an environment where I can't save anything to disk. I need to be able to pull tar files and unzip them without saving to disk. This seems to fail:
I've tried this but it tosses errors:
...
2
votes
2answers
188 views
Numpy array from cStringIO object and avoiding copies
This to understand things better. It is not an actual problem that I need to fix. A cstringIO object is supposed to emulate a string, file and also an iterator over the lines. Does it also emulate a ...
2
votes
4answers
784 views
Storing image using open URI and paperclip having size less than 10kb
I want to import some icons from my old site. The size of those icons is less than 10kb. So when I am trying to import the icons its returning stringio.txt file.
require "open-uri"
class Category ...
2
votes
4answers
256 views
Is Python cStringIO thread-safe?
As title say, does Python cStringIO protect their internal structures for multithreading use?
Thank you.
2
votes
1answer
77 views
How to make cStringIO transparent to another function that expects a real local file
I came up with the following problem: CODE A works right now.. I am saving a png file called chart.png locally, and then I am loading it into the proprietary function (which I do not have access).
...
2
votes
6answers
2k views
How to loop until EOF in Python?
I need to loop until I hit the end of a file-like object, but I'm not finding an "obvious way to do it", which makes me suspect I'm overlooking something, well, obvious. :-)
I have a stream (in this ...
1
vote
2answers
84 views
What is StringIO() used for in this script?
I just started using Django and Python and I'm trying to build a photo app. This script is generating thumbnails and I'd like to do that myself. Unfortunately I don't understand what StringIO() is ...
1
vote
2answers
84 views
fast way to read from StringIO until some byte is encountered
Suppose I have some StringIO (from cStringIO). I want to read buffer from it until some character/byte is encountered, say 'Z', so:
stringio = StringIO('ABCZ123')
buf = read_until(stringio, 'Z') # ...
1
vote
3answers
172 views
StringIO with binary files?
I seem to get different outputs:
from StringIO import *
file = open('1.bmp', 'r')
print file.read(), '\n'
print StringIO(file.read()).getvalue()
Why? Is it because StringIO only supports text ...
1
vote
1answer
254 views
In Python, how to write back a stringIO text file to a zip archive, then back to bytea field in PostgreSQL?
A relative noob to Python, I've successfully pulled a text file, out of a zip archive, contained in a PostgreSQL bytea field, using this code:
myzip = ZipFile(StringIO(rv[0]["archivefield"]), 'a')
...
1
vote
1answer
361 views
Converting a StringIO object to a Django ImageFile
I'm trying to take data from a StringIO (or cStringIO, more specifically) and convert it to a django.core.files.images.ImageFile.
But it doesn't work. Any by that, I mean that it fails in a multitude ...
1
vote
2answers
597 views
BytesIO with python v2.5
Question:
How do I get a byte stream that works like StringIO for Python 2.5?
Application:
I'm converting a PDF to text, but don't want to save a file to the hard disk.
Other Thoughts:
I figured ...
0
votes
2answers
52 views
Alternative to urllib.urlencode for encoding a URL
I'm trying to send a request to an API that only accepts XML. I've used elementtree.SimpleXMLWriter to build the XML tree and it's stored in a StringIO object. That's all fine and dandy.
The problem ...
0
votes
2answers
66 views
Downloading a file into memory
I am writing a python script and I just need the second line of a series of very small text files. I would like to extract this without saving the file to my harddrive as I currently do.
I have ...
0
votes
2answers
101 views
Basic Python StringIO — Why is GetValue() Returning Nothing?
I'm having basic python issues.. In the following example no errors are returned but displaying the contents of all variables using pprint shows that contents is = '' -- why would this possibly be the ...
0
votes
1answer
252 views
How can I pass a Python StringIO() object to a ZipFile(), or is it not supported?
So I have a StringIO() file-like object, and I am trying to write it to a ZipFile(), but I get this TypeError:
coercing to Unicode: need string or buffer, cStringIO.StringI found
Here is a sample ...
0
votes
1answer
169 views
Strange “BadZipfile: Bad CRC-32” problem
This code is simplification of code in a Django app that receives an uploaded zip file via HTTP multi-part POST and does read-only processing of the data inside:
#!/usr/bin/env python
import csv, ...
0
votes
2answers
208 views
Suppose I have a StringIO file. How can I use python-magic to check its file type?
import StringIO
import magic
m = magic.Magic()
thefile = StringIO.StringIO(request.raw_post_data) # I got this from Django. ajax file uploader.
what now?
0
votes
1answer
157 views
Create Python array.array Object from cStringIO Object
I want to create an array.array object from a cStringIO object:
import cStringIO, array
s = """
<several lines of text>
"""
f = cStringIO.StringIO(s)
a = ...
0
votes
1answer
130 views
help with handling tokenization errors
The code is in python.
Please find below the piece of code that I use to tokenize a string.
strList = list(token[STRING] for token in generate_tokens(StringIO(line).readline) if token[STRING])
I ...
0
votes
2answers
135 views
What is the best way to write the contents of a StringIO to a file?
What is the best way to write the contents of a StringIO buf to a file ?
I currently do something like:
buf = StringIO()
fd = open ('file.xml', 'w')
# populate buf
fd.write (buf.getvalue ())
But ...
0
votes
2answers
698 views
Function to create in-memory zip file and return as http response
I am avoiding the creation of files on disk, this is what I have got so far:
def get_zip(request):
import zipfile, StringIO
i = open('picture.jpg', 'rb').read()
o = StringIO.StringIO()
...