国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Python3.6實(shí)現(xiàn)12306火車票自動(dòng)搶票,并短信和郵件通知

Dogee / 1877人閱讀

摘要:最近在學(xué),所以用寫了這個(gè)搶票腳本,分享出來,與大家共同交流和學(xué)習(xí),有不對(duì)的地方,請(qǐng)大家多多指正。

最近在學(xué)Python,所以用Python寫了這個(gè)12306搶票腳本,分享出來,與大家共同交流和學(xué)習(xí),有不對(duì)的地方,請(qǐng)大家多多指正。話不多說,進(jìn)入正題:

在進(jìn)入正題之前,我想說明一下,由于12306官網(wǎng)的改版更新,所以腳本作了一點(diǎn)小小的變化,具體修改后的源碼,可以到GitHub上面查看……新版腳本源碼

這個(gè)腳本目前只能刷一趟車的,人數(shù)可以是多個(gè),支持選取作為類型等。
實(shí)現(xiàn)思路是splinter.browser模擬瀏覽器登陸和操作,由于12306的驗(yàn)證碼不好自動(dòng)識(shí)別,所以,驗(yàn)證碼需要用戶進(jìn)行手動(dòng)識(shí)別,并進(jìn)行登陸操作,之后的事情,就交由腳本來操作就可以了,下面是我測(cè)試時(shí)候的一些截圖:

第一步:如下圖,首先輸入搶票基本信息

第二步:然后進(jìn)入登錄頁(yè),需要手動(dòng)輸入驗(yàn)證碼,并點(diǎn)擊登陸操作

第三步:登陸后,自動(dòng)進(jìn)入到搶票頁(yè)面,如下圖這樣的

最后:就是坐等刷票結(jié)果就好了,如下圖這樣,就說是刷票成功了,刷到票后,會(huì)進(jìn)行短信和郵件的通知,請(qǐng)記得及時(shí)前往12306進(jìn)行支付,不然就白搶了。

Python運(yùn)行環(huán)境:python3.6
用到的模塊:re、splinter、time、sys、httplib2、urllib、smtplib、email
未安裝的模塊,請(qǐng)使用pip instatll進(jìn)行安裝,例如:pip install splinter
如下代碼是這個(gè)腳本所有用到的模塊引入:

import re
from splinter.browser import Browser
from time import sleep
import sys
import httplib2
from urllib import parse
import smtplib
from email.mime.text import MIMEText

刷票前信息準(zhǔn)備,我主要說一下始發(fā)站和目的地的cookie值獲取,因?yàn)檩斎氤鞘械臅r(shí)候,需要通過cookie值,cookie值可以通過12306官網(wǎng),然后在F12(相信所有的coder都知道這個(gè)吧)的network里面的查詢請(qǐng)求cookie中可以看到,在請(qǐng)求的header里面可以找到,_jc_save_fromStation值是出發(fā)站的cookie,_jc_save_toStation的值是目的地的cookie,然后加入到代碼里的城市的cookie字典city_list里即可,鍵是城市的首字母,值是cookie值的形式。

搶票,肯定需要先登錄,我這里模擬的登錄操作,會(huì)自動(dòng)填充12306的賬號(hào)名和密碼,當(dāng)然,你也可以在打開的瀏覽器中修改賬號(hào)和密碼,實(shí)現(xiàn)的關(guān)鍵代碼如下:

def do_login(self):
    """登錄功能實(shí)現(xiàn),手動(dòng)識(shí)別驗(yàn)證碼進(jìn)行登錄"""
    self.driver.visit(self.login_url)
    sleep(1)
    self.driver.fill("loginUserDTO.user_name", self.user_name)
    self.driver.fill("userDTO.password", self.password)
    print("請(qǐng)輸入驗(yàn)證碼……")
    while True:
        if self.driver.url != self.init_my_url:
            sleep(1)
        else:
            break

登錄之后,就是控制刷票的各種操作處理了,這里,我就不貼代碼了,因?yàn)榇a比較多,別擔(dān)心,在最后,我會(huì)貼出完整的代碼的。

當(dāng)刷票成功后,我會(huì)進(jìn)行短信和郵件的雙重通知,當(dāng)然,這里短信通知的平臺(tái),就看你用那個(gè)具體來修改代碼了,我用的是互億無線的體驗(yàn)版的免費(fèi)短信通知接口;發(fā)送郵件模塊我用的是smtplib,發(fā)送郵件服務(wù)器用的是163郵箱,如果用163郵箱的話,你還沒有設(shè)置客戶端授權(quán)密碼,記得先設(shè)置客戶端授權(quán)密碼就好了,挺方便的。以下是主要實(shí)現(xiàn)代碼:

