Online demo of open courses
Requirements: Python 3.8 or later
python -m pip install -U https://github.com/afq984/ilmsdump/archive/main.zip
The same command can be used to update to the latest version.
You may want to specify --user
, or install in a virtual environment.
ilmsdump --login
重新登入:
ilmsdump --logout --login
使用網址中的 Course ID 匯出 0001 以及 10910CS542200:
ilmsdump 74 46274
匯出所有修過的課:
ilmsdump enrolled
匯出所有修過的課,略過部份課程、教材:
ilmsdump enrolled --ignore=Course-34674 --ignore=Material-773177
繼續執行中斷的下載:
ilmsdump --resume=path/to/resume-file.pickle
ilmsdump --dry enrolled
ilmsdump --help
使用 ilmsfreeze 開啟下載的資料夾
Or
ilmsserve
預設網址為 http://localhost:8080 ,可用 --port 來改
Or
podman run --rm --mount type=bind,source=$PWD/ilmsdump.out,target=/data,ro=true -p 8080:8080 ghcr.io/afq984/ilmsserve:main
✔️ supported; 🚧 work in progress; ❓ maybe; ❌ lack of interest or too complicated
- 登入 ✔️
- PHPSESSID ✔️
- 帳號密碼 ✔️
- 課程說明 ✔️
- 課程活動(公告) ✔️
- 公告 ✔️
- 附件 ✔️
- 活動 ❌
- 公告 ✔️
- 上課教材 ✔️
- 附件 ✔️
- Evercam/Powercam 影片 ✔️
- 討論 ❌
- 討論區 ✔️
- 附件 ✔️
- 作業 ✔️
- 作業資訊 ✔️
- 附件 ✔️
- 已繳交作業 ✔️
- 附件 ✔️
- 評分 ✔️
- 評語 ✔️
- 分組作業 ✔️
- 討論 ❌
- 作業資訊 ✔️
- 問卷 ❌
- 線上測驗 ❌
- 出缺勤(統計) ❌
- 成績計算 ✔️
- 小組專區 ✔️
- 討論 ❌
Install in editable mode for easy modification & testing:
(venv) pip install -e .[dev]
nox is used to drive the tests.
python -m pytest tests
# or
nox -s test
nox -s lint
nox -s format