-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
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
Plans to publish this fork on Pypi? #6
Comments
Please do! Your forked version fixed many of the bugs I was running into with 0.4 including corrupted PDF forms. |
@brokenshield This forked version helped me too so I uploaded a version of it https://pypi.org/project/pdfrw2/ |
@t-houssian Your |
@Lucas-C True, Thanks! Went in and fixed it. https://pypi.org/project/pdfrw2/ |
The PyPI page for pdfrw2 has downloads for a 0.5 version, but I'm not seeing those changes here. Was the release created from another repo? |
So what's the proper way to go if I had already installed "the original" Can I just upgrade it this way? Or would I run into problems because of having two different packages installed with the same "import name"? Thanks a lot in advance |
I think it is out of scope here to explain/document basic Python packaging stuff in the package itself. Nevertheless, installing different packages with the same namespace will work, but might leave you with an unclear result, as the installation order might affect which package code you will actually end up with. When uninstalling one of the packages, you might end up removing the actual library code the first time, while the package metadata is still present. Additionally, general advice can be hard if pdfrw is used as the dependency of another package in your environment, as this might lead to unsatisfied requirements. |
Do you plan to release this fork on Pypi?
Maybe as
pdfrw2
?Else you may want to indicate in
README.rst
how to install your fork usingpip
:The text was updated successfully, but these errors were encountered: