Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from weasyprint import HTML, CSS
- string = '''<table>
- <thead>
- <tr>
- <th>Pracownik</th>
- <th>Czas pracy</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>Mateusz</td>
- <td>10h 30min</td>
- </tr>
- </tbody>
- </table>'''
- CSS = '''
- body {
- font-family: sans-serif;
- }
- thead tr{
- border-bottom: 3px black solid;
- }
- tbody tr {
- border-bottom: 1px black solid;
- }
- tbody tr td {
- padding-bottom: 5px
- }
- '''
- html = HTML(string=string)
- html.write_pdf('test.pdf')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement