Created
January 7, 2015 01:40
-
-
Save dchaplinsky/8c5649017be80c1929a0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import bz2 | |
| with bz2.BZ2File("test.bz2", "r") as fp: | |
| i = 0 | |
| for l in fp: | |
| print(l) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment