zoukankan      html  css  js  c++  java
  • python实现京东秒杀

    # _*_coding:utf-8_*_  
    from selenium import webdriver
    import datetime  
    import time
    
    
    driver = webdriver.Chrome(executable_path='chromedriver.exe')
    
    def login(uname, pwd):
        driver.get("http://www.jd.com")
        driver.find_element_by_link_text("你好,请登录").click()
    
        driver.find_element_by_link_text("账户登录").click()
        driver.find_element_by_name("loginname").send_keys(uname)
        driver.find_element_by_name("nloginpwd").send_keys(pwd)
        driver.find_element_by_id("loginsubmit").click()
    
        driver.get("https://cart.jd.com/cart.action")
    
        driver.find_element_by_link_text("去结算").click()
        now = datetime.datetime.now()
        print('login success:',now.strftime('%Y-%m-%d %H:%M:%S'))
    
    
    # buytime = '2016-12-27 22:31:00' 
    def buy_on_time(buytime):
        while True:
            now = datetime.datetime.now()
            if now.strftime('%Y-%m-%d %H:%M:%S') == buytime:
                while True:
                    try:
                        driver.find_element_by_id('order-submit').click()
                    except Exception as e:
                        time.sleep(0.1)
                print ('purchase success',now.strftime('%Y-%m-%d %H:%M:%S'))
                time.sleep(0.5)
    
    
    # entrance
    login('username', 'password')
    buy_on_time('2017-01-01 14:00:01')
  • 相关阅读:
    BZOJ3992 [SDOI2015]序列统计
    BZOJ3991 [SDOI2015]寻宝游戏
    BZOJ4007 [JLOI2015]战争调度
    BZOJ4006 [JLOI2015]管道连接
    BZOJ4004 [JLOI2015]装备购买
    P2567 [SCOI2010]幸运数字
    P1447 [NOI2010]能量采集
    比赛-Round 2 (11 Jul)
    题解-弹飞绵羊 (HNOI2015)
    归并排序模板
  • 原文地址:https://www.cnblogs.com/Erick-L/p/7391034.html
Copyright © 2011-2022 走看看