├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── get_free_proxies.py ├── get_product_info.py ├── icon └── nike.png ├── mainwindow.py ├── nike_login ├── nike_register_gui.py └── register.py ├── nike_terminator.py ├── nike_validate_ip.py ├── open_web_with_cookies.py ├── requirements.txt └── 购物车测试.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /get_free_proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/get_free_proxies.py -------------------------------------------------------------------------------- /get_product_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/get_product_info.py -------------------------------------------------------------------------------- /icon/nike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/icon/nike.png -------------------------------------------------------------------------------- /mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/mainwindow.py -------------------------------------------------------------------------------- /nike_login/nike_register_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/nike_login/nike_register_gui.py -------------------------------------------------------------------------------- /nike_login/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/nike_login/register.py -------------------------------------------------------------------------------- /nike_terminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/nike_terminator.py -------------------------------------------------------------------------------- /nike_validate_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/nike_validate_ip.py -------------------------------------------------------------------------------- /open_web_with_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/open_web_with_cookies.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/requirements.txt -------------------------------------------------------------------------------- /购物车测试.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikan1996/nike_purchase_system/HEAD/购物车测试.py --------------------------------------------------------------------------------