├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── conf_classTime.json ├── excel_reader.py ├── ical_generator.py ├── main.py ├── temp_classInfo.xls └── week_generate_tool.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetYe66/ClasstableToIcal/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetYe66/ClasstableToIcal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetYe66/ClasstableToIcal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetYe66/ClasstableToIcal/HEAD/README.md -------------------------------------------------------------------------------- /conf_classTime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetYe66/ClasstableToIcal/HEAD/conf_classTime.json -------------------------------------------------------------------------------- /excel_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetYe66/ClasstableToIcal/HEAD/excel_reader.py -------------------------------------------------------------------------------- /ical_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetYe66/ClasstableToIcal/HEAD/ical_generator.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetYe66/ClasstableToIcal/HEAD/main.py -------------------------------------------------------------------------------- /temp_classInfo.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetYe66/ClasstableToIcal/HEAD/temp_classInfo.xls -------------------------------------------------------------------------------- /week_generate_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetYe66/ClasstableToIcal/HEAD/week_generate_tool.py --------------------------------------------------------------------------------