├── .gitignore ├── LICENSE ├── README.md ├── config.ini ├── error ├── __init__.py └── exception.py ├── helper ├── __init__.py └── jd_helper.py ├── main.py ├── maotai ├── __init__.py ├── config.py ├── jd_logger.py ├── jd_spider_requests.py └── timer.py ├── requirements.txt └── 关注公众号观看视频教程.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/config.ini -------------------------------------------------------------------------------- /error/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/error/__init__.py -------------------------------------------------------------------------------- /error/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/error/exception.py -------------------------------------------------------------------------------- /helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/helper/__init__.py -------------------------------------------------------------------------------- /helper/jd_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/helper/jd_helper.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/main.py -------------------------------------------------------------------------------- /maotai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/maotai/__init__.py -------------------------------------------------------------------------------- /maotai/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/maotai/config.py -------------------------------------------------------------------------------- /maotai/jd_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/maotai/jd_logger.py -------------------------------------------------------------------------------- /maotai/jd_spider_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/maotai/jd_spider_requests.py -------------------------------------------------------------------------------- /maotai/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/maotai/timer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/requirements.txt -------------------------------------------------------------------------------- /关注公众号观看视频教程.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello8817/jd-seckill-maotai/HEAD/关注公众号观看视频教程.jpg --------------------------------------------------------------------------------