summaryrefslogtreecommitdiff
path: root/generate-schedule.py
diff options
context:
space:
mode:
authorpetrus comestor <petrus@comestor.org>2024-11-25 21:02:20 -0500
committerpetrus comestor <petrus@comestor.org>2024-11-25 21:02:20 -0500
commit47b648f144dbe79812026351fbd3b8a465600948 (patch)
tree1f4e086c9acaee9074211ba65bf3010ae89cb28a /generate-schedule.py
parent1e35a43ecac2cb2d7feb2bf7f81f938521ac86a3 (diff)
suns
Diffstat (limited to 'generate-schedule.py')
-rwxr-xr-xgenerate-schedule.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/generate-schedule.py b/generate-schedule.py
index 9e96d7a..06b9aa8 100755
--- a/generate-schedule.py
+++ b/generate-schedule.py
@@ -124,6 +124,12 @@ bushwicklibrary = Location(
"Bushwick",
)
+sunsetpark = Location(
+ "Sunset Park Library",
+ "https://maps.app.goo.gl/ck5NMcK7nC189KCZ6",
+ "Sunset Park",
+)
+
schedule = [
# Event(jefferson, date(2024, 10, 30)),
# Event(nook, date(2024, 11, 2)),
@@ -154,7 +160,10 @@ schedule = [
Event(nook, date(2024, 12, 14)),
Event(mccarren, date(2024, 12, 16)),
Event(jefferson, date(2024, 12, 18)),
+ Event(bushwicklibrary, date(2024, 12, 19), time='6p', special=True),
Event(nook, date(2024, 12, 21)),
+ Event(sunsetpark, date(2024, 1, 2), time='6p', special=True),
+ Event(sunsetpark, date(2024, 1, 16), time='6p', special=True),
] # maybe autosort it and sort code by event?
with open('index.base') as base: