Tag Archives: zlib

Python Zlib Compress DeCompress

import zlib regular_string = 'this is my string' compressed_string = zlib.compress(regular_string) decompressed_string = zlib.decompress(compressed_string) print compressed_string print decompressed_string
Posted in Python | Also tagged , , | Leave a comment