tried to add UIDs and DATESTAMPS

This commit is contained in:
Falko Zurell 2024-11-17 19:00:12 +01:00
parent 48e601f916
commit a5367e238f

View file

@ -31,9 +31,11 @@ def generate_ical_from_csv(csv_file):
# Combine date and time using the updated date format and apply CET # Combine date and time using the updated date format and apply CET
start_datetime = cet.localize(datetime.strptime(f"{date} {start_time}", "%d.%m.%Y %H:%M")) start_datetime = cet.localize(datetime.strptime(f"{date} {start_time}", "%d.%m.%Y %H:%M"))
end_datetime = cet.localize(datetime.strptime(f"{date} {end_time}", "%d.%m.%Y %H:%M")) end_datetime = cet.localize(datetime.strptime(f"{date} {end_time}", "%d.%m.%Y %H:%M"))
uid = f"{date}{start_time}@lak2024.leben-in-gross-doelln.de"
# Create a new event # Create a new event
event = Event() event = Event()
event.created = cet.localize(datetime.now())
event.uid = uid
event.name = f"{description} (Gastgeber: {host})" # Include the host in the event name event.name = f"{description} (Gastgeber: {host})" # Include the host in the event name
event.begin = start_datetime event.begin = start_datetime
event.end = end_datetime event.end = end_datetime