├── .gitignore ├── README.md ├── requirements.txt ├── scrapy.cfg └── scrapycrawlspider ├── __init__.py ├── items.py ├── loaders.py ├── middlewares.py ├── pipelines.py ├── settings.py └── spiders ├── __init__.py └── china.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/ScrapyCrawlSpider/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/ScrapyCrawlSpider/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/ScrapyCrawlSpider/HEAD/scrapy.cfg -------------------------------------------------------------------------------- /scrapycrawlspider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrapycrawlspider/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/ScrapyCrawlSpider/HEAD/scrapycrawlspider/items.py -------------------------------------------------------------------------------- /scrapycrawlspider/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/ScrapyCrawlSpider/HEAD/scrapycrawlspider/loaders.py -------------------------------------------------------------------------------- /scrapycrawlspider/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/ScrapyCrawlSpider/HEAD/scrapycrawlspider/middlewares.py -------------------------------------------------------------------------------- /scrapycrawlspider/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/ScrapyCrawlSpider/HEAD/scrapycrawlspider/pipelines.py -------------------------------------------------------------------------------- /scrapycrawlspider/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/ScrapyCrawlSpider/HEAD/scrapycrawlspider/settings.py -------------------------------------------------------------------------------- /scrapycrawlspider/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/ScrapyCrawlSpider/HEAD/scrapycrawlspider/spiders/__init__.py -------------------------------------------------------------------------------- /scrapycrawlspider/spiders/china.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/ScrapyCrawlSpider/HEAD/scrapycrawlspider/spiders/china.py --------------------------------------------------------------------------------