xhtml2pdf
A library for converting HTML into PDFs using ReportLab (by xhtml2pdf)
bleach
Bleach is an allowed-list-based HTML sanitizing library that escapes or strips markup and attributes (by mozilla)
Our great sponsors
xhtml2pdf | bleach | |
---|---|---|
2 | 6 | |
2,076 | 2,552 | |
1.2% | 0.7% | |
0.0 | 0.0 | |
3 days ago | 12 days ago | |
Python | Python | |
Apache License 2.0 | GNU General Public License v3.0 or later |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
xhtml2pdf
Posts with mentions or reviews of xhtml2pdf.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-07-04.
-
What is an example of a fully finished python software product on github?
Judging by your previous comments, you might get what you're looking for from xhtml2pdf. (Don't be put off by the 0.2.7 version number; xhtml2pdf has been in active development for over a decade and is a stable library.) It's generally used as a library in Python projects, but it does have a stand-alone command-line interface, and the library in general is thoroughly documented so you don't need to rely just on reading the code to figure out what's going on.
-
Create PDFs using Python and xhtml2pdf
Here, we will generate a PDF file using an HTML template. We have to keep in mind that xhtml2pdf supports until HTML4. So, first, we have to create an HTML file that will behave as a template for our PDF file.
bleach
Posts with mentions or reviews of bleach.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-06-06.
-
What's your favorite alternative to bleach for sanitizing HTML?
I noticed via the changelog for Django 4.2.2 that bleach is deprecated (Django removed mention of it from their docs).
-
I wrote a markdown to html converter
I don't know a golang library for it but https://github.com/mozilla/bleach is a python lib that escapes all the nasty javascript inputs.
-
Serialize Django Data for JavaScript
This is an excellent point; I should have addressed safety in my article. I'll point out that in my use case, I'm using `safe` on data I create and not any user-generated data.
You should never use `safe` on user data unless you use something like bleach (https://github.com/mozilla/bleach) to sanitize the data. Even then, you should use caution.
What are some alternatives?
When comparing xhtml2pdf and bleach you can also consider the following projects:
lxml - The lxml XML toolkit for Python
MarkupSafe - Safely add untrusted strings to HTML/XML markup.
html5lib - Standards-compliant library for parsing and serializing HTML documents and fragments in Python
selectolax - Python binding to Modest and Lexbor engines (fast HTML5 parser with CSS selectors).
cssutils
xmltodict - Python module that makes working with XML feel like you are working with JSON
untangle - Converts XML to Python objects