mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-26 17:59:26 +00:00
4 lines
105 B
Python
4 lines
105 B
Python
|
from weasyprint import HTML
|
||
|
|
||
|
def generate(html):
|
||
|
return HTML(string=html.decode('utf-8')).write_pdf()
|