def send_sms(self, mobile, sms_info):
    """發(fā)送手機(jī)通知短信,用的是-互億無線-的測(cè)試短信"""
    host = "106.ihuyi.com"
    sms_send_uri = "/webservice/sms.php?method=Submit"
    account = "C59782899"
    pass_word = "19d4d9c0796532c7328e8b82e2812655"
    params = parse.urlencode(
        {"account": account, "password": pass_word, "content": sms_info, "mobile": mobile, "format": "json"}
    )
    headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"}
    conn = httplib2.HTTPConnectionWithTimeout(host, port=80, timeout=30)
    conn.request("POST", sms_send_uri, params, headers)
    response = conn.getresponse()
    response_str = response.read()
    conn.close()
    return response_str

def send_mail(self, receiver_address, content):
    """發(fā)送郵件通知"""
    # 連接郵箱服務(wù)器信息
    host = "smtp.163.com"
    port = 25
    sender = "xxxxxx@163.com"  # 你的發(fā)件郵箱號(hào)碼
    pwd = "******"  # 不是登陸密碼,是客戶端授權(quán)密碼
    # 發(fā)件信息
    receiver = receiver_address
    body = "

溫馨提醒:

" + content + "

" msg = MIMEText(body, "html", _charset="utf-8") msg["subject"] = "搶票成功通知!" msg["from"] = sender msg["to"] = receiver s = smtplib.SMTP(host, port) # 開始登陸郵箱,并發(fā)送郵件 s.login(sender, pwd) s.sendmail(sender, receiver, msg.as_string())

說了那么多,感覺都是說了好多廢話啊,哈哈,不好意思,耽誤大家時(shí)間來看我瞎扯了,我貼上大家最關(guān)心的源碼,請(qǐng)接碼,大家在嘗試運(yùn)行過程中,有任何問題,可以給我留言或者私信我,我看到都會(huì)及時(shí)回復(fù)大家的:

