Skip to content

Instantly share code, notes, and snippets.

@packetchef
Created October 8, 2015 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save packetchef/cc2d28ddac6fe2aa2879 to your computer and use it in GitHub Desktop.
Save packetchef/cc2d28ddac6fe2aa2879 to your computer and use it in GitHub Desktop.
# Uncompress a block of text
import zlib
def gzinflate(gzippedString):
return zlib.decompress(gzippedString, -15)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment