Program structure
This commit is contained in:
parent
be054ed950
commit
a88ea53dbc
1 changed files with 18 additions and 0 deletions
18
parser.py
Executable file
18
parser.py
Executable 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()
|
Reference in a new issue