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
While pypdf is required by pdfly, it does not include the optional packages.
pypdf
pdfly
This can lead to errors when those features are needed. E.g.:
$ uv tool install pdfly $ pdfly rm -o trimmed.pdf full.pdf 10: ... File "...\pdfly\Lib\site-packages\pypdf\_crypt_providers\_fallback.py", line 69, in decrypt raise DependencyError(_DEPENDENCY_ERROR_STR) pypdf.errors.DependencyError: cryptography>=3.1 is required for AES algorithm Error while reading full.pdf
I successfully worked around by re-installing:
$ uv tool install --with "pypdf[full]" pdfly
The text was updated successfully, but these errors were encountered:
Thank you for reporting this issue @hwine
@allcontributors please add @hwine for bug
Sorry, something went wrong.
@Lucas-C
I've put up a pull request to add @hwine! 🎉
Fixed by #113
The fix is not released yet, but you can check that it's work by installing the latest version of pdfly from the main branch:
main
uv tool install git+https://github.com/py-pdf/pdfly
No branches or pull requests
While
pypdf
is required bypdfly
, it does not include the optional packages.This can lead to errors when those features are needed. E.g.:
I successfully worked around by re-installing:
$ uv tool install --with "pypdf[full]" pdfly
The text was updated successfully, but these errors were encountered: