Skip to content

Instantly share code, notes, and snippets.

View Katakompe's full-sized avatar

Katakompe Katakompe

View GitHub Profile
@Katakompe
Katakompe / fix_ical.py
Created October 4, 2020 21:17
ICS-File Editor for Ufind Calendar exports
"""
Short script used to edit ics files from https://ufind.univie.ac.at/. It removes the leading course number. Additionally it can also remove the lv type.
"""
import re
from os import listdir
from os.path import isfile, join, exists
import sys
from typing import List