-
Notifications
You must be signed in to change notification settings - Fork 528
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
Maintenance: Is this project dead? #207
Comments
There is also https://pypi.org/project/fpdf2/ (history). I'm not sure if anybody has attempted to merge fpdf2 back into fpdf. |
I just saw #171 |
@reingart It would be nice to have an official note that fpdf2 is the way to go forward. I suggest to do the following:
|
It seems like this project is no longer maintained and has been forked as fpdf2. fpdf2 uses the same Consider for example seeing this python script: from fpdf import FPDF
pdf = FPDF()
pdf.add_page(format=(100, 100))
content.set_fill_color(0,0,0)
content.rect(0, 0, 100, 100, 'F')
content.output('result.pdf') Based on what you see, you'd want to run $ python example.py
Traceback (most recent call last):
File "/home/user/example.py", line 4, in <module>
pdf.add_page(format=(100, 100))
TypeError: add_page() got an unexpected keyword argument 'format' Looking up the error, you can see other people are having similar issues [1, 2, 3, 4]. It seems to me that the best solution would be to have If not, there should be clear distinction between the two projects, e.g. use |
I see a couple of indicators, that this project might be dead:
I've created the github organization https://github.com/py-pdf for Python projects around PDF. While I would very much prefer it this project came back to live by itself, it might be an option for you to move the project there / give me permission to merge PRs / update the package on PyPI.
https://github.com/jazzband would be another option
The text was updated successfully, but these errors were encountered: