将重庆理工大学教务网课程导出为 iCalendar 文件(可用于 iCal、Google Calendar 等)
You need to install python 3 first.
brew install python3
Second, you need install beautifulsoup4 and icalendar by pip (pip3).
pip/pip3 install beautifulsoup4
pip/pip3 install icalendar
使用前需修改 cqut.py
第 192 行的日期,需要改成开学第一周星期一的日期。
python3 cqut.py -u <username> -p <password>
-u, --username 你的学号
-p, --password 你的密码
- 从本地配置文件读取账号和密码
- 从 http://cale.dc.cqut.edu.cn/Index.aspx?term=201x-201x 抓取开学时间
- 部署到 GAE
GPL-3.0