lit ncov report
v2.2.1
Python封装库
อย่างไม่เป็นทางการ CLI工具
และ拓展实现
ของ "แพลตฟอร์มการจัดการและควบคุมสถานะสุขภาพ" ของสถาบันเทคโนโลยีลั่วหยาง
หากคุณต้องการเวอร์ชันเก่า โปรดไปที่เวอร์ชัน 1
ไร้เซิร์ฟเวอร์ (เช่น ฟังก์ชันคลาวด์) โปรดไปที่ scf
# Python3.6+ พร้อม pippip ติดตั้ง litncov --upgrade
นักเทียบท่าวิ่ง -it --rm icepie/litncov
# นำเข้าโมดูลจาก litncov.user นำเข้า litUesr# สร้างอินสแตนซ์ใหม่ testme = litUesr("username", "password")# ตรวจสอบว่าการเข้าสู่ระบบสำเร็จหรือไม่หาก testme.is_logged():# พิมพ์ข้อมูลผู้ใช้ print(testme.info) # พิมพ์ครั้งสุดท้าย รายงานข้อมูล print(testme.get_last_record())# Query 2021-01-04 ข้อมูลที่รายงานแล้ว print(testme.query_record('2021-01-04'))# Query รายงานข้อมูลตั้งแต่ 2021-01-04 ถึง 2021-01-18 print(testme.query_record('2021-01-04', ' 18-01-2021'))# พิมพ์ข้อมูลสถานะนักศึกษา print(testme.get_instructor())# พิมพ์ข้อมูลครอบครัวของผู้ใช้ print(testme.get_familys())# พิมพ์ข้อมูลการออกนอกบ้านของผู้ใช้ print(testme.get_trips())# พิมพ์พื้นที่ที่มีการแพร่ระบาดรุนแรง print(testme.get_important_city() )# ตรวจสอบว่ามีการรายงานในวันนี้หรือไม่หากไม่ใช่ testme.is_record_today():# ดำเนินการรายงานอุณหภูมิร่างกายแรกของวัน ## โหมด: ใช้ข้อมูลที่รายงานล่าสุด จำนวนครั้ง: รายงานเฉพาะการพิมพ์ครั้งแรกเท่านั้น (testme.first_record(mode='last', rtimes=1))# ตรวจสอบว่ามีการรายงานเป็นครั้งที่สองในวันนี้หรือไม่ หากไม่ใช่ testme.is_record_today(2):# รายงานครั้งที่สอง อุณหภูมิประจำวัน ## Mode: manual filling, อุณหภูมิ: 36.6 องศาเซลเซียส print(testme.second_record(mode='manual', temperature=36.6))# ตรวจสอบว่ามีการรายงานเป็นครั้งที่สามในวันนี้หรือไม่หาก not testme.is_record_today(rtime=3):# ดำเนินการรายงานอุณหภูมิร่างกายครั้งที่สามของวัน## โหมด: สุ่มสร้างอุณหภูมิร่างกายปกติ (36.0~37.2 องศาเซลเซียส) พิมพ์(testme.third_record(mode='random'))
ใช้บันทึกการรายงานก่อนหน้านี้เพื่อสร้างรายงานสามฉบับในวันนี้
$ litncov -u USERNAME -p PASSWORD report -a# หากไม่มีพารามิเตอร์ -a จะมีการดำเนินการเฉพาะรายงานแรกของวันนี้เท่านั้น
ใช้อุณหภูมิสุ่มสำหรับรายงานฉบับที่ 2 ของวันนี้
$ litncov -u USERNAME -p รายงานรหัสผ่าน -r 2 -m สุ่ม
ป้อนอุณหภูมิด้วยตนเองสำหรับรายงานฉบับที่ 3 ของวันนี้
$ litncov -u ชื่อผู้ใช้ -p รายงานรหัสผ่าน -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 --user
ข้อมูลนอกสำนักงาน
$ litncov -u USERNAME -p ข้อมูล USERNAME --trip
บันทึกการรายงานล่าสุด
$ litncov -u ชื่อผู้ใช้ -p ข้อมูลชื่อผู้ใช้ -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 ชื่อผู้ใช้ -p แบบสอบถามรหัสผ่าน -s 2020-01-01
สืบค้นจากวันที่กำหนดถึงวันที่ที่แน่นอน
$ litncov -u ชื่อผู้ใช้ -p แบบสอบถามรหัสผ่าน -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)