Storage

The class of storage is the one implementing MutableMapping interface. There are some storage classes provided with this middleware:

InMemoryStorage

class scrapy_cookies.storage.in_memory.InMemoryStorage

This storage enables keeping cookies inside the memory, to provide ultra fast read and write cookies performance.

SQLiteStorage

class scrapy_cookies.storage.sqlite.SQLiteStorage

This storage enables keeping cookies in SQLite, which supports already by Python.

The following settings can be used to configure this storage:

MongoStorage

class scrapy_cookies.storage.mongo.MongoStorage

This storage enables keeping cookies in MongoDB.

The following settings can be used to configure this storage: