开学抢不到车票?Python自动抢票脚本,12306迅速出票!成功率高达100%!!!

目录标题

      • 前言
      • 环境使用:
      • 模块使用:
      • 查票: 先获取车次信息
        • 一. 数据来源分析
        • 二. 代码实现过程
      • 实现购票程序
      • 尾语

前言

嗨喽~大家好呀,这里是魔王呐 ❤ ~!

环境使用:

  • Python 3.8

  • Pycharm

  • 谷歌浏览器

  • 谷歌驱动

模块使用:

  • requests —> pip install requests 数据请求模块

  • prettytable —> pip install prettytable 打印好看一些

  • selenium —> pip install selenium==3.141.0 模拟人的行为去操作浏览器

  • json —> 内置模块 不需要安装

课前素材:

  • city.json文件 文件点击此处转文末名片免费获取

安装python第三方模块:

  1. win + R 输入 cmd 点击确定, 输入安装命令 pip install 模块名 (pip install requests) 回车

  2. 在pycharm中点击Terminal(终端) 输入安装命令

开学抢不到车票?Python自动抢票脚本,12306迅速出票!成功率高达100%!!!_第1张图片

查票: 先获取车次信息

一. 数据来源分析

  • 获取车次信息

    通过浏览器抓包分析, 这些车次信息, 在那个url里面

    抓包分析 —> 开发者工具进行抓包 <学python采集必备>

    1. 打开开发者工具: F12 或者 鼠标右键点击检查 选择 network

    2. 点击网页查询按钮 --> 会直接返回查询数据结果

    只需要请求

    就可以得到相关车次信息数据内容

二. 代码实现过程

“”"

1. 发送请求, 模拟浏览器对url地址发送请求

实现查询功能:

  • 输入出发城市

  • 输入到达城市

  • 输入出发时间

  • 城市名字: 字母

“”"

完整源码/资料/解答等 点击此处跳转文末名片免费获取

# 读取文件 城市字母文件
f = open('city.json', encoding='utf-8')
# f.read() 返回字符串数据类型 把字符串转成json字典数据 --> 根据键值对取值
json_data = json.loads(f.read())
# 输入内容
from_city = input('请输入你要出发城市: ')
to_city = input('请输入你要到达城市: ')
date = '2022-11-09'
# 确定请求链接
url = f'https://kyfw.12306.cn/otn/leftTicket/query?leftTicketDTO.train_date={date}&leftTicketDTO.from_station={json_data[from_city]}&leftTicketDTO.to_station={json_data[to_city]}&purpose_codes=ADULT'
# 模拟伪装 ---> headers 请求头
headers = {
    # Cookie 用户信息, 表示常用于检测是否有登陆账号
    'Cookie': '_uab_collina=165650330916153394558455; JSESSIONID=34AFEC7D7370756179A2976A79434D6A; _jc_save_wfdc_flag=dc; _jc_save_fromStation=%u957F%u6C99%2CCSQ; BIGipServerotn=1911030026.24610.0000; BIGipServerpassport=770179338.50215.0000; guidesStatus=off; highContrastMode=defaltMode; cursorStatus=off; RAIL_EXPIRATION=1668129535127; RAIL_DEVICEID=TbHG0I9N4zNOVXocTOo6JdSREGznbbsYb5f_xQPshKLa1Y8Qx7LbGMu_h4Zwb6MyBOk_1zvlhZn85dlBcC4F1SEL1hwpTWuAkNkA7dSIqQ-dgdZAcoL1jMCS4bWfKSgKEstpGs8BAzfO-ItsTfKkP6YQL9Y24vGA; fo=uyys4j4q4rs7diywCDbOKBwdzYaDJcHjbyEG0hwDDZbF9Swz2dB79o6CCDC_EOHwJ7XidDtuZKQKjz6vYdfE3PDpSX9YvVulaMDDQmKGRPhrjzRZHlNGKC2S6egp70_4PJGqyv770aRXnJgffGRwkABzbJZDDiUtaTyHzatcoZpt_YO-T-dfbdjNQrQ; route=9036359bb8a8a461c164a04f8f50b252; _jc_save_toStation=%u4E0A%u6D77%2CSHH; _jc_save_fromDate=2022-11-09; _jc_save_toDate=2022-11-07',
    # User-Agent 用户代理 表示浏览器基本身份信息
    # 完整源码文档:加V:pytho8987免费获取,验证记得备注“777”
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36'
}
# 发送请求
response = requests.get(url=url, headers=headers)
#  表示请求成功了
print(response)

“”"

2. 获取数据, 获取服务器返回响应数据

为什么获取response.json() 数据的时候报错?

  • simplejson.errors.JSONDecodeError: Expecting value: line 1 column 4 (char 3)

    一定获取的数据, 不是完整json数据格式

    解决方法:

    1. 获取response.text 看数据返回情况
      发现自己获取的数据, 和开发者工具里面所看到不一样 <因为你被反爬了 [要么得不到数据, 要么得到数据不是想要的]>

    2. 因为没有伪装, 加headers 伪装一下

3. 解析数据, 提取我们想要车次信息

  • response.json() 获取响应json字典数据 完整的花括号

  • response.text 获取响应文本数据 字符串数据

根据基础语法知识点: 字典取值 --> 键值对取值, 根据冒号左边的内容[键], 提取冒号有右边的内容[值]

“”"

