履修。その全てを極めるために。
- 履修登録・取り消し
- 時間割表示
- 科目検索
- 成績開示
- 累計成績要約 (履修単位数, 修得単位数, GPA)
- その他もろもろ
- *nix
- Python3
$ pip3 install twins
# オペレーティングシステムIIを履修
$ twins reg GB31801
# 確率論を切る
$ twins unreg GB11601
# 秋Aの時間割を見る
$ twins timetable 秋A
# 秋C時間割をiCalendar形式で出力
$ twins ics 秋C > timetable.ics
# 秋ABで木曜4-6限にある授業を検索
$ twins search '/^木4[1-9\,\-]*$/' | grep "秋AB"
# A+とった授業
$ twins stat | awk '$1 == "A+"{ print }'
# 母親にGPAを教える
$ twins sum | awk '$1 == "GPA:"{ print $2 }' | mail -s "my GPA" mom@example.com