Generic dictionaryish object storage frontend
Project description
Common object storage frontend that supports dictionary-style access, object serialization and compression, and multiple storage and caching backends.
Supported storage backends out of the box are:
- DBM
- Filesystem
- Memory
- sqlite (disk or memory)
Current supported caching backends are:
- Filesystem
- Memory
- sqlite (disk or memory)
The simplest shove use case…
>>> from shove import Shove >>> store = Shove()
…which creates an in-memory store and cache.
Use of other backends for storage and caching involves passing an module URI or existing store or cache instance to shove following the form:
>>> from shove import Shove >>> <storename> = Shove(<store_uri>, <cache_uri>)
Each module-specific URI form is documented in its module. The URI form follows the URI form used by SQLAlchemy:
http://www.sqlalchemy.org/docs/core/engines.html
shove implements the Python dictionary/mapping API:
http://docs.python.org/lib/typesmapping.html
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size shove-0.6.6-py2-none-any.whl (14.8 kB) | File type Wheel | Python version 2.7 | Upload date | Hashes View |
Filename, size shove-0.6.6.tar.bz2 (10.7 kB) | File type Source | Python version None | Upload date | Hashes View |
Filename, size shove-0.6.6.zip (18.2 kB) | File type Source | Python version None | Upload date | Hashes View |