├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── lazyspider ├── __init__.py ├── lazyagent.py ├── lazyheaders.py └── lazystore.py ├── requirements.txt ├── setup.py └── test ├── __init__.py └── header_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ehco1996/lazySpider/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ehco1996/lazySpider/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ehco1996/lazySpider/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ehco1996/lazySpider/HEAD/README.md -------------------------------------------------------------------------------- /lazyspider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lazyspider/lazyagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ehco1996/lazySpider/HEAD/lazyspider/lazyagent.py -------------------------------------------------------------------------------- /lazyspider/lazyheaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ehco1996/lazySpider/HEAD/lazyspider/lazyheaders.py -------------------------------------------------------------------------------- /lazyspider/lazystore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ehco1996/lazySpider/HEAD/lazyspider/lazystore.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyMySQL==0.7.11 2 | requests==2.18.4 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ehco1996/lazySpider/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/header_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ehco1996/lazySpider/HEAD/test/header_test.py --------------------------------------------------------------------------------