The stringio tag has no wiki summary.
0
votes
1answer
37 views
Python Curl writefunction not working onsecond call
I've written a simple script in Python.
It parses the hyperlinks from a webpage, and afterwards these links are retrieved to parse some information.
I have similar scripts running and re-using the ...
0
votes
1answer
51 views
scikit-image save image to a bytestring
I'm using scikit-image to read an image:
img = skimage.io.imread(filename)
After doing some manipulations to img, I'd like to save it to an in-memory file (a la StringIO) to pass off to another ...
0
votes
1answer
64 views
Create image object from image stdout output of external program in Python
I have a program that generates pictures and either saves them to a file or prints out the raw image data in standard output. I am using Python subprocess module to call the external program, catch ...
1
vote
1answer
118 views
How can I get the response body from pycurl multi curl requests.
I seem to be hitting a brick wall with trying to run curl multi requests. It seems as though my code is performing the requests successfully, but I have no idea how to get the actual response body ...
2
votes
1answer
46 views
PyGame load cStringIO as image
So, I've tried a few solutions on the net for this but each one returns a different error. Most recently I've decided to try something like:
import cStringIO, pygame, os
from pygame.locals import *
...
2
votes
1answer
41 views
What is >> for after print command in python 2?
import cStringIO
output = cStringIO.StringIO()
output.write('First line.\n')
print >>output, 'Second line.'
# Retrieve file contents -- this will be
# 'First line.\nSecond line.\n'
contents = ...
0
votes
1answer
89 views
Download and decompress gzipped file in memory?
I would like to download a file using urllib and decompress the file in memory before saving.
This is what I have right now:
response = urllib2.urlopen(baseURL + filename)
compressedFile = ...
0
votes
0answers
186 views
Finding the content type of the uploaded file in rails
I am working on ruby on rails. I am trying to do a file attachment (image/audio/video) .
So i have a common method like
byteArray = StringIO.new(File.open("path").read)
Is it possible to find the ...
1
vote
0answers
100 views
How to empty the buffer stringIO in python
Actually i am trying to export a csv file with some data and below is my code
import csv
from cStringIO import StringIO
import web
def download(list__of_records):
csv_file = StringIO()
...
0
votes
3answers
77 views
unzipping a zip archive from a string
I have a zip archive in a string, but the rubyzip gem appears to want input from a file. The best I've come up with is to write the zip archive to a tempfile for the sole purpose of passing the ...
0
votes
1answer
98 views
To check an instance is 'StringIO'
>>> import cStringIO
>>> a = cStringIO.StringIO()
>>> type(a)
<type 'cStringIO.StringO'>
>>> isinstance(a, cStringIO.StringO)
Traceback (most recent call ...
0
votes
0answers
106 views
How to call Python Cmd instance remotely/programmatically, replacing stdin and stdout pipes?
I'd like to have a Python Cmd instance running in a separate thread, and be able to write input and read output from other parts of my program.
In the constructor of Cmd, it is possible to specify ...
1
vote
3answers
162 views
python sys.stdout and C++ iostreams::cout
I was assuming that sys.stdout would be referencing the same physical stream as iostreams::cout running in the same process, but this doesn't seem to be the case.
The following code, which makes a ...
0
votes
1answer
82 views
Load a list into memory with python? or is it already in the memory?
I'm writing a program that opens a database file saved with pickle.
but if i want to load the list from the file into the memory with StringIO/cStringIO it says:
Opening database...
Loading database ...
0
votes
1answer
78 views
How does one add string to tarfile in Python3
I have problem adding an str to a tar arhive in python. In python 2 I used such method:
fname = "archive_name"
params_src = "some arbitrarty string to be added to the archive"
params_sio = ...
0
votes
1answer
95 views
How to strip password encryption from zipfile with Python
I have an use case where I need to strip decryption of password protected zip file attached to an email, and replace it with the same zip file unencrypted. What I have so far:
import zipfile
import ...
0
votes
1answer
74 views
different between stringio.write and += on byte stream
I met a strange problem recently, hope someone here can help me out. I'm using Python2.7 in Ubuntu12.04, both python and OS are 64-bits.
In my code, I need to keep appending incoming data stream to a ...
1
vote
2answers
236 views
Python StringIO - selectively place data into stdin
We're using a bit of compiled python code that we don't have the source to. The code prompts for user input and we're trying to automate that portion.
Basically asks for username, password, then ...
1
vote
1answer
221 views
python : post data within stringIO through poster?
params = {'file': open("test.txt", "rb"), 'name': 'upload test'}
datagen, headers = poster.encode.multipart_encode(params)
request = urllib2.Request(upload_url, datagen, headers)
result = ...
0
votes
1answer
459 views
How to read image from in memory buffer (StringIO) or from url with opencv python library
Just share a way to create opencv image object from in memory buffer or from url to improve performance.
Sometimes we get image binary from url, to avoid additional file IO, we want to imread this ...
0
votes
1answer
258 views
pyqt : QPixmap save to StringIO?
I try to POST QPixmap image bia http. To do that, I have to let QPixmap save to temporary file and read it as python file class, do POST works. But I think that there is another way to POST QPixmap. ...
4
votes
2answers
390 views
How to pipe binary data into numpy arrays without tmp storage?
There are several similar questions but none of them answers this simple question directly:
How can i catch a commands output and stream that content into numpy arrays without creating a temporary ...
1
vote
4answers
111 views
Python application won't exit when using stringIO and pygame.mixer.music.load()
I'm using StringIO to stream music data, but it appears that when I run with pygame.mixer.music.load(), my application won't exit. Even if I use close():
def PlaySong(self, song_id):
song = ...
3
votes
1answer
278 views
Python(2.6) cStringIO unicode support?
I'm using python pycurl module to download content from various web pages. Since I also wanted to support potential unicode text I've been avoiding the cStringIO.StringIO function which according to ...
10
votes
2answers
1k views
What are the advantages to using StringIO in Ruby as opposed to String?
I'm relatively new to Ruby, and I was curious as to when it is considered proper to use Ruby's StringIO as opposed to just using String.
I think I understand the fundamental difference between them ...
2
votes
1answer
257 views
Python's StringIO doesn't do well with `with` statements
I need to stub tempfile and StringIO seemed perfect. Only that all this fails in an omission:
In [1]: from StringIO import StringIO
In [2]: with StringIO("foo") as f: f.read()
--> AttributeError: ...
3
votes
3answers
79 views
should chained calls be used in favor of more explicit assignments?
our team have to snippet like below:
this:
buf = StringIO.StringIO()
gzip.GzipFile(fileobj=buf, mode='wb').write(foo)
...
and this one:
buf = StringIO.StringIO()
tmp = gzip.GzipFile(fileobj=buf, ...
5
votes
3answers
721 views
Extracting a zipfile to memory?
How do I extract a zip to memory?
My attempt (returning None on .getvalue()):
from zipfile import ZipFile
from StringIO import StringIO
def extract_zip(input_zip):
return ...
1
vote
2answers
227 views
Capture output from subprocess.call that I have no control over
I'm testing a piece of Python code that uses subprocess.call(), so I have no control over that function call. I need to capture the output from that system call to do assertions. I tried to set ...
4
votes
2answers
1k views
File upload Base64 encoded string in PaperClip using Rails 3
I have at base64 encoded string of a image file. I need to save it using Paper Clip
My Controller code is
@driver = User.find(6)
encoded_file = ...
7
votes
1answer
620 views
Fail to get data on using read() of StringIO in python
Using Python2.7 version. Below is my sample code.
import StringIO
import sys
buff = StringIO.StringIO()
buff.write("hello")
print buff.read()
in the above program, read() returns me nothing where ...
2
votes
3answers
411 views
Including base64-encoded image in ReportLab-generated PDF
I am trying to decode base64-encoded image and put it into PDF I generate using ReportLab. I currently do it like that (image_data is base64-encoded image, story is already a ReportLab's story):
# ...
0
votes
2answers
152 views
Is there a way to make StringIO reading blocking
I've searched through the documentation and searched around but there is nothing said about blocking StringIO objects.
I could create my own file-like object that just simply wraps around StringIO ...
5
votes
3answers
762 views
Do i have to do StringIO.close()?
Some code:
import cStringIO
def f():
buffer = cStringIO.StringIO()
buffer.write('something')
return buffer.getvalue()
The docs say:
StringIO.close(): Free the memory buffer. ...
0
votes
1answer
84 views
Translate standard output memory file to string of English text as if a print command were being used
I am running a find command for a particular file that I know exists. I would like to get the path to that file, because I don't want to assume that I know where the file is located. My understanding ...
4
votes
1answer
816 views
Python logging to StringIO handler
I have a python test in which I want to test if the logging works properly. For example I have a function that creates a user and at the end the logging writes to log file the response.
logger = ...
2
votes
1answer
591 views
io.StringIO encoding in python3
I can't seem to find what's the default encoding for io.StringIO in Python3. Is it the locale as with stdio?
How can I change it?
With stdio, seems that just reopening with correct encoding works, ...
0
votes
1answer
358 views
Passing python StringIO to C++ stringstream using swig
I've got some python code that generates a StringIO variable. I'd like to pass this variable to a C++ function using a stringstream parameter (on the assumption C++ stringstream is the closest match ...
5
votes
4answers
2k 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:
...
0
votes
2answers
278 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 ...
1
vote
2answers
319 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 ...
2
votes
2answers
547 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') # ...
0
votes
2answers
230 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 ...
2
votes
3answers
2k 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 ...
0
votes
2answers
478 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 ...
5
votes
2answers
232 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 ...
1
vote
1answer
739 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')
...
7
votes
3answers
2k 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
2answers
475 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 ...
0
votes
1answer
1k 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 ...
