Skip to content

Fast *reader* for Gzip files based on the Python standard library.

License

Notifications You must be signed in to change notification settings

Veedrac/fast_gzip

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is a very small module to read gzip files. It was inspired by a discussion on reddit.

It starts a subprocess that fills a queue with uncompressed data and the main class parses lines from this queue.

Usage:

import fgzip

with fgzip.open("my_large_file.gz") as f:
    for line in f:
        print line

About

Fast *reader* for Gzip files based on the Python standard library.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%