forked from testerSunshine/12306
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
文贤平
committed
Sep 4, 2019
1 parent
fd379e7
commit f970b3e
Showing
2 changed files
with
12 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,15 +19,14 @@ | |
|
||
# 填入需要购买的车次(list),"G1353" | ||
STATION_TRAINS = [ | ||
"G6142", | ||
"G6174", | ||
"", | ||
] | ||
|
||
# 出发城市,比如深圳北,就填深圳就搜得到 | ||
FROM_STATION = "深圳北" | ||
FROM_STATION = "" | ||
|
||
# 到达城市 比如深圳北,就填深圳就搜得到 | ||
TO_STATION = "隆回" | ||
TO_STATION = "" | ||
|
||
# 座位(list) 多个座位ex: | ||
# "商务座", | ||
|
@@ -51,13 +50,12 @@ | |
# - "张三" | ||
# - "李四" | ||
TICKET_PEOPLES = [ | ||
"文贤平", | ||
"李梦云", | ||
"", | ||
] | ||
|
||
# 12306登录账号 | ||
USER = "[email protected]" | ||
PWD = "QWERTY" | ||
USER = "" | ||
PWD = "" | ||
|
||
# 加入小黑屋时间默认为5分钟,此功能为了防止僵尸票导致一直下单不成功错过正常的票 | ||
TICKET_BLACK_LIST_TIME = 5 | ||
|
@@ -80,10 +78,10 @@ | |
# host: "smtp.qq.com" | ||
EMAIL_CONF = { | ||
"IS_MAIL": True, | ||
"email": "[email protected]", | ||
"notice_email_list": "[email protected]", | ||
"username": "[email protected]", | ||
"password": "lwvgfrcydzyvbfjf", | ||
"email": "", | ||
"notice_email_list": "", | ||
"username": "", | ||
"password": "", | ||
"host": "smtp.qq.com", | ||
} | ||
|
||
|