-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Option to write uncompressed catalogs #419
Comments
EDIT: In fact, there could simply be a |
👍🏽 How about adding a Lines 362 to 367 in 40fe3a7
and passing these keyword arguments down to Line 118 in 40fe3a7
? |
Is your feature request related to a problem? Please describe.
The default csv file written by
cat.serialize
is compressed withgzip
. This is quite cool for large catalogs, but it looses some interoperability with low-level editing tools (text editors) as it's now a binary file.Describe the solution you'd like
An option to control the compression of the catalog file. It could even be interesting for some to control the codec used? Like a
compression
argument, the same aspd.read_csv
, but without the "infer" option, since the catalog filename is not passed explicitly. So one of{ ‘gzip’, ‘bz2’, ‘zip’, ‘xz’, None}
.Describe alternatives you've considered
Serializing the catalog myself with
cat.df.to_csv
, but that's just not ideal.The text was updated successfully, but these errors were encountered: