Program structure

This commit is contained in:
Edgar P. Burkhart 2020-09-20 20:53:24 +02:00
parent be054ed950
commit a88ea53dbc
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 18 additions and 0 deletions

18
parser.py Executable file
View File

@ -0,0 +1,18 @@
#!/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()