You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12306/config/ticket_config.yaml

118 lines
2.8 KiB

7 years ago
---
# 配置文件请严格遵循yaml语法格式yaml学习地址 https://ansible-tran.readthedocs.io/en/latest/docs/YAMLSyntax.html
7 years ago
set:
# 出发日期(list)格式ex
# - 2018-01-06
# - 2018-01-07
7 years ago
station_dates:
6 years ago
- "2018-12-29"
# 是否根据时间范围 和 乘车类型 购票
# 否则将需要手动填写车次
is_by_time: False
# 列车类型: 高铁 G 动车 D 其它火车 O
train_types: [G,D,O]
# 可接受最早出发时间 格式ex
# departure_time: "8:00"
departure_time: "00:00"
# 可接受最晚抵达时间 格式ex
# arrival_time: "16:00"
arrival_time: "24:00"
# 可接受最长旅途时间 格式ex
# take_time: "24:00"
take_time: "24:00"
7 years ago
# 过滤车次(list)格式ex
# - "G1353"
# - "G1329"
station_trains:
6 years ago
# - "G6114"
# - "G1311"
# - "G6201"
# - "G821"
# - "G1019"
# - "G6587"
# - "G2905"
# - "G6345"
# - "G6033"
# - "G75"
# - "G6025"
# - "G6341"
# - "G1021"
# - "G99"
- "G6011"
7 years ago
# 出发城市,比如深圳北,就填深圳就搜得到
6 years ago
from_station: "长沙"
# 到达城市 比如深圳北,就填深圳就搜得到
6 years ago
to_station: "深圳"
# 座位(list) 多个座位ex:
# - "二等座"
# - "一等座"
7 years ago
set_type:
6 years ago
- "二等座"
# 当余票小于乘车人,如果选择优先提交,则删减联系人和余票数一致在提交
6 years ago
is_more_ticket: True
# 乘车人(list) 多个乘车人ex:
# - "张三"
# - "李四"
ticke_peoples:
6 years ago
- "文贤平"
- "梁敏"
# 12306登录账号(list)
12306account:
6 years ago
- user: "@qq.com"
- pwd: ""
7 years ago
# 加入小黑屋时间,此功能为了防止僵尸票导致一直下单不成功错过正常的票
ticket_black_list_time: 5
7 years ago
# 自动打码
6 years ago
is_auto_code: True
# 打码平台, 2 为若快平台(目前只支持若快平台打码,打码兔已经关闭), 若快注册地址http://www.ruokuai.com/client/index?6726
auto_code_type: 2
# 打码平台账号
auto_code_account:
6 years ago
user: ""
pwd: ""
# 邮箱配置,如果抢票成功,将通过邮件配置通知给您
# 列举163
# email: "xxx@163.com"
# notice_email_list: "123@qq.com"
# username: "xxxxx"
# password: "xxxxx
# host: "smtp.163.com"
# 列举qq qq设置比较复杂需要在邮箱-->账户-->开启smtp服务取得授权码==邮箱登录密码
# email: "xxx@qq.com"
# notice_email_list: "123@qq.com"
# username: "xxxxx"
# password: "授权码"
# host: "smtp.qq.com"
email_conf:
7 years ago
is_email: True
6 years ago
email: "931128603@qq.com "
notice_email_list: "931128603@qq.com"
username: "931128603"
6 years ago
password: ""
6 years ago
host: "smtp.qq.com"
# 是否开启cdn查询可以更快的检测票票 1为开启2为关闭
is_cdn: 2
7 years ago
# 下单接口分为两种1 为快速下单2 是普通下单
6 years ago
order_type: 1
7 years ago