Tagged Questions
1
vote
3answers
64 views
Python and zlib: Terribly slow decompressing concatenated streams
I've been supplied with a zipped file containing multiple individual streams of compressed XML. The compressed file is 833 mb.
If I try to decompress it as a single object, I only get the first ...
1
vote
1answer
39 views
What is this unexpected behavior in Python's zlib?
I have an example in zlib that gives an unexpected result.
If I start with compressing a simple string:
>>> import zlib
>>> import binascii
>>> compressed = ...
0
votes
1answer
174 views
PIL IOError: decoder zip not available after built with ZLIB support
I've pointed setup.py towards /lib where my libz.so is. When I then run setup.py install, I get the ZLIB support confirmed:
--------------------------------------------------------------------
PIL ...
1
vote
2answers
72 views
How to force zlib to decompress more than X bytes?
I have a file that consists of compressed content plus a 32 byte header. The header contains info such as timestamp, compressed size, and uncompressed size.
The file itself is about 490mb and the ...
0
votes
0answers
64 views
How to build Python 2.6.8 with zlib on Ubuntu Server 12.04?
Missing zlib is common problem for Python 2.6, as I know.
I have zlib1g-dev installed, and I also tried this solution - and still not succeed.
Also I've tried ./configure ...
0
votes
2answers
153 views
Python zlib not compressing string?
I'm going through the python.org's python tutorial, at the moment. I'm on 10.9 and I am trying to use the zlib library to compress a string. However, the len(compressedString) isn't always less than ...
-7
votes
1answer
71 views
get image from hexa string
I work with python 2.7
I I've a string in DB that represente a image in Hexa. Exemple
sdata = ...
1
vote
2answers
104 views
Concatenate multiple zlib compressed data streams into a single stream efficiently
If I have several binary strings with compressed zlib data, is there a way to efficiently combine them into a single compressed string without decompressing everything?
Example of what I have to do ...
0
votes
1answer
383 views
Read in zlib file in Python results in “incorrect header check” [duplicate]
Possible Duplicate:
uncompressing tar.Z file with python?
I am trying to read a zlib compressed in order to directly access the data in the contained HDF file (using pyhdf). However, I ...
0
votes
2answers
198 views
data stored by pylibmc cannot be uncompressed in php memcached
We have an application where we are using python to store lots of data in memcached.We are using pylibmc in python and on php side we are using php-memcached library.As a summary
pylibmc v.1.2.3
...
-2
votes
2answers
98 views
In Python, is zlib implemented in C like cPickle?
As you might know, "cPickle can be up to 1000 times faster than pickle because the former is implemented in C". Is zlib also implemented in C ? In fact I'm trying to reduce the time spent by my ...
1
vote
1answer
189 views
How to load all cPickle dumps from a log file?
I'm going to be running code that will be writing a large number (~1000) of relatively small (50 key:value pairs of strings) dictionaries to a log file. I'll be doing this through a program that ...
1
vote
3answers
159 views
zlib does not compress in standard zip format
I am using python zlib and I am doing the following:
Compress large strings in memory (zlib.compress)
Upload to S3
Download and read and decompress the data as string from S3 (zlib.decompress)
...
1
vote
4answers
523 views
Reading base64/zlib encoded string from actionscript in python
I have a string saved to a database that is encoded by Actionscript by base64ing it and then zlib compressing it.
An example string is this: "eNrj4mZkrShgWdHBx1mUmJfNosQIACUhBCI="
If I unzip and un ...
0
votes
2answers
238 views
Using zlib and cPickle to compress/decompress a dictionary to files
I am using python to write to a file a zlib compressed and cPickled dictionary. It appears to work, however, I cannot figure out how to read the file back in.
I'm including the following code which ...
2
votes
1answer
145 views
How to insert zlib data to Mongo? (Unicode issue)
In python, I want to insert the output from zlib.compress to Mongo.
However, I get the following error:
"strings in documents must be valid UTF-8"
My understanding was the Mongo could handle ...
0
votes
1answer
104 views
installing bigquery command line on fedora release 8
I am following installing instructions from installation steps
I am ending up with the following error
#python setup.py install
Traceback (most recent call last):
File "setup.py", line 18, in ...
0
votes
2answers
385 views
Python: compress large files
I have to compress files. Given that files can be large, I have to split them into chunks. Also, if the user provides a password, I have to encrypt the files, so I'd prefer to use a compression ...
2
votes
1answer
152 views
How can one copy the internal state of zlib compressor object in Python
I have to compress a long list of strings. I have to compress them individually. Each string is less than 1000 chars long. However many of these strings have a common prefix. Therefore I was wondering ...
0
votes
1answer
1k views
PIL zip jpeg decoders not working on runtime but work on install/selftest
I'm running Debian 6 and recently installed PIL.
I have preinstalled the zlib and jpeg libraries, and they're both on /usr/lib
When installing, the setup.py file finds the libraries, I get the ...
2
votes
1answer
740 views
URL Safe Base64 in Objective-C
I've looked at numerous Stack Overflow posts on how to decode Base64 encoded strings in Objective C, but I'm still having issues with it.
Essentially, I'm trying to port a Python script to Objective ...
6
votes
1answer
1k views
How to decode the gzip compressed data returned in a HTTP Response in python?
I have created a client/server architecture in python, I take HTTP request from the client which is served by requesting another HTTP server through my code.
When I get the response from the third ...
1
vote
2answers
1k views
zlib cannot be installed using yum
I am working on a RHEL system. I have two versions of Python installed on my system: Python 2.4 and Python 2.7, but I have created an alias in the .bashrc file so that the python command prompts ...
0
votes
1answer
2k views
When I try to use easy_install, it shows can't decompress data; zlib not available [duplicate]
Possible Duplicate:
Installing Python-2.7 on Ubuntu 10.4
I am using CentOS, which bundled with python 2.4. But python 2.4 didn't come with a lot of new features so I downloaded source of ...
2
votes
2answers
262 views
python + urllib2: streaming ends prematurely
I'm trying to process a large gzip file pulled from the internet in python using urllib2 and zlib and techniques from these two stackoverflow questions:
Python decompressing gzip chunk-by-chunk
...
0
votes
1answer
6k views
python setuptools installation in centos
i have to install mysqldb module of python in my centos server. i have 2 versions of python
2.4.3 the default one
2.6 which i installed
i want to install mysqldb module for 2.6 version of the ...
0
votes
2answers
399 views
Python 2.5 zlib trouble
I am trying to deploy an app on google app engine using bottle, a
micro-framework, similar to flask. I am running on ubuntu which comes
with python 2.7 installed but GAE needs version 2.5, so I ...
0
votes
3answers
2k views
Python zlib inflate error
I'm trying to inflate a zlib compressed file using Python with this code:
import zlib
data = open("3B42.110531.21.6A.HDF.Z", 'rb').read()
inflated = zlib.decompress(data)
f = ...
10
votes
1answer
799 views
Python equivalent of unix cksum function
I've been looking for the equivalent python method for the unix cksum command:
http://pubs.opengroup.org/onlinepubs/7990989775/xcu/cksum.html
$ cksum ./temp.bin
1605138151 712368 ./temp.bin
So far ...
1
vote
4answers
606 views
Hashing an IP address to a number in [0, H)
I'm using Python-2.6. I have very little knowledge of hash functions.
I want to use a CRC hash function to hash an IP address like '128.0.0.5' into the range [0, H). Currently I'm thinking of doing
...
0
votes
0answers
310 views
Can I install zlib libraries into alternate Python versions in Ubuntu/Mint?
I'm running Mint 9 and I want to create a Virtualenv that uses Python 2.7. Python 2.6 is the default and I can create all the virtual environments I want with 2.6 because it has access to the zlib ...
2
votes
1answer
440 views
Linux Mint 9 Virtualenv ImportError for zlib and PYTHONPATH is empty?
I'm running Mint 9 and I can't get Virtualenv to run. Every time I run it I get an ImportError for zlib, while the Software Manager claims both zlib1g-dev and zlib1g are installed.
One interesting ...
11
votes
4answers
13k views
no module named zlib
First, please bear with me. I have hard time telling others my problem and this is a long thread...
I am using pythonbrew to run multiple versions of python in Ubuntu 10.10.
For installing ...
4
votes
6answers
5k views
Plone 4.0.5 unified installer failing on Ubuntu 11.04 (natty) with zip/zlib error
I am a Plone newbie and am trying to install Plone 4.0.5 on Ubuntu 11.04 Natty using the Unified Installer.
I unpack the installer and run the ./install.sh zeo as root and I get the following error:
...
0
votes
1answer
225 views
Python bus error problem when writing to database
Whenever I try to write/update/delete from MySQL I've been experiencing a bus error problem since I've installed zlib on my machine. Has anyone else experienced this problem? There's no error message ...
1
vote
0answers
410 views
Why I can't use zlib to decompress string like gzip's style
I know here has many questions and answers about decompress data with zlib or gzip module in python. But I'm curious about how gzip implement it since gzip is based on zlib.
I read gzip's source and ...
2
votes
2answers
1k views
Uncompress a zlib-compressed string in Java
I have a Java module that is receiving a compressed string from a remote Python script. The Python script compresses the string using zlib.compress(). I simply want to uncompress it in Java and ...
2
votes
2answers
2k views
how to detect quickly if a string is zlib compressed?
What's the quickest way in python to determine if a string was compressed by zlib. I am using this currently.
def iscompressed(data):
result = True
try:
s =zlib.decompress(data)
...
0
votes
2answers
233 views
python zlib output to c++ string
I am trying to write the output of python zlib's output to a c++ string. The question is very similar to Python zlib output, how to recover out of mysql utf-8 table? here however, the difference is ...
0
votes
1answer
889 views
zlib decompress header check error
I have an issue with a dictionary I'm compressing and storing to a postgres database. I can compress the dictionary and decompress it without fault but when I insert it into the database, and then ...
2
votes
5answers
857 views
How to set parameters in Python zlib module
I want to write a Python program that makes PNG files. My big problem is with generating the CRC and the data in the IDAT chunk. Python 2.6.4 does have a zlib module, but there are extra settings ...
3
votes
2answers
338 views
Unpicking data pickled in Python 2.5, in Python 3.1 then uncompressing with zlib
In Python 2.5 I stored data using this code:
def GLWriter(file_name, string):
import cPickle
import zlib
data = zlib.compress(str(string))
file = open(file_name, 'w')
...
10
votes
4answers
15k views
Installing Python-2.7 on Ubuntu 10.4
I can't seem to install zlib properly, I installed Python from source on Ubuntu10.4
'######## edit #####################
bobince and Luper helped.
Make sure you install these packages and then ...
1
vote
2answers
1k views
compress a string in python 3?
I don't understand
in 2.X it worked :
import zlib
zlib.compress('Hello, world')
now i have a :
zlib.compress("Hello world!")
TypeError: must be bytes or buffer, not str
How can i compress my ...
27
votes
2answers
11k views
sqlite3.ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings
Using SQLite3 in Python, I am trying to store a compressed version of a snippet of UTF-8 HTML code.
Code looks like this:
...
c = connection.cursor()
c.execute('create table blah (cid integer ...
6
votes
2answers
4k views
zlib.error: Error -3 while decompressing: incorrect header check
I have a gzip file and I am trying to read it via Python as below:
import zlib
do = zlib.decompressobj(16+zlib.MAX_WBITS)
fh = open('abc.gz', 'rb')
cdata = fh.read()
fh.close()
data = ...
1
vote
1answer
1k views
Zlib not available in OS X?
I am trying to install a python library and receive this error after downloading an egg file.
Downloading http://pypi.python.org/packages/2.5/s/setuptools/setuptools-0.6c7-py2.5.egg
Traceback (most ...
1
vote
3answers
487 views
Can zlib.crc32 or zlib.adler32 be safely used to mask primary keys in URLs?
In Django Design Patterns, the author recommends using zlib.crc32 to mask primary keys in URLs. After some quick testing, I noticed that crc32 produces negative integers about half the time, which ...
4
votes
3answers
2k views
Are zlib.compress on Python and Deflater.deflate on Java (Android) compatible?
I am porting a Python application to Android and, at some point, this application has to communicate with a Web Service, sending it compressed data.
In order to do that it uses the next method:
def ...
14
votes
2answers
6k views
Python decompressing gzip chunk-by-chunk
I've a memory- and disk-limited environment where I need to decompress the contents of a gzip file sent to me in string-based chunks (over xmlrpc binary transfer). However, using the zlib.decompress() ...
