napoler / scrapy-mongodb-queue

Scrapy MongoDB Queue

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scrapy MongoDB Queue

MongoDB-based components for scrapy that allows distributed crawling

Available Scrapy components

  • Scheduler
  • Duplication Filter

Installation

From pypi

  $ pip install git+https://github.com/jbinfo/scrapy-mongodb-queue

From github

  $ git clone https://github.com/jbinfo/scrapy-mongodb-queue.git
  $ cd scrapy-mongodb-queue
  $ python setup.py install

Usage

Enable the components in your settings.py:

  # Enables scheduling storing requests queue in redis.
  SCHEDULER = "scrapy_mongodb_queue.scheduler.Scheduler"

  # Don't cleanup mongodb queues, allows to pause/resume crawls.
  MONGODB_QUEUE_PERSIST = True

  # Specify the host and port to use when connecting to Redis (optional).
  MONGODB_SERVER = 'localhost'
  MONGODB_PORT = 27017
  MONGODB_DB = "my_db"

  # MongoDB collection name
  MONGODB_QUEUE_NAME = "my_queue"

Author

This project is maintained by Lhassan Baazzi (GitHub | Twitter | LinkedIn)

Bitdeli Badge

About

Scrapy MongoDB Queue

License:MIT License


Languages

Language:Python 100.0%