From 6c1347f4a8e5bf0a851ecb86b924320975fb269b Mon Sep 17 00:00:00 2001 From: edpibu Date: Sun, 20 Sep 2020 20:55:27 +0200 Subject: [PATCH] Program structure --- parser.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/parser.py b/parser.py index 714ef69..4b9641b 100755 --- a/parser.py +++ b/parser.py @@ -7,6 +7,10 @@ import caldav, icalendar class GoogleSheetsParser(HTMLParser): + """ + Definition of a Google Sheets parser providing a table with each cell + and its position and size + """ def handle_starttag(self, tag, attrs): def handle_endtag(self, tag): @@ -14,5 +18,12 @@ class GoogleSheetsParser(HTMLParser): def handle_data(self, data): +# Getting the Google Sheet + +# Parsing the Sheet calParser = GoogleSheetsParser() + +# Transforming the cells into events + +# Pushing events to caldav server