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
As of AprilFileIO.jl has a loadstreaming/savestreaming API for opening files in streaming mode and automatically selecting the decoder/encoder based on the file extension and/or magic bytes.
If this were integrated with TranscodingStreams it would look something like:
using FileIO
loadstreaming("data.txt.gz") do stream
for line ineachline(stream)
# do something...endend
The text was updated successfully, but these errors were encountered:
As of April
FileIO.jl
has aloadstreaming
/savestreaming
API for opening files in streaming mode and automatically selecting the decoder/encoder based on the file extension and/or magic bytes.If this were integrated with TranscodingStreams it would look something like:
The text was updated successfully, but these errors were encountered: