ben-strasser / fast-cpp-csv-parser

fast-cpp-csv-parser
BSD 3-Clause "New" or "Revised" License
2.11k stars 440 forks source link

Feature Request: Load gzipped csv files #53

Closed xgdgsc closed 6 years ago

xgdgsc commented 6 years ago

Is there any plan on supporting loading some format of compressed csv files. It is very common people compress csv files to save space on disk and reduce I/O.

ben-strasser commented 6 years ago

Hi,

You can do so by deriving a class from ByteSourceBase.

Best Regards Ben Strasser

xgdgsc commented 6 years ago

Thanks I plan to try.

xgdgsc commented 6 years ago

You may not want to add dependencies like boost. I posted my simple compressed csv reader here in case someone needs.