-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathconfig.toml.example
More file actions
66 lines (52 loc) · 1.46 KB
/
Copy pathconfig.toml.example
File metadata and controls
66 lines (52 loc) · 1.46 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Proxy Configuration
USE_PROXY = false # Set to true to enable SOCKS5 proxy globally
[proxies]
all = "socks5://127.0.0.1:114514"
# ============================================================
# User Selection Configurations
# ============================================================
# -------------------- User: Alice --------------------
[[USER_CONFIGS]]
label = "User_Alice"
[[USER_CONFIGS.tables]]
profileId = "114514"
course_ids = [
"COURSEID_A1",
"COURSEID_A2",
]
[[USER_CONFIGS.tables]]
profileId = "1919810"
course_ids = [
"COURSEID_B1",
"COURSEID_B2",
]
[USER_CONFIGS.cookies]
JSESSIONID = "ALICE_SESSION_ID_HERE"
SERVERNAME = "c1"
# -------------------- User: Bob --------------------
[[USER_CONFIGS]]
label = "User_Bob"
[[USER_CONFIGS.tables]]
profileId = "233"
course_ids = [
"COURSEID_C1",
"COURSEID_C2",
]
[USER_CONFIGS.cookies]
JSESSIONID = "BOB_SESSION_ID_HERE"
SERVERNAME = "c2"
# ============================================================
# Inquiry Configuration
# ============================================================
[INQUIRY_USER_DATA]
label = "DefaultInquiryUser"
profileId = ["114", "514", "1919", "810"]
[INQUIRY_USER_DATA.cookies]
JSESSIONID = "YOUR_INQUIRY_JSESSIONID_HERE"
SERVERNAME = "YOUR_INQUIRY_SERVERNAME_HERE"
# ============================================================
# API Parameters
# ============================================================
[ENROLLMENT_DATA_API_PARAMS]
projectId = "1"
semesterId = "114514"