-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
44 lines (44 loc) · 1.05 KB
/
Copy pathconfig.example.json
File metadata and controls
44 lines (44 loc) · 1.05 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
{
"user": {
"username": "",
"password": ""
},
"trip": {
"from_station": "北京",
"to_station": "上海",
"train_date": "2026-07-01",
"target_trains": ["G1", "G3"],
"time_range": "07:00-20:00"
},
"passengers": [
{
"name": "张三",
"id_card": "110101199001011234",
"phone": "13800138000",
"seat_type": "二等座",
"seat_preference": "A"
}
],
"strategy": {
"query_interval": 5,
"max_retry": 100,
"request_timeout": 30,
"random_delay_range": [1, 3]
},
"browser": {
"headless": false,
"user_data_dir": "./browser_data",
"window_size": "1920,1080"
},
"notification": {
"enable_email": false,
"email_smtp": "smtp.qq.com",
"email_user": "",
"email_pass": "",
"email_to": "",
"enable_serverchan": false,
"serverchan_key": ""
},
"cookies_path": "./cookies.json",
"log_path": "./logs"
}