Advertisement
ksieradzinski

Untitled

Oct 27th, 2023
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. from weasyprint import HTML, CSS
  2.  
  3. string = '''<table>
  4. <thead>
  5. <tr>
  6. <th>Pracownik</th>
  7. <th>Czas pracy</th>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. <tr>
  12. <td>Mateusz</td>
  13. <td>10h 30min</td>
  14. </tr>
  15. </tbody>
  16. </table>'''
  17.  
  18. CSS = '''
  19. body {
  20. font-family: sans-serif;
  21. }
  22.  
  23. thead tr{
  24. border-bottom: 3px black solid;
  25. }
  26.  
  27. tbody tr {
  28. border-bottom: 1px black solid;
  29. }
  30.  
  31. tbody tr td {
  32. padding-bottom: 5px
  33. }
  34. '''
  35.  
  36. html = HTML(string=string)
  37. html.write_pdf('test.pdf')
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement