├── .gitignore ├── LICENSE ├── README.md ├── lectureDL.py ├── other ├── heads_up_2017-07-29.md ├── initial_differences.md ├── subj_list_screenshot.png └── todo.md ├── requirements.txt ├── settings.py ├── settings_base.py ├── settings_example.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banool/lectureDL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banool/lectureDL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banool/lectureDL/HEAD/README.md -------------------------------------------------------------------------------- /lectureDL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banool/lectureDL/HEAD/lectureDL.py -------------------------------------------------------------------------------- /other/heads_up_2017-07-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banool/lectureDL/HEAD/other/heads_up_2017-07-29.md -------------------------------------------------------------------------------- /other/initial_differences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banool/lectureDL/HEAD/other/initial_differences.md -------------------------------------------------------------------------------- /other/subj_list_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banool/lectureDL/HEAD/other/subj_list_screenshot.png -------------------------------------------------------------------------------- /other/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banool/lectureDL/HEAD/other/todo.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banool/lectureDL/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- 1 | from settings_example import * 2 | -------------------------------------------------------------------------------- /settings_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banool/lectureDL/HEAD/settings_base.py -------------------------------------------------------------------------------- /settings_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banool/lectureDL/HEAD/settings_example.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banool/lectureDL/HEAD/util.py --------------------------------------------------------------------------------