#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
通過splinter刷12306火車票
可以自動(dòng)填充賬號(hào)密碼,同時(shí),在登錄時(shí),也可以修改賬號(hào)密碼
然后手動(dòng)識(shí)別驗(yàn)證碼,并登陸,接下來的事情,交由腳本來做了,靜靜的等待搶票結(jié)果就好(刷票過程中,瀏覽器不可關(guān)閉)
author: cuizy
time: 2018-05-30
"""

import re
from splinter.browser import Browser
from time import sleep
import sys
import httplib2
from urllib import parse
import smtplib
from email.mime.text import MIMEText


class BrushTicket(object):
    """買票類及實(shí)現(xiàn)方法"""

    def __init__(self, user_name, password, passengers, from_time, from_station, to_station, number, seat_type, receiver_mobile, receiver_email):
        """定義實(shí)例屬性,初始化"""
        # 1206賬號(hào)密碼
        self.user_name = user_name
        self.password = password
        # 乘客姓名
        self.passengers = passengers
        # 起始站和終點(diǎn)站
        self.from_station = from_station
        self.to_station = to_station
        # 乘車日期
        self.from_time = from_time
        # 車次編號(hào)
        self.number = number.capitalize()
        # 座位類型所在td位置
        if seat_type == "商務(wù)座特等座":
            seat_type_index = 1
            seat_type_value = 9
        elif seat_type == "一等座":
            seat_type_index = 2
            seat_type_value = "M"
        elif seat_type == "二等座":
            seat_type_index = 3
            seat_type_value = 0
        elif seat_type == "高級(jí)軟臥":
            seat_type_index = 4
            seat_type_value = 6
        elif seat_type == "軟臥":
            seat_type_index = 5
            seat_type_value = 4
        elif seat_type == "動(dòng)臥":
            seat_type_index = 6
            seat_type_value = "F"
        elif seat_type == "硬臥":
            seat_type_index = 7
            seat_type_value = 3
        elif seat_type == "軟座":
            seat_type_index = 8
            seat_type_value = 2
        elif seat_type == "硬座":
            seat_type_index = 9
            seat_type_value = 1
        elif seat_type == "無座":
            seat_type_index = 10
            seat_type_value = 1
        elif seat_type == "其他":
            seat_type_index = 11
            seat_type_value = 1
        else:
            seat_type_index = 7
            seat_type_value = 3
        self.seat_type_index = seat_type_index
        self.seat_type_value = seat_type_value
        # 通知信息
        self.receiver_mobile = receiver_mobile
        self.receiver_email = receiver_email
        # 主要頁(yè)面網(wǎng)址
        self.login_url = "https://kyfw.12306.cn/otn/login/init"
        self.init_my_url = "https://kyfw.12306.cn/otn/index/initMy12306"
        self.ticket_url = "https://kyfw.12306.cn/otn/leftTicket/init"
        # 瀏覽器驅(qū)動(dòng)信息,驅(qū)動(dòng)下載頁(yè):https://sites.google.com/a/chromium.org/chromedriver/downloads
        self.driver_name = "chrome"
        self.executable_path = "C:UserscuizyAppDataLocalProgramsPythonPython36Scriptschromedriver.exe"

    def do_login(self):
        """登錄功能實(shí)現(xiàn),手動(dòng)識(shí)別驗(yàn)證碼進(jìn)行登錄"""
        self.driver.visit(self.login_url)
        sleep(1)
        self.driver.fill("loginUserDTO.user_name", self.user_name)
        self.driver.fill("userDTO.password", self.password)
        print("請(qǐng)輸入驗(yàn)證碼……")
        while True:
            if self.driver.url != self.init_my_url:
                sleep(1)
            else:
                break

    def start_brush(self):
        """買票功能實(shí)現(xiàn)"""
        self.driver = Browser(driver_name=self.driver_name, executable_path=self.executable_path)
        # 瀏覽器窗口的大小
        self.driver.driver.set_window_size(900, 700)
        self.do_login()
        self.driver.visit(self.ticket_url)
        try:
            print("開始刷票……")
            # 加載車票查詢信息
            self.driver.cookies.add({"_jc_save_fromStation": self.from_station})
            self.driver.cookies.add({"_jc_save_toStation": self.to_station})
            self.driver.cookies.add({"_jc_save_fromDate": self.from_time})
            self.driver.reload()
            count = 0
            while self.driver.url.split("?")[0] == self.ticket_url:
                self.driver.find_by_text("查詢").click()
                sleep(1)
                count += 1
                print("第%d次點(diǎn)擊查詢……" % count)
                try:
                    car_no_location = self.driver.find_by_id("queryLeftTable")[0].find_by_text(self.number)[1]
                    current_tr = car_no_location.find_by_xpath("./../../../../..")
                    if current_tr.find_by_tag("td")[self.seat_type_index].text == "--":
                        print("無此座位類型出售,已結(jié)束當(dāng)前刷票,請(qǐng)重新開啟!")
                        sys.exit(1)
                    elif current_tr.find_by_tag("td")[self.seat_type_index].text == "無":
                        print("無票,繼續(xù)嘗試……")
                    else:
                        # 有票,嘗試預(yù)訂
                        print("刷到票了(余票數(shù):" + str(current_tr.find_by_tag("td")[self.seat_type_index].text) + "),開始嘗試預(yù)訂……")
                        current_tr.find_by_css("td.no-br>a")[0].click()
                        sleep(1)
                        key_value = 1
                        for p in self.passengers:
                            # 選擇用戶
                            print("開始選擇用戶……")
                            self.driver.find_by_text(p).last.click()
                            # 選擇座位類型
                            print("開始選擇席別……")
                            if self.seat_type_value != 0:
                                seat_select = self.driver.find_by_id("seatType_" + str(key_value))[0]
                                seat_select.find_by_xpath("http://option[@value="" + str(self.seat_type_value) + ""]")[0].click()
                            key_value += 1
                            sleep(0.5)
                            if p[-1] == ")":
                                self.driver.find_by_id("dialog_xsertcj_ok").click()
                        print("正在提交訂單……")
                        self.driver.find_by_id("submitOrder_id").click()
                        sleep(2)
                        # 查看放回結(jié)果是否正常
                        submit_false_info = self.driver.find_by_id("orderResultInfo_id")[0].text
                        if submit_false_info != "":
                            print(submit_false_info)
                            self.driver.find_by_id("qr_closeTranforDialog_id").click()
                            sleep(0.2)
                            self.driver.find_by_id("preStep_id").click()
                            sleep(0.3)
                            continue
                        print("正在確認(rèn)訂單……")
                        self.driver.find_by_id("qr_submit_id").click()
                        print("預(yù)訂成功,請(qǐng)及時(shí)前往支付……")
                        # 發(fā)送通知信息
                        self.send_mail(self.receiver_email, "恭喜您,搶到票了,請(qǐng)及時(shí)前往12306支付訂單!")
                        self.send_sms(self.receiver_mobile, "您的驗(yàn)證碼是:8888。請(qǐng)不要把驗(yàn)證碼泄露給其他人。")
                except Exception as error_info:
                    print(error_info)
        except Exception as error_info:
            print(error_info)

    def send_sms(self, mobile, sms_info):
        """發(fā)送手機(jī)通知短信,用的是-互億無線-的測(cè)試短信"""
        host = "106.ihuyi.com"
        sms_send_uri = "/webservice/sms.php?method=Submit"
        account = "C59782899"
        pass_word = "19d4d9c0796532c7328e8b82e2812655"
        params = parse.urlencode(
            {"account": account, "password": pass_word, "content": sms_info, "mobile": mobile, "format": "json"}
        )
        headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"}
        conn = httplib2.HTTPConnectionWithTimeout(host, port=80, timeout=30)
        conn.request("POST", sms_send_uri, params, headers)
        response = conn.getresponse()
        response_str = response.read()
        conn.close()
        return response_str

    def send_mail(self, receiver_address, content):
        """發(fā)送郵件通知"""
        # 連接郵箱服務(wù)器信息
        host = "smtp.163.com"
        port = 25
        sender = "gxcuizy@163.com"  # 你的發(fā)件郵箱號(hào)碼
        pwd = "CUIzy9118"  # 不是登陸密碼,是客戶端授權(quán)密碼
        # 發(fā)件信息
        receiver = receiver_address
        body = "

溫馨提醒:

" + content + "

" msg = MIMEText(body, "html", _charset="utf-8") msg["subject"] = "搶票成功通知!" msg["from"] = sender msg["to"] = receiver s = smtplib.SMTP(host, port) # 開始登陸郵箱,并發(fā)送郵件 s.login(sender, pwd) s.sendmail(sender, receiver, msg.as_string()) if __name__ == "__main__": # 12306用戶名 user_name = input("請(qǐng)輸入12306用戶名:") while user_name == "": user_name = input("12306用戶名不能為空,請(qǐng)重新輸入:") # 12306登陸密碼 password = input("請(qǐng)輸入12306登陸密碼:") while password == "": password = input("12306登陸密碼不能為空,請(qǐng)重新輸入:") # 乘客姓名 passengers_input = input("請(qǐng)輸入乘車人姓名,多人用英文逗號(hào)“,”連接,(例如單人“張三”或者多人“張三,李四”):") passengers = passengers_input.split(",") while passengers_input == "" or len(passengers) > 4: print("乘車人最少1位,最多4位!") passengers_input = input("請(qǐng)重新輸入乘車人姓名,多人用英文逗號(hào)“,”連接,(例如單人“張三”或者多人“張三,李四”):") passengers = passengers_input.split(",") # 乘車日期 from_time = input("請(qǐng)輸入乘車日期(例如“2018-08-08”):") date_pattern = re.compile(r"^d{4}-d{2}-d{2}$") while from_time == "" or re.findall(date_pattern, from_time) == []: from_time = input("乘車日期不能為空或者時(shí)間格式不正確,請(qǐng)重新輸入:") # 城市cookie字典 city_list = { "bj": "%u5317%u4EAC%2CBJP", # 北京 "hd": "%u5929%u6D25%2CTJP", # 邯鄲 "nn": "%u5357%u5B81%2CNNZ", # 南寧 "wh": "%u6B66%u6C49%2CWHN", # 武漢 "cs": "%u957F%u6C99%2CCSQ", # 長(zhǎng)沙 "ty": "%u592A%u539F%2CTYV", # 太原 "yc": "%u8FD0%u57CE%2CYNV", # 運(yùn)城 "gzn": "%u5E7F%u5DDE%u5357%2CIZQ", # 廣州南 "wzn": "%u68A7%u5DDE%u5357%2CWBZ", # 梧州南 } # 出發(fā)站 from_input = input("請(qǐng)輸入出發(fā)站,只需要輸入首字母就行(例如北京“bj”):") while from_input not in city_list.keys(): from_input = input("出發(fā)站不能為空或不支持當(dāng)前出發(fā)站(如有需要,請(qǐng)聯(lián)系管理員!),請(qǐng)重新輸入:") from_station = city_list[from_input] # 終點(diǎn)站 to_input = input("請(qǐng)輸入終點(diǎn)站,只需要輸入首字母就行(例如北京“bj”):") while to_input not in city_list.keys(): to_input = input("終點(diǎn)站不能為空或不支持當(dāng)前終點(diǎn)站(如有需要,請(qǐng)聯(lián)系管理員!),請(qǐng)重新輸入:") to_station = city_list[to_input] # 車次編號(hào) number = input("請(qǐng)輸入車次號(hào)(例如“G110”):") while number == "": number = input("車次號(hào)不能為空,請(qǐng)重新輸入:") # 座位類型 seat_type = input("請(qǐng)輸入座位類型(例如“軟臥”):") while seat_type == "": seat_type = input("座位類型不能為空,請(qǐng)重新輸入:") # 搶票成功,通知該手機(jī)號(hào)碼 receiver_mobile = input("請(qǐng)預(yù)留一個(gè)手機(jī)號(hào)碼,方便搶到票后進(jìn)行通知(例如:18888888888):") mobile_pattern = re.compile(r"^1{1}d{10}$") while receiver_mobile == "" or re.findall(mobile_pattern, receiver_mobile) == []: receiver_mobile = input("預(yù)留手機(jī)號(hào)碼不能為空或者格式不正確,請(qǐng)重新輸入:") receiver_email = input("請(qǐng)預(yù)留一個(gè)郵箱,方便搶到票后進(jìn)行通知(例如:test@163.com):") while receiver_email == "": receiver_email = input("預(yù)留郵箱不能為空,請(qǐng)重新輸入:") # 開始搶票 ticket = BrushTicket(user_name, password, passengers, from_time, from_station, to_station, number, seat_type, receiver_mobile, receiver_email) ticket.start_brush()

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/41819.html

相關(guān)文章

  • 12036車票小工具,希望大家都能順利回家

    摘要:鑒于市場(chǎng)上的大多數(shù)搶票軟件的安全問題和效率問題,就手動(dòng)修改了開源的代碼來為自己贏得撿漏的機(jī)會(huì),誰(shuí)叫本電腦是系統(tǒng)呢。 12306 鑒于市場(chǎng)上的大多數(shù)搶票軟件的安全問題和效率問題,就手動(dòng)修改了開源的代碼來為自己贏得撿漏的機(jī)會(huì),誰(shuí)叫本電腦是linux系統(tǒng)呢。縮減刷新的頻率也是一種策略,哈哈!!! 這是一款工具 這是一款搶票工具 這是一款12306自動(dòng)搶票開源工具 這是一款12306自動(dòng)...

    maochunguang 評(píng)論0 收藏0
  • 99%的人都不知道春節(jié)搶票背后云計(jì)算在加持

    摘要:春節(jié)搶票應(yīng)該是每個(gè)在外游子的必修課,還有不足一個(gè)月就要過春節(jié)了,現(xiàn)在的你,是不是還奮戰(zhàn)在搶票一線呢說到搶票,之所以現(xiàn)在大家能享受到流暢的移動(dòng)互聯(lián)網(wǎng)購(gòu)票服務(wù),其實(shí)背后都是云計(jì)算在加持,沒想到吧,原來看似高深的云計(jì)算離我們?nèi)绱酥4汗?jié)搶票應(yīng)該是每個(gè)在外游子的必修課,還有不足一個(gè)月就要過春節(jié)了,現(xiàn)在的你,是不是還奮戰(zhàn)在搶票一線呢?說到搶票,之所以現(xiàn)在大家能享受到流暢的移動(dòng)互聯(lián)網(wǎng)購(gòu)票服務(wù),其實(shí)背后...

    megatron 評(píng)論0 收藏0
  • 50 個(gè)加速包都搶不到車票,還不如這個(gè) Python 搶票神器

    摘要:但今年各種搶票軟件的橫行,還有官方出的加速包,導(dǎo)致連黃牛都不敢保證能買到票。今天我就給大家介紹一個(gè)開源的搶票程序,親測(cè)有效我身邊已經(jīng)有很多好友,通過這個(gè)程序搶到車票了。這個(gè)庫(kù)是用來在上同步校準(zhǔn)當(dāng)?shù)貢r(shí)間的。 showImg(https://segmentfault.com/img/remote/1460000017814865); 閱讀文本大概需要 6.6 分鐘。 又到了一年一度的搶票大...

    qianfeng 評(píng)論0 收藏0
  • 用Node.js查詢余票信息郵件通知

    摘要:因?yàn)樽约涸趯W(xué)校還有些事情,不知道具體哪天回家,于是就自己寫了一個(gè)監(jiān)控的小程序一功能命令行輸入火車站名和日期,修改查詢周期定時(shí)器時(shí)間,即可實(shí)現(xiàn)周期性的余票查詢并用郵件通知二流程概述命令行輸入信息利用信息,發(fā)起請(qǐng)求,查詢余票信息使用模塊來發(fā)送郵 因?yàn)樽约涸趯W(xué)校還有些事情,不知道具體哪天回家,于是就自己寫了一個(gè)監(jiān)控的小程序 一.功能: 命令行輸入火車站名和日期,修改查詢周期(定時(shí)器時(shí)間),即...

    tuomao 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

Dogee

|高級(jí)講師

TA的文章

閱讀更多
最新活動(dòng)
閱讀需要支付1元查看
<