-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_requests.py
31 lines (28 loc) · 1.84 KB
/
test_requests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- encoding: utf-8 -*-
'''
@file_name :test_requests.py
@description :利用requests库预定自习室,特点内存低,效率高
@time :2021/07/19 23:28:45
@author :Qifei
@version :1.0
'''
from myclass import *
'''
在变量buchung中,需要修改的数据如下:you need to change the following values in 'buchung':
kursnr:你想预定的课程的课程编号。在图书馆的预定系统中,很容易就可以找到。lernraum number, here u can find it.https://buchung.hsz.rwth-aachen.de/angebote/aktueller_zeitraum/_Lernraumbuchung.html
email:你的邮箱。ur email
sex:性别。男:M;女:W male:M female:W
vorname:名字。首字母大写 first name. Initial capital
name:姓。首字母大写 last name. Initial capital
strasse:街道和号码 street and number.
ort:邮编和地址,务必注意格式是52076 Aachen. zip code and city name. format must be: 52074 Aachen
matnr:六位学号 six-figure student number
telefon:带前缀的手机号 phone number
time:自习室开放时间,格式必须为8.00 - 16.30。 lernraum open time. format must be :8.00 - 16.30
开放时间即为程序开始运行抢座的时间,
在此之前程序会进入倒计时。
因此务必保证开放时间的准确。
其余内容可不修改. other values dont need to change
'''
buchung = {'time': '08.00 - 16.30', 'kursnr': '08611004','info':{ 'username': 'bausi', 'email': '[email protected]', 'sex': 'M', 'vorname': 'Ivan', 'name': 'Natanael', 'strasse': 'Pontstr.23', 'ort': '52076 Aachen', 'status': 'S-RWTH', 'matnr': '468389', 'telefon': '00491748068847'}}
LernraumInfo().buchen_platz_via_requests(buchung)