I have some data that I need to decode using zlib. After a bunch of google searching, I think python could do the trick.
I am a bit lost on how to make this happen; can anyone set me up on the path?
The data is just encoded text; I know that I need to import zlib
in a python file, and decode using it, but I am lost where to start.
I have started with this:
import zlib
f = "012301482103"
data = f
zlib.decompress((data))
print data