windows编译tensorflow tensorflow单机多卡程序的框架 tensorflow的操作 tensorflow的变量初始化和scope 人体姿态检测 segmentation标注工具 tensorflow模型恢复与inference的模型简化 利用多线程读取数据加快网络训练 tensorflow使用LSTM pytorch examples 利用tensorboard调参 深度学习中的loss函数汇总 纯C++代码实现的faster rcnn tensorflow使用记录 windows下配置caffe_ssd use ubuntu caffe as libs use windows caffe like opencv windows caffe implement caffe model convert to keras model flappyBird DQN Joint Face Detection and Alignment using Multi-task Cascaded Convolutional Neural Networks Fast-style-transfer tensorflow安装 tensorflow DQN Fully Convolutional Models for Semantic Segmentation Transposed Convolution, Fractionally Strided Convolution or Deconvolution 基于tensorflow的分布式部署 用python实现mlp bp算法 用tensorflow和tflearn搭建经典网络结构 Data Augmentation Tensorflow examples Training Faster RCNN with Online Hard Example Mining 使用Tensorflow做Prisma图像风格迁移 RNN(循环神经网络)推导 深度学习中的稀疏编码思想 利用caffe与lmdb读写图像数据 分析voc2007检测数据 用python写caffe网络配置 ssd开发 将KITTI的数据格式转换为VOC Pascal的xml格式 Faster RCNN 源码分析 在Caffe中建立Python layer 在Caffe中建立C++ layer 为什么CNN反向传播计算梯度时需要将权重旋转180度 Caffe使用教程(下) Caffe使用教程(上) CNN反向传播 Softmax回归 Caffe Ubuntu下环境配置

抢购脚本

2018年02月27日

运行环境

python需要安装selenium

pip install selenium

安装 webdriver

下载chromedriver

http://chromedriver.storage.googleapis.com/index.html

2.29是chrome最新版,Windows下下载对应版本放到\Google\Chrome\Application\chromedriver.exe,同时添加到系统环境变量

脚本

#-*- coding:utf-8 -*-
#京东抢手机脚本
from selenium import webdriver
import datetime
import time

driver = webdriver.Chrome(executable_path="C:\Users\ZouJinyi\AppData\Local\Google\Chrome\Application\chromedriver.exe")
def login(uname, pwd):
    driver.get("http://www.jd.com")
    driver.find_element_by_link_text("你好,请登录").click()
    time.sleep(0.1)
    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()
    time.sleep(0.1)
    driver.get("https://cart.jd.com/cart.action")
    time.sleep(0.1)
    driver.find_element_by_partial_link_text("去结算").click()
    now = datetime.datetime.now()
    print now.strftime('%Y-%m-%d %H:%M:%S')
    print 'login success'
 
def buy_on_time(buytime):
    while True:
        now = datetime.datetime.now()
        if now.strftime('%Y-%m-%d %H:%M:%S') == buytime:
            driver.find_element_by_id('order-submit').click()
            time.sleep(0.1)
            print now.strftime('%Y-%m-%d %H:%M:%S')
            print 'purchase success'
        time.sleep(0.1)
  
# entrance
login('usr', 'pwd')
buy_on_time('2018-02-26 10:00:00')

blog comments powered by Disqus