This repository has been archived on 2020-10-14. You can view files and clone it, but cannot push or open issues or pull requests.
edt-parser/parser.py

19 lines
308 B
Python
Raw Normal View History

2020-09-20 20:53:24 +02:00
#!/usr/bin/env python
#-*- encoding: utf-8
import requests
from html.parser import HTMLParser
import caldav, icalendar
class GoogleSheetsParser(HTMLParser):
def handle_starttag(self, tag, attrs):
def handle_endtag(self, tag):
def handle_data(self, data):
calParser = GoogleSheetsParser()