link.kvstore 1.0

Creator: bradpython12

Last updated:

Add to Cart

Description:

link.kvstore 1.0

link.kvstore is a database agnostic key/value store API.
See documentation for more informations.











Installation
pip install link.kvstore


Features


database agnostic
dict API to access key/value store




Examples
Getting a backend:
from link.middleware.core import Middleware

# Instanciate a K/V store with Riak backend
store = Middleware.get_middleware_by_uri(
'kvstore+riak://localhost:8087/mybuckettype/mybucket?protocol=pbc'
)
# Instanciate a K/V store with SQL backend
store = Middleware.get_middleware_by_uri(
'kvstore+sql://localhost:5432/database/table'
)
Accessing data:
store['foo'] = 'bar'
assert store['foo'] == 'bar'
assert 'foo' in store

for key in store:
print(key)

del store['foo']


Donating

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.