python实现京东秒杀功能
2019/7/15 0:27:00
本文主要是介绍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实现京东秒杀功能的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程