mirror of
https://github.com/MatomoCamp/matomocamp-bot.git
synced 2024-09-11 06:53:44 +02:00
9 lines
208 B
Python
9 lines
208 B
Python
from data import talks
|
|
from urls import chat_rooms
|
|
|
|
for talk in talks:
|
|
if talk.year != 2023:
|
|
continue
|
|
if talk.id in chat_rooms:
|
|
continue
|
|
print(f' "{talk.id}": "{talk.title}",')
|