Store factory for simplekv
A factory for simplekv-Store-based storage classes. Takes configuration values and returns a simplekv-Store.
This allows one to easily deploy a blob-based store in production, but test with a filesystem-based store in development. The following simplekv-Stores are supported in storefact:
- DictStore
- RedisStore
- FilesystemStore
- BotoStore (Amazon S3)
- AzureBlockBlobStorage
Storefact is released as open source under the 3-clause BSD license.
pip install storefact
There are two possibilities to use storefact.
- Use a dictionary with configuration data (e.g. loaded from an ini file)
from storefact import get_store
params = {
'account_name': 'test',
'account_key': 'XXXsome_azure_account_keyXXX',
'container': 'my-azure-container',
}
store = get_store('azure', **params)
store.put(u'key', b'value')
assert store.get(u'key') == b'value'
- Use an URL to specify the configuration
from storefact import get_store_from_url, get_store
store = get_store_from_url('azure://test:XXXsome_azure_account_keyXXX@my-azure-container')
store.put(u'key', b'value')
assert store.get(u'key') == b'value'
The documentation can be found on readthedocs.
To run the all tests run:
tox