Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add message for coupure #501

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions server/scraper/resto/menu_manual.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import re
from collections import defaultdict
from datetime import date, timedelta, datetime
from textwrap import dedent

OVERVIEW_COUNT = 10

Expand Down Expand Up @@ -651,6 +652,20 @@ def newyear_dsv_2024_en(_path, original):
return original


def coupure_2024_nl(_path, original):
message = dedent("""\
In Resto Coupure starten we met een proefproject: we gaan terug vers koken!
In het vernieuwde restaurant kan je kiezen uit een ruim aanbod van deelgerechten waarbij vooral groenten een prominente plaats krijgen.
In de resto wordt ook dagelijks verse soep worden gemaakt. Voor het aanbod wordt gekeken naar het seizoen en de afstand die de ingrediënten moeten afleggen.
Ga ter plaatse om het aanbod te bekijken.
""")
return {
"message": message,
"date": original["date"],
"open": True
}


def create_changes(root_path):
return [
# Restjesmaand 2018
Expand Down Expand Up @@ -1335,6 +1350,13 @@ def create_changes(root_path):
end=date(2024, 1, 12),
all_days=True
),
ManualChange(
replacer=coupure_2024_nl,
resto=["nl-coupure"],
start=date(2024, 9, 23),
end=date(2025, 7, 1),
all_days=True
),
]


Expand Down