Skip to content

Commit 6fbdf5d

Browse files
authored
Add Python Sudeste 2024 and fix sort (#79)
* Adicionado Python Sul 2023 Adicionado Python Sul 2023 * add python nordeste e python norte * added conferences 2024 update 02/2024 * fix conference name * fix conference name * ajustado anos das conferencias e linha final * python sudeste * change sort next event * adicionado eventos 2025 e feito merge
1 parent 7f9c2aa commit 6fbdf5d

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

conferencias.toml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,9 +418,44 @@ end = 2024-08-10
418418
location = "Natal, RN"
419419
url = "https://2024.pythonnordeste.org/"
420420

421+
[[events]]
422+
name = "Python Sudeste"
423+
start = 2024-05-30
424+
end = 2024-06-02
425+
location = "São Carlos, SP"
426+
url = "https://www.instagram.com/pythonsudeste/"
427+
421428
[[events]]
422429
name = "Python Norte 2024"
423430
start = 2024-09-27
424431
end = 2024-09-28
425432
location = "Itacoatiara, AM"
426433
url = "https://2024.pythonnorte.org/"
434+
435+
[[events]]
436+
name = "PyCaxias"
437+
start = 2025-05-17
438+
end = 2025-05-17
439+
location = "Caxias do Sul, RS"
440+
url = "https://pycaxias.com.br/"
441+
442+
[[events]]
443+
name = "Python Sul"
444+
start = 2025-11-21
445+
end = 2025-12-23
446+
location = "Porto Alegre, RS"
447+
url = "https://sul.python.org.br/"
448+
449+
[[events]]
450+
name = "Python Brasil"
451+
start = 2025-10-21
452+
end = 2025-10-27
453+
location = "São Paulo, SP"
454+
url = "https://2025.pythonbrasil.org.br"
455+
456+
[[events]]
457+
name = "Python Cerrado"
458+
start = 2025-07-31
459+
end = 2025-08-01
460+
location = "Brasília, DF"
461+
url = "https://www.eventbrite.com.br/e/python-cerrado-2025-tickets-1098869210389"

pythonnobrasil/build.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ def get_context(calendar):
3030
else:
3131
events["per_year"][event.start.year].append(event)
3232

33+
events["next"] = sorted(events["next"], key=lambda e: e.start)
34+
3335
events["per_year"] = {
3436
year: sorted(events, key=lambda e: e.start)
3537
for year, events in events["per_year"].items()

0 commit comments

Comments
 (0)