├── .gitignore ├── .vs ├── HITWH-curriculum-convert-to-ics-file │ └── v16 │ │ └── .suo ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── bug.py ├── class_list.xls ├── cul.py ├── new_system.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaalaCat/HITWH-curriculum-convert-to-ics-file/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/HITWH-curriculum-convert-to-ics-file/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaalaCat/HITWH-curriculum-convert-to-ics-file/HEAD/.vs/HITWH-curriculum-convert-to-ics-file/v16/.suo -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaalaCat/HITWH-curriculum-convert-to-ics-file/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaalaCat/HITWH-curriculum-convert-to-ics-file/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaalaCat/HITWH-curriculum-convert-to-ics-file/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaalaCat/HITWH-curriculum-convert-to-ics-file/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaalaCat/HITWH-curriculum-convert-to-ics-file/HEAD/README.md -------------------------------------------------------------------------------- /bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaalaCat/HITWH-curriculum-convert-to-ics-file/HEAD/bug.py -------------------------------------------------------------------------------- /class_list.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaalaCat/HITWH-curriculum-convert-to-ics-file/HEAD/class_list.xls -------------------------------------------------------------------------------- /cul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaalaCat/HITWH-curriculum-convert-to-ics-file/HEAD/cul.py -------------------------------------------------------------------------------- /new_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaalaCat/HITWH-curriculum-convert-to-ics-file/HEAD/new_system.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaalaCat/HITWH-curriculum-convert-to-ics-file/HEAD/requirements.txt --------------------------------------------------------------------------------