├── .gitignore ├── 9f8545518fa6684ebe9060b0fc019a83 ├── README.md ├── chromedriver ├── chromedriver.exe ├── conf ├── cookies.xls ├── icon ├── demo.jpg └── 京东-01.png ├── jd_logger.py ├── jd_main_ui.py ├── jd_main_ui.ui ├── jd_spider_requests.py ├── main.py ├── register.py ├── register.ui ├── requirements.txt ├── sacn_login.py ├── test.py ├── timer.py └── utils ├── chromedriver └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/.gitignore -------------------------------------------------------------------------------- /9f8545518fa6684ebe9060b0fc019a83: -------------------------------------------------------------------------------- 1 | 2ec93e33de50ee9dec164583583ca908 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/README.md -------------------------------------------------------------------------------- /chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/chromedriver -------------------------------------------------------------------------------- /chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/chromedriver.exe -------------------------------------------------------------------------------- /conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/conf -------------------------------------------------------------------------------- /cookies.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/cookies.xls -------------------------------------------------------------------------------- /icon/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/icon/demo.jpg -------------------------------------------------------------------------------- /icon/京东-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/icon/京东-01.png -------------------------------------------------------------------------------- /jd_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/jd_logger.py -------------------------------------------------------------------------------- /jd_main_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/jd_main_ui.py -------------------------------------------------------------------------------- /jd_main_ui.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/jd_main_ui.ui -------------------------------------------------------------------------------- /jd_spider_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/jd_spider_requests.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/main.py -------------------------------------------------------------------------------- /register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/register.py -------------------------------------------------------------------------------- /register.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/register.ui -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/requirements.txt -------------------------------------------------------------------------------- /sacn_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/sacn_login.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/test.py -------------------------------------------------------------------------------- /timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/timer.py -------------------------------------------------------------------------------- /utils/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/utils/chromedriver -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a516833759/jd_seckill/HEAD/utils/util.py --------------------------------------------------------------------------------