This gist is inspired by the video https://youtube.com/shorts/GysTi7uNTTI?si=Tb5WucfNBb5QoLAa
The goal of the video and this script, it's to emulate an framework similar to Flask or CDK
- Virtual Python environment (recommended)
""" | |
A script to parse cncf.io api events into ICS format | |
Developer: [email protected] | |
license: MIT | |
""" | |
import requests | |
from icalendar import Calendar, Event | |
from datetime import datetime |
This gist is inspired by the video https://youtube.com/shorts/GysTi7uNTTI?si=Tb5WucfNBb5QoLAa
The goal of the video and this script, it's to emulate an framework similar to Flask or CDK