本文实例讲述了python代码写的12306订票代码,分享给大家供大家参考。
具体实现方法如下:
import datetime
import json
import re
import sys
import time
import Image
import PyV8
import requests
import tools.email_helper as emailHelper
reload(sys)
sys.setdefaultencoding('utf-8') # @UndefinedVariable
reqSingle = requests.Session()
attCheCi=["G655","G6741","G67","G491"] #关注的车次
dateList=["2015-02-18"] #关注的日期
username="12306登录用户名"
password="登录密码"
#这个是需要手动提交订单后f12自己找的,挨个post请求去找,参数名为:oldPassengerStr 格式如下
oldPassengerStr="姓名,1,130434199802036011,1_姓名2,1,130434199204238069,1_"
#这个是需要手动提交订单后f12自己找的,挨个post请求去找,参数名为:passengerTicketStr 格式如下
passengerTicketStr="O,0,1,姓名,1,130434199802036011,13683456789,N_O,0,1,姓名2,1,130434199204238069,13683456789,N"
header={
"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
"Accept-Encoding":"gzip, deflate",
"Accept-Language":"zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3",
"Connection":"keep-alive",
"Host":"kyfw.12306.cn",
"Referer":"https://kyfw.12306.cn/otn/safeguard/init",
"User-Agent":"Mozilla/5.0 (Windows NT 5.1; rv:34.0) Gecko/20100101 Firefox/34.0"
}
##定火车票
def orderTicket(fromStation,toStation,trainDate,secretStr):
header["Referer"]="https://kyfw.12306.cn/otn/leftTicket/init"
orderInitReq= reqSingle.get("https://kyfw.12306.cn/otn/leftTicket/init",headers=header)
header["Referer"]="https://kyfw.12306.cn/otn/leftTicket/init"
aryKV=extractKey(orderInitReq.content,header)
print aryKV
#初始化订票
header["Referer"]="https://kyfw.12306.cn/otn/leftTicket/init"
orderInitReq= reqSingle.post("https://kyfw.12306.cn/otn/leftTicket/submitOrderRequest",data={
aryKV[0]:aryKV[1],
"train_date":trainDate,
"myversion":"undefined",
"purpose_codes":"ADULT",
"query_from_station_name":fromStation,
"query_to_station_name":toStation,
"secretStr":secretStr,
"tour_flag":"dc",
"back_train_date":time.strftime('%Y-%m-%d',time.localtime(time.time())),
"undefined":""
},headers=header)
print orderInitReq.content
orderInitJson=orderInitReq.json()
if orderInitJson.get("status")==False or orderInitJson.get("httpstatus")!=200:
raise Exception("订票出现错误")
initDcReq= reqSingle.post("https://kyfw.12306.cn/otn/confirmPassenger/initDc", data={"_json_att":""},headers=header)
header["Referer"]="https://kyfw.12306.cn/otn/confirmPassenger/initDc"
aryKV=extractKey(initDcReq.content,header)
match =re.search("var globalRepeatSubmitToken = '(.*?)';", initDcReq.content)
ticketToken=match.group(1)
lianxirenReq=reqSingle.post("https://kyfw.12306.cn/otn/confirmPassenger/getPassengerDTOs", data={"REPEAT_SUBMIT_TOKEN":ticketToken,"_json_att":""},headers=header)
lianxirenJson=lianxirenReq.json()
#验证码
#开始做验证码
while True:
r=reqSingle.get("https://kyfw.12306.cn/otn/passcodeNew/getPassCodeNew?module=passenger&rand;=randp&",verify=False,timeout=5,headers=header)
with open("orderRand.jpg","wb") as rimg:
rimg.write(r.content)
pass
img=Image.open("orderRand.jpg")
img.show()
randCode=raw_input("请输入登录验证码:")
#验证验证码
randReq= reqSingle.post("https://kyfw.12306.cn/otn/passcodeNew/checkRandCodeAnsyn",data={
"REPEAT_SUBMIT_TOKEN":ticketToken,
"_json_att":"",
"rand":"randp",
"randCode":randCode},headers=header)
randRes=randReq.json()
if randRes.get("status") and randRes.get("httpstatus")==200 and randRes.get("data").get("result")=="1":
break;
pass
print "验证码输入正确!"
#检查票
checkOrderInfoReq=reqSingle.post("https://kyfw.12306.cn/otn/confirmPassenger/checkOrderInfo", data={
aryKV[0]:aryKV[1],
"REPEAT_SUBMIT_TOKEN":ticketToken,
"_json_att":"",
"bed_level_order_num":"000000000000000000000000000000",
"cancel_flag":2,
"oldPassengerStr":oldPassengerStr,
"passengerTicketStr":passengerTicketStr,
"randCode":randCode,
"tour_flag":"dc"
})
checkOrderInfoJson=checkOrderInfoReq.json()
if checkOrderInfoJson.get("status")==False or checkOrderInfoJson.get("httpstatus")!=200:
raise Exception("检查票出现错误")
pass
fromStationTelecode=re.search("'from_station_telecode':'(.*?)'", initDcReq.content).group(1)
leftTicket=re.search("'ypInfoDetail':'(.*?)'", initDcReq.content).group(1)
purpose_codes=re.search("'purpose_codes':'(.*?)'", initDcReq.content).group(1)
station_train_code=re.search("'station_train_code':'(.*?)'", initDcReq.content).group(1)
to_station_telecode=re.search("'to_station_telecode':'(.*?)'", initDcReq.content).group(1)
train_no=re.search("'train_no':'(.*?)'", initDcReq.content).group(1)
queueCountReq=reqSingle.post("https://kyfw.12306.cn/otn/confirmPassenger/getQueueCount",data={
"REPEAT_SUBMIT_TOKEN":ticketToken,
"_json_att":"",
"fromStationTelecode":fromStationTelecode,
"leftTicket":leftTicket,
"purpose_codes":purpose_codes,
"seatType":0,
"stationTrainCode":station_train_code,
"toStationTelecode":to_station_telecode,
"train_date":datetime.datetime.fromtimestamp(time.mktime(time.strptime(trainDate,'%Y-%m-%d'))).strftime('%a %b %d %Y %H:%M:%S GMT+0800'),
"train_no":train_no
},headers=header)
queueCountJson=queueCountReq.json()
print queueCountReq.content
if queueCountJson.get("status")==False or queueCountJson.get("httpstatus")!=200:
raise Exception("获取队列错误")
#确认队列
key_check_isChange=re.search("'key_check_isChange':'(.*?)'", initDcReq.content).group(1)
train_location=re.search("'train_location':'(.*?)'", initDcReq.content).group(1)
singleForQueueReq=reqSingle.post("https://kyfw.12306.cn/otn/confirmPassenger/confirmSingleForQueue",data={
"REPEAT_SUBMIT_TOKEN":ticketToken,
"_json_att":"",
"dwAll":"N",
"key_check_isChange":key_check_isChange,
"leftTicketStr":leftTicket,
"oldPassengerStr":oldPassengerStr,
"passengerTicketStr":passengerTicketStr,
"purpose_codes":purpose_codes,
"randCode":randCode,
"train_location":train_location
},headers=header)
singleForQueueJson=singleForQueueReq.json()
print singleForQueueReq.content
if singleForQueueJson.get("status")==False or singleForQueueJson.get("httpstatus")!=200:
raise Exception("confirmSingleForQueue异常")
if singleForQueueJson.get("data") is None or singleForQueueJson.get("data").get("submitStatus")==False:
raise Exception("confirmSingleForQueue异常")
#等待orderid
while True:
orderWaitReq= reqSingle.get("https://kyfw.12306.cn/otn/confirmPassenger/queryOrderWaitTime",data={"REPEAT_SUBMIT_TOKEN":ticketToken,
"_json_att":"",
"random":time.time(),
"tourFlag":"dc"
},headers=header)
print orderWaitReq.content
orderWaitJson=orderWaitReq.json()
if orderWaitJson.get("status") and orderWaitJson.get("httpstatus")==200:
if orderWaitJson.get("data") is not None and orderWaitJson.get("data").get("orderId") is not None:
orderId=orderWaitJson.get("data").get("orderId")
break
pass
pass
#进入队列
dcQueueReq=reqSingle.post("https://kyfw.12306.cn/otn/confirmPassenger/resultOrderForDcQueue",data={
"REPEAT_SUBMIT_TOKEN":ticketToken,
"_json_att":"",
"orderSequence_no":orderId
}
,headers=header)
dcQueueJson=dcQueueReq.json()
if dcQueueJson.get("status") and dcQueueJson.get("httpstatus")==200 and dcQueueJson.get("data") is not None and dcQueueJson.get("data").get("submitStatus"):
print "订票成功"
pass
else:
print dcQueueJson.content
print "订票失败"
pass
#https://kyfw.12306.cn/otn/confirmPassenger/resultOrderForDcQueue
pass
#检查是否登录
def checkIsLogin():
checkReq= reqSingle.post("https://kyfw.12306.cn/otn/login/checkUser", data={"_json_att":""},headers=header)
print u"检查是否登录"+checkReq.content
checkReqJson=checkReq.json()
if checkReqJson.get("status") and checkReqJson.get("httpstatus")==200:
if checkReqJson.get("data") is not None and checkReqJson.get("data").get("flag"):
return True
pass
return False
pass
#提取js加密内容后的key和value
def extractKey(htmlContent,headerxx):
loginMatch=re.search(r'<script src="(/otn/dynamicJs/.*?)" type="text/javascript" xml:space="preserve"></script>', htmlContent)
jsUrl="https://kyfw.12306.cn"+ loginMatch.group(1)
jsReq=reqSingle.get(jsUrl,verify=False,timeout=15,headers=headerxx)
jsContent= jsReq.content
jsMatch=re.search("(function bin216.*?)function aj", jsContent)
jsEncode= jsMatch.group(1)#获取加密的js内容
keyMatch=re.search("var key='(.*?)'",jsContent)
loginKey= keyMatch.group(1)#获取登录的key
ctx=PyV8.JSContext()
ctx.enter()
ctx.eval(jsEncode)
loginValue=ctx.locals.encode32(ctx.locals.bin216(ctx.locals.Base32.encrypt( "1111",loginKey)))
return [loginKey,loginValue]
pass
#登录操作
def login():
header["Referer"]="https://kyfw.12306.cn/otn/login/init"
r=reqSingle.get("https://kyfw.12306.cn/otn/login/init",verify=False,timeout=15,headers=header)
loginContent=r.content
aryKV=extractKey(loginContent,header)
#开始做验证码
while True:
r=reqSingle.get("https://kyfw.12306.cn/otn/passcodeNew/getPassCodeNew?module=login&rand;=sjrand&",verify=False,timeout=5,headers=header)
with open("loginRand.jpg","wb") as rimg:
rimg.write(r.content)
pass
img=Image.open("loginRand.jpg")
img.show()
randCode=raw_input("请输入登录验证码:")
#验证验证码
randReq= reqSingle.post("https://kyfw.12306.cn/otn/passcodeNew/checkRandCodeAnsyn",data={"rand":"sjrand","randCode":randCode},headers=header)
randRes=randReq.json()
if randRes.get("status") and randRes.get("httpstatus")==200 and randRes.get("data").get("result")=="1":
break;
pass
print "验证码输入正确!"
#开始登陆
loginRes=reqSingle.post("https://kyfw.12306.cn/otn/login/loginAysnSuggest",data={
aryKV[0]:aryKV[1],
"loginUserDTO.user_name":username,
"userDTO.password":password,
"randCode":randCode,
"myversion":"undefined",
"randCode_validate":""
},headers=header)
print repr(r.request)
print loginRes.content
loginResJson=loginRes.json()
if loginResJson.get("status") and loginResJson.get("httpstatus")==200:
if loginResJson.get("data") is not None and loginResJson.get("data").get("loginCheck")=="Y":
print "登录成功"
else:
raise Exception(loginRes.content)
else:
login()
pass
def checkTicket(dtStr):
print dt
while True:
try:
r= requests.get("https://kyfw.12306.cn/otn/leftTicket/queryT?leftTicketDTO.train_date="+dtStr+"&leftTicketDTO.from;_station=BXP&leftTicketDTO.to;_station=HDP&purpose;_codes=ADULT",verify=False,timeout=5,headers=header)
break
except Exception:
pass
pass
#print r.contentfd
print r.content
try:
queryDataJson= json.loads(r.content)
except Exception:
return
if queryDataJson["httpstatus"]==200 and queryDataJson["status"] :
#print queryDataJson["data"]
for checi in queryDataJson["data"]:
tmpData=checi["queryLeftNewDTO"]
trainCode=tmpData.get("station_train_code")
#yzNum=tmpData.get("yz_num")
yzNum=tmpData.get("ze_num")
if trainCode in attCheCi:
if yzNum!="--" and yzNum!="无" and (yzNum=="有" or int(yzNum)>=2):
#发邮件
fromStation=tmpData.get("start_station_name")
toStation=tmpData.get("end_station_name")
secretStr=checi.get("secretStr")
orderTicket(fromStation, toStation, dtStr, secretStr)
# body=dtStr+"-"+trainCode+"-"+yzNum+u"个硬座"
# print body
# mailer=emailHelper.email_helper("smtp.qq.com", "fd", "fss", "qq.com","plain")
# mailer.send("630419595@qq.com", u"有火车票了",body)
# raise Exception("有票了")
pass
print trainCode+yzNum
pass
pass
pass
if __name__ == '__main__':
# login()
# if checkIsLogin():
# print "登录成功"
#
# orderTicket("北京西","邯郸东","2015-01-14","MjAxNS0wMS0xNCMwMCNHNjczMSMwMjoxNSMwNzowNSMyNDAwMEc2NzMxMDUjQlhQI0hQUCMwOToyMCPljJfkuqzopb8j6YKv6YO45LicIzAxIzA2I08wMDAwMDA4MThNMDAwMDAwMTEwOTAwMDAwMDAyNiNQMiMxNDE5MDg2OTU2MTA0IzI5NEI0QkY0QTU2ODE2RDU1MzE5RkRCRkVEQzQ3Mzk2MUEyRUEwOEM0MUVCMjZGMDc3RUUyNzc0")
# exit()
login()
if checkIsLogin():
print "登录成功"
while True:
checkCount=0
for dt in dateList:
checkTicket(dt)
time.sleep(2)
checkCount+=1
if checkCount%10==0:
if checkIsLogin():
print "成功状态"
else:
print "被踢了"
pass
pass
大家抢到回家过年的车票了吗?
希望本文所述对大家的Python程序设计有所帮助。
京东创始人刘强东和其妻子章泽天最近成为了互联网舆论关注的焦点。有关他们“移民美国”和在美国购买豪宅的传言在互联网上广泛传播。然而,京东官方通过微博发言人发布的消息澄清了这些传言,称这些言论纯属虚假信息和蓄意捏造。
日前,据博主“@超能数码君老周”爆料,国内三大运营商中国移动、中国电信和中国联通预计将集体采购百万台规模的华为Mate60系列手机。
据报道,荷兰半导体设备公司ASML正看到美国对华遏制政策的负面影响。阿斯麦(ASML)CEO彼得·温宁克在一档电视节目中分享了他对中国大陆问题以及该公司面临的出口管制和保护主义的看法。彼得曾在多个场合表达了他对出口管制以及中荷经济关系的担忧。
今年早些时候,抖音悄然上线了一款名为“青桃”的 App,Slogan 为“看见你的热爱”,根据应用介绍可知,“青桃”是一个属于年轻人的兴趣知识视频平台,由抖音官方出品的中长视频关联版本,整体风格有些类似B站。
日前,威马汽车首席数据官梅松林转发了一份“世界各国地区拥车率排行榜”,同时,他发文表示:中国汽车普及率低于非洲国家尼日利亚,每百户家庭仅17户有车。意大利世界排名第一,每十户中九户有车。
近日,一项新的研究发现,维生素 C 和 E 等抗氧化剂会激活一种机制,刺激癌症肿瘤中新血管的生长,帮助它们生长和扩散。
据媒体援引消息人士报道,苹果公司正在测试使用3D打印技术来生产其智能手表的钢质底盘。消息传出后,3D系统一度大涨超10%,不过截至周三收盘,该股涨幅回落至2%以内。
9月2日,坐拥千万粉丝的网红主播“秀才”账号被封禁,在社交媒体平台上引发热议。平台相关负责人表示,“秀才”账号违反平台相关规定,已封禁。据知情人士透露,秀才近期被举报存在违法行为,这可能是他被封禁的部分原因。据悉,“秀才”年龄39岁,是安徽省亳州市蒙城县人,抖音网红,粉丝数量超1200万。他曾被称为“中老年...
9月3日消息,亚马逊的一些股东,包括持有该公司股票的一家养老基金,日前对亚马逊、其创始人贝索斯和其董事会提起诉讼,指控他们在为 Project Kuiper 卫星星座项目购买发射服务时“违反了信义义务”。
据消息,为推广自家应用,苹果现推出了一个名为“Apps by Apple”的网站,展示了苹果为旗下产品(如 iPhone、iPad、Apple Watch、Mac 和 Apple TV)开发的各种应用程序。
特斯拉本周在美国大幅下调Model S和X售价,引发了该公司一些最坚定支持者的不满。知名特斯拉多头、未来基金(Future Fund)管理合伙人加里·布莱克发帖称,降价是一种“短期麻醉剂”,会让潜在客户等待进一步降价。
据外媒9月2日报道,荷兰半导体设备制造商阿斯麦称,尽管荷兰政府颁布的半导体设备出口管制新规9月正式生效,但该公司已获得在2023年底以前向中国运送受限制芯片制造机器的许可。
近日,根据美国证券交易委员会的文件显示,苹果卫星服务提供商 Globalstar 近期向马斯克旗下的 SpaceX 支付 6400 万美元(约 4.65 亿元人民币)。用于在 2023-2025 年期间,发射卫星,进一步扩展苹果 iPhone 系列的 SOS 卫星服务。
据报道,马斯克旗下社交平台𝕏(推特)日前调整了隐私政策,允许 𝕏 使用用户发布的信息来训练其人工智能(AI)模型。新的隐私政策将于 9 月 29 日生效。新政策规定,𝕏可能会使用所收集到的平台信息和公开可用的信息,来帮助训练 𝕏 的机器学习或人工智能模型。
9月2日,荣耀CEO赵明在采访中谈及华为手机回归时表示,替老同事们高兴,觉得手机行业,由于华为的回归,让竞争充满了更多的可能性和更多的魅力,对行业来说也是件好事。
《自然》30日发表的一篇论文报道了一个名为Swift的人工智能(AI)系统,该系统驾驶无人机的能力可在真实世界中一对一冠军赛里战胜人类对手。
近日,非营利组织纽约真菌学会(NYMS)发出警告,表示亚马逊为代表的电商平台上,充斥着各种AI生成的蘑菇觅食科普书籍,其中存在诸多错误。
社交媒体平台𝕏(原推特)新隐私政策提到:“在您同意的情况下,我们可能出于安全、安保和身份识别目的收集和使用您的生物识别信息。”
2023年德国柏林消费电子展上,各大企业都带来了最新的理念和产品,而高端化、本土化的中国产品正在不断吸引欧洲等国际市场的目光。
罗永浩日前在直播中吐槽苹果即将推出的 iPhone 新品,具体内容为:“以我对我‘子公司’的了解,我认为 iPhone 15 跟 iPhone 14 不会有什么区别的,除了序(列)号变了,这个‘不要脸’的东西,这个‘臭厨子’。