python实现京东秒杀功能
更新时间:2018年07月30日 14:51:31 作者:Erick-LONG
这篇文章主要为大家详细介绍了python实现京东秒杀功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了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')
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
使用python实现拉钩网上的FizzBuzzWhizz问题示例
这篇文章主要介绍了使用python实现拉钩网上的FizzBuzzWhizz问题示例,需要的朋友可以参考下2014-05-05django filter过滤器实现显示某个类型指定字段不同值方式
这篇文章主要介绍了django filter过滤器实现显示某个类型指定字段不同值方式,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2020-07-07Python将列表数据写入文件(txt, csv,excel)
这篇文章主要介绍了Python将列表数据写入文件(txt, csv,excel),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2019-04-04PyQt5中QCommandLinkButton的详细教程与应用实战
在PyQt5中,QCommandLinkButton是一个特殊的按钮控件,它最初在Windows Vista中引入,并因其独特的外观和功能在GUI应用程序中得到了广泛应用,本教程将结合实际案例,详细介绍QCommandLinkButton在PyQt5中的用法,需要的朋友可以参考下2024-07-07
最新评论