A fork of https://github.com/pqzx/html2docx. This version will focus on expedient changes for our particular use case.
Project description
html3docx
A fork of https://github.com/pqzx/html2docx. This version will focus on expedient changes for our particular use case, and thus will receive infrequent updates.
Dependencies: python-docx
& bs4
To install
pip install html3docx
PyPI: https://pypi.org/project/html3docx/
Improvements
- Fix for KeyError when handling an img tag without a src attribute.
- Images with a width attribute will be scaled according to that width.
- Fix for AttributeError when handling a leading br tag, either at the top of the HTML snippet, or within a td or th cell.
- Fix for IndexError when a table has more cells in latter rows than in the first row.
- Ordered lists will now restart at 1. when proceeded by a paragraph that is not a numbered list.
- Parameterized image fetcher function.
- Parameterized default styles for OL, UL, and TABLE tags.
- Fix for KeyError when handling an anchor with no href attribute.
- Added support for images with base64 encoded data src.
Original README
Usage
Add strings of html to an existing docx.Document object
from docx import Document
from htmldocx import HtmlToDocx
document = Document()
new_parser = HtmlToDocx()
# do stuff to document
html = '<h1>Hello world</h1>'
new_parser.add_html_to_document(html, document)
# do more stuff to document
document.save('your_file_name')
Convert files directly
from htmldocx import HtmlToDocx
new_parser = HtmlToDocx()
new_parser.parse_html_file(input_html_file_path, output_docx_file_path)
Convert files from a string
from htmldocx import HtmlToDocx
new_parser = HtmlToDocx()
docx = new_parser.parse_html_string(input_html_file_string)
Change table styles
Tables are not styled by default. Use the table_style
attribute on the parser to set a table
style. The style is used for all tables.
from htmldocx import HtmlToDocx
new_parser = HtmlToDocx()
new_parser.table_style = 'Light Shading Accent 4'
To add borders to tables, use the TableGrid
style:
new_parser.table_style = 'TableGrid'
Default table styles can be found here: https://python-docx.readthedocs.io/en/latest/user/styles-understanding.html#table-styles-in-default-template
Change default paragraph style
No style is applied to the paragraphs by default. Use the paragraph_style
attribute on the parser
to set a default paragraph style. The style is used for all paragraphs. If additional styling (
color, background color, alignment...) is defined in the HTML, it will be applied after the
paragraph style.
from htmldocx import HtmlToDocx
new_parser = HtmlToDocx()
new_parser.paragraph_style = 'Quote'
Default paragraph styles can be found here: https://python-docx.readthedocs.io/en/latest/user/styles-understanding.html#paragraph-styles-in-default-template
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file html3docx-1.0.1.tar.gz
.
File metadata
- Download URL: html3docx-1.0.1.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76a8e19e40f2853bfe28b62584a7e6a0f2ea35c8ed178752a3c408e7dd70ae18 |
|
MD5 | 7dc02f73bf50c8df92da8f3e2c5c96e6 |
|
BLAKE2b-256 | 5b469ee3ae288e440dba2372454c5c5e69d97a156ba5f83c1368d896c18e24a5 |
File details
Details for the file html3docx-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: html3docx-1.0.1-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b835a643e006ad3e712d7b9c68092ba702e8a3a920ce698293f6fdb8ee28128 |
|
MD5 | 5720ff491555cb67dd376ab8bce09b54 |
|
BLAKE2b-256 | d010d78037b63b42c575edb0fd70c7a2dcd72b93263623c5923dbd765aeab4d9 |