├── .gitattributes ├── .gitignore ├── README.md ├── graduate_moodle.py ├── moodle_crawler.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chester71206/moodle_crawler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | craw 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chester71206/moodle_crawler/HEAD/README.md -------------------------------------------------------------------------------- /graduate_moodle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chester71206/moodle_crawler/HEAD/graduate_moodle.py -------------------------------------------------------------------------------- /moodle_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chester71206/moodle_crawler/HEAD/moodle_crawler.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium 2 | requests 3 | chardet 4 | certifi 5 | pathlib 6 | --------------------------------------------------------------------------------