lit ncov report
v2.2.1
洛陽理工學院"健康狀況管控平台" 的一個非官方Python封装库
兼CLI工具
與拓展实现
如需舊版請前往v1
Serverless(如雲端函數)請前往scf
# Python3.6+ with pippip install litncov --upgrade
docker run -it --rm icepie/litncov
# 導入模組from litncov.user import litUesr# 新實例testme = litUesr("username", "password")# 判斷是否登陸成功if testme.is_logged():# 列印使用者資訊 print(testme.info)#上次列印回報資訊 print(testme.get_last_record())# 查詢2021-01-04至今的回報資訊print(testme.query_record('2021-01-04'))# 查詢2021-01-04 至2021-01-18 的上報資訊print(testme.query_record('2021-01-04', ' 2021-01-18'))#列印學生學籍資訊print(testme.get_instructor())# 列印使用者家庭資訊print(testme.get_familys())# 列印使用者外出資訊print(testme.get_trips())# 列印疫情嚴重地區print(testme.get_important_city() )# 判斷今天是否上報過if not testme.is_record_today():# 進行當日第一次體溫上報##模式:使用上一次回報訊息,次數: 只回報第一次print(testme.first_record(mode='last', rtimes=1))# 判斷今天是否第二次上報過if not testme.is_record_today(2): # 進行當日第二次體溫上報## 模式:手動填入, 溫度: 36.6攝氏度print(testme.second_record(mode='manual', temperature=36.6))# 判斷今天是否第三次上報過if not testme.is_record_today(rtime=3):# 進行當日第三次體溫上報## 模式:隨機產生正常體溫(36.0~37.2攝氏度)print(testme.third_record(mode='random'))
使用上一筆上報記錄進行今天三次上報
$ litncov -u USERNAME -p PASSWORD report -a# 不含 -a 參數則只進行今天第一次上報
使用隨機溫度進行今天第二次上報
$ litncov -u USERNAME -p PASSWORD report -r 2 -m random
手動輸入溫度進行今天第三次上報
$ litncov -u USERNAME -p PASSWORD report -r 3 -t 36.7
$ litncov report -h usage: litncov report [-h] [-a] [-f] [-r RTIME] [-m MODE] [-t TEMP] optional arguments: -h, --help show this help message and exit -a, --all do the all report tasks today -f, --force forcely report -r RTIME, --rtime RTIME the report time {1,2,3} -m MODE, --mode MODE the report mode {last,random,manual}, default last -t TEMP, --temp TEMP the body temperature (float), only use in manual
主要個人資訊
$ litncov -u USERNAME -p USERNAME info --user
外出資訊
$ litncov -u USERNAME -p USERNAME info --trip
上次上報記錄
$ litncov -u USERNAME -p USERNAME info -l
$ litncov info -h usage: litncov info [-h] [-u] [-l] [-f] [-i] [-t] optional arguments: -h, --help show this help message and exit -u, --user the user main info -l, --last_record the user last record info -f, --family the user family info -i, --instructor the user instructor info -t, --tirp the user tirp info
查詢某日至今
$ litncov -u USERNAME -p PASSWORD query -s 2020-01-01
查詢某日至某日
$ litncov -u USERNAME -p PASSWORD query -s 2020-01-01 -e 2020-01-15
usage: litncov query [-h] -s START_TIME [-e END_TIME] optional arguments: -h, --help show this help message and exit -s START_TIME, --start_time START_TIME the start time of the report history (Year-Month-Day) -e END_TIME, --end_time END_TIME the end time of the report history, default Today (Year-Month-Day)