-
Notifications
You must be signed in to change notification settings - Fork 0
/
publica-plano-de-aulas.py
74 lines (48 loc) · 1.82 KB
/
publica-plano-de-aulas.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import pandas as pd
from pretty_html_table import build_table
def redefine_strong(tabela):
tabela = tabela.replace('<strong>','<strong>')
tabela = tabela.replace('</strong>','</strong>')
return tabela
df = pd.read_excel('plano-de-aulas.xlsx')
parte1 = build_table(df.iloc[0:2][['Data', 'Questão/Problema/Desafio','Conteúdo']],
color='blue_dark')
parte1 = redefine_strong(parte1)
with open('docs/_snippets/plano_aula_1.md', 'w') as f:
f.write(parte1)
parte2 = build_table(df.iloc[2:6][[
'Data', 'Questão/Problema/Desafio','Conteúdo']],
color='yellow_dark')
parte2 = redefine_strong(parte2)
with open('docs/_snippets/plano_aula_2.md', 'w') as f:
f.write(parte2)
parte3 = build_table(df.iloc[6:11][[
'Data', 'Questão/Problema/Desafio','Conteúdo']],
color='green_dark')
parte3 = redefine_strong(parte3)
with open('docs/_snippets/plano_aula_3.md', 'w') as f:
f.write(parte3)
parte4 = build_table(df.iloc[11:17][[
'Data', 'Questão/Problema/Desafio','Conteúdo']],
color='red_dark')
parte4 = redefine_strong(parte4)
with open('docs/_snippets/plano_aula_4.md', 'w') as f:
f.write(parte4)
parte5 = build_table(df.iloc[17:21][[
'Data', 'Questão/Problema/Desafio','Conteúdo']],
color='yellow_dark')
parte5 = redefine_strong(parte5)
with open('docs/_snippets/plano_aula_5.md', 'w') as f:
f.write(parte5)
parte6 = build_table(df.iloc[21:25][[
'Data', 'Questão/Problema/Desafio','Conteúdo']],
color='blue_dark')
parte6 = redefine_strong(parte6)
with open('docs/_snippets/plano_aula_6.md', 'w') as f:
f.write(parte6)
parte7 = build_table(df.iloc[25:][[
'Data', 'Questão/Problema/Desafio','Conteúdo']],
color='blue_dark')
parte7 = redefine_strong(parte7)
with open('docs/_snippets/plano_aula_7.md', 'w') as f:
f.write(parte7)