├── .gitignore ├── calendar_parser.py ├── readme.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | -------------------------------------------------------------------------------- /calendar_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblique63/Python-GoogleCalendarParser/HEAD/calendar_parser.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oblique63/Python-GoogleCalendarParser/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pytz 2 | icalendar 3 | beautifulsoup 4 | --------------------------------------------------------------------------------