# 实例化一个对象
tb = pt.PrettyTable()
# 输出添加字段名
tb.field_names = [
    '序号',
    '车次',
    '出发时间',
    '到达时间',
    '耗时',
    '特等座',
    '一等',
    '二等',
    '软卧',
    '硬卧',
    '硬座',
    '无座',
]
# 添加序号 每次循环+1
page = 0
# for循环遍历, 把列表里面元素 一个一个提出来
完整源码文档:加V:pytho8987免费获取,验证记得备注“777for i in response.json()['data']['result']:
    # 先用 split 分割, 再用列表取值: 根据索引位置
    index = i.split('|')
    num = index[3]  # 车次
    start_time = index[8]  # 出发时间
    end_time = index[9]  # 到达时间
    use_time = index[10]  # 耗时
    topGrade = index[32]  # 特等座
    first_class = index[31]  # 一等
    second_class = index[30]  # 二等
    hard_sleeper = index[28]  # 硬卧
    hard_seat = index[29]  # 硬座
    no_seat = index[26]  # 无座
    soft_sleeper = index[23]  # 软卧
    dit = {
        '序号': page,
        '车次': num,
        '出发时间': start_time,
        '到达时间': end_time,
        '耗时': use_time,
        '特等座': topGrade,
        '一等': first_class,
        '二等': second_class,
        '软卧': soft_sleeper,
        '硬卧': hard_sleeper,
        '硬座': hard_seat,
        '无座': no_seat,
    }

4. 查询功能实现, 根据输入不同城市,以及时间点 获取不同车次

    # print(dit)
    # 添加每行输出内容
    tb.add_row([page, num, start_time, end_time,
                use_time,
                topGrade,
                first_class,
                second_class,
                soft_sleeper,
                hard_sleeper,
                hard_seat,
                no_seat,
                ])
    page += 1 # 每次循环+1

print(tb)

实现购票程序

# 导入数据请求模块
import requests
# 导入 prettytable  as 重命名  prettytable 重命名为 pt
import prettytable as pt
# 导入json模块
import json
# 导入selenium
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
# 导入账号密码
from password import Password, account
# 导入time模块
import time

“”"

模拟人的行为去操作浏览器

  1. 打开浏览器

  2. 输入12306登陆网址

  3. 输入账号密码, 点击登陆

  4. 选择城市以及时间, 点击查询

  5. 选择车次 点击预订

  6. 选择乘车人, 提交订单

  7. 选择座位, 点击购买

“”"

# 1. 打开浏览器
driver = webdriver.Chrome()
# 2. 输入12306登陆网址
driver.get('https://kyfw.12306.cn/otn/resources/login.html')
try:
    # 3. 输入账号密码, 点击登陆
    # 输入账号
    driver.find_element_by_css_selector('#J-userName').send_keys(account)
    # 输入密码
    driver.find_element_by_css_selector('#J-password').send_keys(Password)
    # 点击确定
    driver.find_element_by_css_selector('#J-login').click()
    # 3.1 点击弹窗
    driver.implicitly_wait(10)  # 延时等待 为了让网页元素加载
    time.sleep(1)
    driver.find_element_by_css_selector('.btn').click()
    # 3.2 点击车票预定
    driver.find_element_by_css_selector('#link_for_ticket').click()
    # 4. 选择城市以及时间, 点击查询
    完整源码文档:加V:pytho8987免费获取,验证记得备注“777”
    driver.find_element_by_css_selector('#fromStationText').click() # 点击输入框
    driver.find_element_by_css_selector('#fromStationText').clear() # 清空输入框
    driver.find_element_by_css_selector('#fromStationText').send_keys('长沙') # 输入内容
    driver.find_element_by_css_selector('#fromStationText').send_keys(Keys.ENTER) # 回车按钮
    # 输入到达的城市
    driver.find_element_by_css_selector('#toStationText').click() # 点击输入框
    driver.find_element_by_css_selector('#toStationText').clear() # 清空输入框
    driver.find_element_by_css_selector('#toStationText').send_keys('上海') # 输入内容
    driver.find_element_by_css_selector('#toStationText').send_keys(Keys.ENTER) # 回车按钮
    # 输入时间
    driver.find_element_by_css_selector('#train_date').click() # 点击输入框
    driver.find_element_by_css_selector('#train_date').clear() # 清空输入框
    driver.find_element_by_css_selector('#train_date').send_keys('2022-11-09') # 输入内容
    # 点击查询按钮
    driver.find_element_by_css_selector('#query_ticket').click()
    # 点击预定
    driver.find_element_by_css_selector('#queryLeftTable tr:nth-child(1) .btn72').click()
    # 选择乘车人
    driver.find_element_by_css_selector('#normalPassenger_1').click()
    # 点击提交提单
    driver.find_element_by_css_selector('#submitOrder_id').click()
    # 选择座位
    # 完整源码文档:加V:pytho8987免费获取,验证记得备注“777”
    # driver.find_element_by_css_selector('#erdeng1 > ul:nth-child(4) > li:nth-child(2)').click()
    # 点击提交
    time.sleep(3)
    driver.find_element_by_css_selector('#qr_submit_id').click()
    driver.find_element_by_css_selector('#qr_submit_id').click()

except:
    pass

尾语

感谢你观看我的文章呐~本次航班到这里就结束啦

希望本篇文章有对你带来帮助 ,有学习到一点知识~

躲起来的星星也在努力发光,你也要努力加油(让我们一起努力叭)。

最后,宣传一下呀~更多源码、资料、素材、解答、交流皆点击下方名片获取呀

你可能感兴趣的:(python,python,开发语言,pycharm,学习)