博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python爬虫学习之用Python抢火车票的简单小程序
阅读量:5251 次
发布时间:2019-06-14

本文共 4274 字,大约阅读时间需要 14 分钟。

利用Python制作自动抢火车票小程序,过年再也不要担心没票了!

前言

每次过年很多人都会因为抢不到火车票而回不了家,所以小编利用Python写了一个自动抢火车票的工具,希望大家能抢到火车票,回家过个好年!

我本来想自己写一个练练手的,但是转眼一想,Python 本身最大的优势是什么,不就是有很多牛逼的人已经造好轮子了吗?你只需要知道这些轮子并会使用就行了,这样会节省你大量的精力和时间,而且站在巨人的肩膀上,会看得更远。于是我在 github 上一搜索,果然有不少抢票程序,有的是 Python2,有的是 Python3,按 start 数据排序,经过亲自使用和对比,我选择了一个相对较好用的程序,并稍加以改进和完善。

话不多说,直接上代码:

1 '''  2 在学习过程中有什么不懂得可以加我的  3 python学习交流扣扣qun,934109170  4 群里有不错的学习视频教程、开发工具与电子书籍。  5 与你分享python企业当下人才需求及怎么从零基础学习好python,和学习什么内容。  6 '''  7    8 @@ -0,0 +1,124 @@  9 # -*- coding: utf-8 -*- 10 """ 11 @author: liuyw 12 """ 13 from splinter.browser import Browser 14 from time import sleep 15 import traceback 16 import time, sys 17   18 class huoche(object): 19   driver_name = '' 20   executable_path = '' 21   #用户名,密码 22   username = u"xxx" 23   passwd = u"xxx" 24   # cookies值得自己去找, 下面两个分别是沈阳, 哈尔滨 25   starts = u"%u6C88%u9633%2CSYT" 26   ends = u"%u54C8%u5C14%u6EE8%2CHBB" 27   28   # 时间格式2018-01-19 29   dtime = u"2018-01-19" 30   # 车次,选择第几趟,0则从上之下依次点击 31   order = 0 32   ###乘客名 33   users = [u"xxx",u"xxx"] 34   ##席位 35   xb = u"二等座" 36   pz = u"成人票" 37   38   """网址""" 39   ticket_url = "https://kyfw.12306.cn/otn/leftTicket/init" 40   login_url = "https://kyfw.12306.cn/otn/login/init" 41   initmy_url = "https://kyfw.12306.cn/otn/index/initMy12306" 42   buy = "https://kyfw.12306.cn/otn/confirmPassenger/initDc" 43   44   def __init__(self): 45     self.driver_name = 'chrome' 46     self.executable_path = 'D:/chromedriver' 47   48   def login(self): 49     self.driver.visit(self.login_url) 50     self.driver.fill("loginUserDTO.user_name", self.username) 51     # sleep(1) 52     self.driver.fill("userDTO.password", self.passwd) 53     print(u"等待验证码,自行输入...") 54     while True: 55       if self.driver.url != self.initmy_url: 56         sleep(1) 57       else: 58         break 59   60   def start(self): 61     self.driver = Browser(driver_name=self.driver_name,executable_path=self.executable_path) 62     self.driver.driver.set_window_size(1400, 1000) 63     self.login() 64     # sleep(1) 65     self.driver.visit(self.ticket_url) 66     try: 67       print(u"购票页面开始...") 68       # sleep(1) 69       # 加载查询信息 70       self.driver.cookies.add({
"_jc_save_fromStation": self.starts}) 71 self.driver.cookies.add({
"_jc_save_toStation": self.ends}) 72 self.driver.cookies.add({
"_jc_save_fromDate": self.dtime}) 73 74 self.driver.reload() 75 76 count = 0 77 if self.order != 0: 78 while self.driver.url == self.ticket_url: 79 self.driver.find_by_text(u"查询").click() 80 count += 1 81 print(u"循环点击查询... 第 %s 次" % count) 82 # sleep(1) 83 try: 84 self.driver.find_by_text(u"预订")[self.order - 1].click() 85 except Exception as e: 86 print(e) 87 print(u"还没开始预订") 88 continue 89 else: 90 while self.driver.url == self.ticket_url: 91 self.driver.find_by_text(u"查询").click() 92 count += 1 93 print(u"循环点击查询... 第 %s 次" % count) 94 # sleep(0.8) 95 try: 96 for i in self.driver.find_by_text(u"预订"): 97 i.click() 98 sleep(1) 99 except Exception as e:100 print(e)101 print(u"还没开始预订 %s" % count)102 continue103 print(u"开始预订...")104 # sleep(3)105 # self.driver.reload()106 sleep(1)107 print(u'开始选择用户...')108 for user in self.users:109 self.driver.find_by_text(user).last.click()110 111 print(u"提交订单...")112 sleep(1)113 self.driver.find_by_text(self.pz).click()114 self.driver.find_by_id('').select(self.pz)115 # sleep(1)116 self.driver.find_by_text(self.xb).click()117 sleep(1)118 self.driver.find_by_id('submitOrder_id').click()119 print(u"开始选座...")120 self.driver.find_by_id('1D').last.click()121 self.driver.find_by_id('1F').last.click()122 123 sleep(1.5)124 print(u"确认选座...")125 self.driver.find_by_id('qr_submit_id').click()126 127 except Exception as e:128 print(e)129 130 if __name__ == '__main__':131 huoche = huoche()132 huoche.start()

 

转载于:https://www.cnblogs.com/xiaoyiq/p/11333931.html

你可能感兴趣的文章
.net 文本框只允许输入XX,(正则表达式)
查看>>
实验2-2
查看>>
android smack MultiUserChat.getHostedRooms( NullPointerException)
查看>>
[置顶] Linux终端中使用上一命令减少键盘输入
查看>>
BootScrap
查看>>
Java实现二分查找
查看>>
UIImage 和 iOS 图片压缩UIImage / UIImageVIew
查看>>
php7 新特性整理
查看>>
RabbitMQ、Redis、Memcache、SQLAlchemy
查看>>
03 线程池
查看>>
手机验证码执行流程
查看>>
设计模式课程 设计模式精讲 2-2 UML类图讲解
查看>>
Silverlight 的菜单控件。(不是 Toolkit的)
查看>>
jquery的contains方法
查看>>
linux后台运行和关闭SSH运行,查看后台任务
查看>>
桥接模式-Bridge(Java实现)
查看>>
303. Range Sum Query - Immutable
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
前台freemark获取后台的值
查看>>
Leetcode: Unique Binary Search Trees II
查看>>