You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with gzip.open(filename, 'rb') as f:
for line in f:
How do I achieve this with lz4tools?
lz4tools.open(filename).read()
fails with RecursionError: maximum recursion depth exceeded in comparison -- I assume because it tries to load everything into memory and doesn't return a generator?
The text was updated successfully, but these errors were encountered:
dreamflasher
changed the title
Linewise iterated compressed file
Linewise iterate compressed file
Feb 28, 2017
With gzip.open() the following is possible:
How do I achieve this with lz4tools?
lz4tools.open(filename).read()
fails with
RecursionError: maximum recursion depth exceeded in comparison
-- I assume because it tries to load everything into memory and doesn't return a generator?The text was updated successfully, but these errors were encountered: