-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathtable_class.py
35 lines (24 loc) · 1.2 KB
/
table_class.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from create_table_fpdf2 import PDF
data = [
["First name", "Last name", "Age", "City",], # 'testing','size'],
["Jules", "Smith", "34", "San Juan",], # 'testing','size'],
["Mary", "Ramos", "45", "Orlando",], # 'testing','size'],
["Carlson", "Banks", "19", "Los Angeles",], # 'testing','size'],
["Lucas", "Cimon", "31", "Saint-Mahturin-sur-Loire",], # 'testing','size'],
]
data_as_dict = {"First name": ["Jules","Mary","Carlson","Lucas"],
"Last name": ["Smith","Ramos","Banks","Cimon"],
"Age": [34,'45','19','31']
}
pdf = PDF()
pdf.add_page()
pdf.set_font("Times", size=10)
pdf.create_table(table_data = data,title='I\'m the first title', cell_width='even')
pdf.ln()
pdf.create_table(table_data = data,title='I start at 25',cell_width='uneven',x_start=25)
pdf.ln()
pdf.create_table(table_data = data,title="I'm in the middle",cell_width=22,x_start='C')
pdf.ln()
pdf.create_table(table_data = data_as_dict,title='Is my text red',align_header='R', align_data='R', cell_width=[15,15,10,45,], x_start='C', emphasize_data=['45','Jules'], emphasize_style='BIU',emphasize_color=(255,0,0))
pdf.ln()
pdf.output('table_class.pdf')