Compare commits
No commits in common. "6cb6d988e968cd26c6b2dc6ecbc9082a5d2ffc56" and "210cdff15e7abf08609ffb2bd8d645593ef6a1c7" have entirely different histories.
6cb6d988e9
...
210cdff15e
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ Persistence: Even if the script is rerun, previously assigned UIDs remain consis
|
||||||
## example CSV file format
|
## example CSV file format
|
||||||
|
|
||||||
```
|
```
|
||||||
Host;Description;Date;start time;end time;Location
|
Gastgeber;Description;Date;start time;end time;Location
|
||||||
Max Müller;Team Meeting;20.11.2024;10:00;11:00;Berlin
|
Max Müller;Team Meeting;20.11.2024;10:00;11:00;Berlin
|
||||||
Anna Löwe;Project Kickoff;21.11.2024;09:00;10:30;München
|
Anna Löwe;Project Kickoff;21.11.2024;09:00;10:30;München
|
||||||
```
|
```
|
||||||
|
|
|
@ -40,7 +40,7 @@ def generate_ical_from_csv(csv_file):
|
||||||
for row in reader:
|
for row in reader:
|
||||||
try:
|
try:
|
||||||
# Parse the data from CSV
|
# Parse the data from CSV
|
||||||
host = row['Host']
|
host = row['Gastgeber']
|
||||||
description = row['Description']
|
description = row['Description']
|
||||||
date = row['Date'].strip() # Expected format: DD.MM.YYYY
|
date = row['Date'].strip() # Expected format: DD.MM.YYYY
|
||||||
start_time = row['start time'].strip() # Expected format: HH:MM
|
start_time = row['start time'].strip() # Expected format: HH:MM
|
||||||
|
|
Loading…
Reference in a new issue