# JD_auto **Repository Path**: ShaChengPo/JD_auto ## Basic Information - **Project Name**: JD_auto - **Description**: 京东购物车秒杀脚本 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-05-13 - **Last Updated**: 2021-05-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 环境要求: Python3;Firefox浏览器 ## 插件安装: ### 1.安装Python相关库(在Windows的cmd里面安装) ``` pip install selenium pip install datetime ``` ### 2.安装Firefox浏览器驱动:[下载地址](https://gitee.com/icio/JD_auto/raw/master/geckodriver-v0.26.0-win64.zip) 将解压缩后的文件放在Python主目录即可。 #### 测试是否安装成功新建py文件运行下列代码弹出Firefox则成功: ``` from selenium import webdriver browser = webdriver.Firefox() ```