7
tengo problema con este código:tmpfile y la combinación gzip problema
file = tempfile.TemporaryFile(mode='wrb')
file.write(base64.b64decode(data))
file.flush()
os.fsync(file)
# file.seek(0)
f = gzip.GzipFile(mode='rb', fileobj=file)
print f.read()
No sé por qué no imprime nada. Si Descomentar file.seek continuación, se produce un error:
File "/usr/lib/python2.5/gzip.py", line 263, in _read
self._read_gzip_header()
File "/usr/lib/python2.5/gzip.py", line 162, in _read_gzip_header
magic = self.fileobj.read(2)
IOError: [Errno 9] Bad file descriptor
Sólo por la información de esta versión funciona bien:
x = open("test.gzip", 'wb')
x.write(base64.b64decode(data))
x.close()
f = gzip.GzipFile('test.gzip', 'rb')
print f.read()
EDIT: Para el problema WRB. No me da un error al inicializarlo. Python 2.5.2.
>>> t = tempfile.TemporaryFile(mode="wrb")
>>> t.write("test")
>>> t.seek(0)
>>> t.read()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IOError: [Errno 9] Bad file descriptor
Gracias! Y tempfile no informa esto. Tal vez debería informar esto? –
@Vojtech R. Sí. Pruebe barebones 'fhandle = tempfile.TemporaryFile (mode = 'wrb')' (devuelve un argumento OSError Errno22 Invalid ...) – ChristopheD
@ChristopheD. Agregué el ejemplo a la pregunta. Ningún error hasta .read(). –