forked from dunossauro/live-de-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake_readme.py
90 lines (73 loc) · 2.47 KB
/
make_readme.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
from csv import DictReader
from dataclasses import dataclass, field
from pathlib import Path
from re import sub
from typing import TypedDict, cast
from urllib.error import HTTPError
from urllib.request import urlopen
base_url = 'https://github.com/dunossauro/live-de-python/blob/main'
@dataclass
class Live:
numero: str
titulo: str
link: str
codigo: str = field(init=False)
slide: str = field(init=False)
def markdownify(self):
if self.slide and self.codigo:
print(
f'|{self.numero}|[link]({self.link})|[codigo]({self.codigo})|[slide]({self.slide})|{self.titulo}|'
)
elif not self.slide and not self.codigo:
print(
f'|{self.numero}|[link]({self.link})|||{self.titulo}|'
)
elif not self.slide:
print(
f'|{self.numero}|[link]({self.link})|[codigo]({self.codigo})||{self.titulo}|'
)
elif not self.codigo:
print(
f'|{self.numero}|[link]({self.link})||[slide]({self.slide})|{self.titulo}|'
)
def fetch(self, url):
try:
with urlopen(url):
return url
except HTTPError as e:
return ''
def __post_init__(self):
slide_url = f'{base_url}/slides/Live%20de%20Python%20%23{self.numero.zfill(3)}.pdf'
self.slide = self.fetch(slide_url)
codigo_url = f'{base_url}/codigo/Live{self.numero.zfill(3)}'
self.codigo = self.fetch(codigo_url)
class Row(TypedDict):
tema: str
data: str
link: str
tags: str
csv = Path('lives.csv').open()
for line in DictReader(csv, delimiter=';'):
line = cast(Row, line)
if (
'#' in line['tema']
and 'Live' in line['tema']
and 'special' not in line['tema']
):
fatiado = line['tema'].replace(' | ', ' - ').strip().partition(' - ')
parte_a, _, parte_b = fatiado
if parte_a.strip().startswith('Live'):
parte_a, parte_b = parte_b, parte_a
teste = sub(r'([Ll]ive( de [Pp]ython)? \s?#)', '', parte_b)
if len(teste) > 3:
split = teste.split(' - ')
parte_a = parte_a + ' - ' + split[-1]
parte_b = split[0]
if parte_b.startswith('Live'):
parte_b = sub(r'(.*#)(\d+)', r'\2', parte_b)
live = Live(
numero=parte_b.strip(),
titulo=parte_a.strip(),
link=line['link'],
)
live.markdownify()