def main():
weekday_workbook = xlrd.open_workbook(WEEKDAY_FILE_NAME)
weekend_workbook = xlrd.open_workbook(WEEKEND_FILE_NAME)
weekday_sheets_file = weekday_workbook.sheets()
weekend_sheets_file = weekend_workbook.sheets()
weekday_stop_times = create_stop_times(weekday_sheets_file, weekday_workbook)
weekend_stop_times = create_stop_times(weekend_sheets_file, weekend_workbook)
print(HEADER)
for s in weekday_stop_times:
print(s)
for s in weekend_stop_times:
print(s)
评论列表
文章目录