Added times
This commit is contained in:
parent
00be0b5ff4
commit
b71c295eee
1 changed files with 4 additions and 3 deletions
|
@ -55,7 +55,7 @@ class GoogleSheetsCalParser(HTMLParser):
|
|||
if not (self.row < 3 or (self.row - 2) % 12 < 2):
|
||||
self.inCell = True
|
||||
if 'rowspan' in dAttrs.keys():
|
||||
self.rowspan = dAttrs['rowspan']
|
||||
self.rowspan = int(dAttrs['rowspan'])
|
||||
else: self.rowspan = 1
|
||||
elif (self.row - 2) % 12 == 1:
|
||||
self.inDate = True
|
||||
|
@ -72,9 +72,10 @@ class GoogleSheetsCalParser(HTMLParser):
|
|||
def handle_data(self, data):
|
||||
if self.inDate:
|
||||
self.date = dt.strptime(data, '%d-%b-%y')
|
||||
print(self.date)
|
||||
elif self.inCell and data not in ['', '-']:
|
||||
print(data, self.row, self.column, self.rowspan)
|
||||
times = [TIMETABLE[(self.row - 2) % 12 - 2][1],
|
||||
TIMETABLE[(self.row - 2) % 12 - 2 + self.rowspan][0]]
|
||||
print(data, self.date, times)
|
||||
|
||||
|
||||
# Getting the Google Sheet
|
||||
|
|
Reference in a new issue