├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── examples └── README.md ├── scrapy_rabbitmq ├── __init__.py ├── connection.py ├── dupefilter.py ├── pipelines.py ├── queue.py ├── scheduler.py └── spiders.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.pyc 3 | build 4 | dist 5 | *.egg-info 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roycehaynes/scrapy-rabbitmq/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roycehaynes/scrapy-rabbitmq/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roycehaynes/scrapy-rabbitmq/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrapy_rabbitmq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roycehaynes/scrapy-rabbitmq/HEAD/scrapy_rabbitmq/__init__.py -------------------------------------------------------------------------------- /scrapy_rabbitmq/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roycehaynes/scrapy-rabbitmq/HEAD/scrapy_rabbitmq/connection.py -------------------------------------------------------------------------------- /scrapy_rabbitmq/dupefilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roycehaynes/scrapy-rabbitmq/HEAD/scrapy_rabbitmq/dupefilter.py -------------------------------------------------------------------------------- /scrapy_rabbitmq/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roycehaynes/scrapy-rabbitmq/HEAD/scrapy_rabbitmq/pipelines.py -------------------------------------------------------------------------------- /scrapy_rabbitmq/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roycehaynes/scrapy-rabbitmq/HEAD/scrapy_rabbitmq/queue.py -------------------------------------------------------------------------------- /scrapy_rabbitmq/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roycehaynes/scrapy-rabbitmq/HEAD/scrapy_rabbitmq/scheduler.py -------------------------------------------------------------------------------- /scrapy_rabbitmq/spiders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roycehaynes/scrapy-rabbitmq/HEAD/scrapy_rabbitmq/spiders.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roycehaynes/scrapy-rabbitmq/HEAD/setup.py --------------------------------------------------------------------------------