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
Is your feature request related to a problem? Please describe.
I need to get file from archive and work with it in memory. Now first I should extract file into temporary folder and then read extracted file. So there are two io: first write to disk, second read from disk uncompressed file.
Describe the solution you'd like
Some way to extract file into io.BytesIO() without write/read temporary file to disk.
Describe alternatives you've considered
Or archive could be extracted into dict of io.BytesIO(), where keys are filepath and values are io.BytesIO()
Additional context
None
The text was updated successfully, but these errors were encountered:
Zoynels
changed the title
Extract signle file to buffer
Extract file to buffer
Apr 9, 2020
Is your feature request related to a problem? Please describe.
I need to get file from archive and work with it in memory. Now first I should extract file into temporary folder and then read extracted file. So there are two io: first write to disk, second read from disk uncompressed file.
Describe the solution you'd like
Some way to extract file into io.BytesIO() without write/read temporary file to disk.
Describe alternatives you've considered
Or archive could be extracted into dict of io.BytesIO(), where keys are filepath and values are io.BytesIO()
Additional context
None
The text was updated successfully, but these errors were encountered: