13 lines
283 B
Python
13 lines
283 B
Python
|
|
from html2docx import html2docx
|
||
|
|
|
||
|
|
with open("output/generated_report.html") as fp:
|
||
|
|
html = fp.read()
|
||
|
|
|
||
|
|
# html2docx() returns an io.BytesIO() object. The HTML must be valid.
|
||
|
|
buf = html2docx(html, title="My Document")
|
||
|
|
|
||
|
|
with open("my.docx", "wb") as fp:
|
||
|
|
fp.write(buf.getvalue())
|
||
|
|
|
||
|
|
|