Skip to content

Commit

Permalink
Add Python Sudeste 2024 and fix sort (#79)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
Perceu authored Jan 25, 2025
1 parent 7f9c2aa commit 6fbdf5d
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions conferencias.toml
Original file line number Diff line number Diff line change
Expand Up @@ -418,9 +418,44 @@ end = 2024-08-10
location = "Natal, RN"
url = "https://2024.pythonnordeste.org/"

[[events]]
name = "Python Sudeste"
start = 2024-05-30
end = 2024-06-02
location = "São Carlos, SP"
url = "https://www.instagram.com/pythonsudeste/"

[[events]]
name = "Python Norte 2024"
start = 2024-09-27
end = 2024-09-28
location = "Itacoatiara, AM"
url = "https://2024.pythonnorte.org/"

[[events]]
name = "PyCaxias"
start = 2025-05-17
end = 2025-05-17
location = "Caxias do Sul, RS"
url = "https://pycaxias.com.br/"

[[events]]
name = "Python Sul"
start = 2025-11-21
end = 2025-12-23
location = "Porto Alegre, RS"
url = "https://sul.python.org.br/"

[[events]]
name = "Python Brasil"
start = 2025-10-21
end = 2025-10-27
location = "São Paulo, SP"
url = "https://2025.pythonbrasil.org.br"

[[events]]
name = "Python Cerrado"
start = 2025-07-31
end = 2025-08-01
location = "Brasília, DF"
url = "https://www.eventbrite.com.br/e/python-cerrado-2025-tickets-1098869210389"
2 changes: 2 additions & 0 deletions pythonnobrasil/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ def get_context(calendar):
else:
events["per_year"][event.start.year].append(event)

events["next"] = sorted(events["next"], key=lambda e: e.start)

events["per_year"] = {
year: sorted(events, key=lambda e: e.start)
for year, events in events["per_year"].items()
Expand Down

0 comments on commit 6fbdf5d

Please sign in to comment.