├── Dockerfile ├── bin └── testargs.py ├── requirements.txt ├── scrapy.cfg ├── setup.py └── testspiders ├── __init__.py ├── items.py ├── middleware.py ├── settings.py └── spiders ├── __init__.py ├── broken_link.py ├── dummy.py ├── followall.py ├── justfollow.py ├── localinfo.py ├── loremipsum.py ├── mad.py ├── noop.py ├── timed.py └── timewaste.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/Dockerfile -------------------------------------------------------------------------------- /bin/testargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/bin/testargs.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Scrapy>=1.0.2 2 | -------------------------------------------------------------------------------- /scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/scrapy.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/setup.py -------------------------------------------------------------------------------- /testspiders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testspiders/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/items.py -------------------------------------------------------------------------------- /testspiders/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/middleware.py -------------------------------------------------------------------------------- /testspiders/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/settings.py -------------------------------------------------------------------------------- /testspiders/spiders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testspiders/spiders/broken_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/spiders/broken_link.py -------------------------------------------------------------------------------- /testspiders/spiders/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/spiders/dummy.py -------------------------------------------------------------------------------- /testspiders/spiders/followall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/spiders/followall.py -------------------------------------------------------------------------------- /testspiders/spiders/justfollow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/spiders/justfollow.py -------------------------------------------------------------------------------- /testspiders/spiders/localinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/spiders/localinfo.py -------------------------------------------------------------------------------- /testspiders/spiders/loremipsum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/spiders/loremipsum.py -------------------------------------------------------------------------------- /testspiders/spiders/mad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/spiders/mad.py -------------------------------------------------------------------------------- /testspiders/spiders/noop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/spiders/noop.py -------------------------------------------------------------------------------- /testspiders/spiders/timed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/spiders/timed.py -------------------------------------------------------------------------------- /testspiders/spiders/timewaste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/testspiders/HEAD/testspiders/spiders/timewaste.py --------------------------------------------------------------------------------