CreateStopTimes.py 文件源码

python
阅读 19 收藏 0 点赞 0 评论 0

项目:DonanBusGTFS 作者: aruneko 项目源码 文件源码
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)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号