1
0
Fork 0
pydyf/docs/going_further.rst
Daniel Baumann fe219838ef
Merging upstream version 0.2.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-08 07:40:28 +01:00

31 lines
1 KiB
ReStructuredText
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Going Further
=============
Why pydyf?
-------------
pydyf has been created to replace Cairo_ PDF generation in WeasyPrint_.
Indeed, there were some bugs in WeasyPrint caused by Cairo, and new versions of
Cairo can take a long time to be released. There are also many features that
are easier to implement with more control on the PDF generation.
So we created pydyf.
.. _WeasyPrint: https://www.courtbouillon.org/weasyprint
.. _Cairo: https://www.cairographics.org/
Why Python?
-----------
Python is a really good language to design a small, OS-agnostic library. As it
is object-oriented, it gives the possibility to follow the PDF specification
with high-level classes and a small amount of very simple code.
And of course, WeasyPrint is written in Python too, giving an obvious reason
for this choice.
Speed is not pydyfs main goal. Code simplicity, maintainability and
flexibility are more important goals for this library, as they give the ability
to stay really close to the specification and to fix bugs easily.