We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems as though the line:
with libarchive.file_writer('test.tar.gz', 'ustar', 'gzip') as archive:
could be boiled down to:
with libarchive.file_writer('test.tar.gz') as archive:
as format_name and filter_name can be inferred by filepath's extension.
format_name
filter_name
filepath
Currently, users have to:
ffi.py
file_writer
I'm sure this is a jarring experience to most.
The text was updated successfully, but these errors were encountered:
Coming to this lib for the first time, I'll say +1 for this (outside of this feature more documentation would be great!)
Sorry, something went wrong.
No branches or pull requests
It seems as though the line:
could be boiled down to:
as
format_name
andfilter_name
can be inferred byfilepath
's extension.Currently, users have to:
ffi.py
source code to see the list of validformat_name
s andfilter_name
sfile_writer
would be invaluable here.I'm sure this is a jarring experience to most.
The text was updated successfully, but these errors were encountered: