Async key-value store ABC. Implementations over SQLAlchemy, the filesystem, Redis, Azure Blob, and more.
Project description
KV
KV
is an async key-value store interface for Python. It provides a simple API to store serializable objects.
pip install python-kv
KV
supports multiple backends, including the filesystem, SQLite, Redis, Azure Blob, and many more.
from kv import KV
kv = KV.of('sql+sqlite:///path/to/db.sqlite', type=dict)
await kv.insert('hello', {'world': 42})
await kv.read('hello') # {'world': 42}
await kv.delete('hello')
async for k, v in kv.items():
...
await kv.clear()
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.
Source Distribution
python_kv-0.3.2.tar.gz
(16.2 kB
view details)
Built Distribution
python_kv-0.3.2-py3-none-any.whl
(24.6 kB
view details)
File details
Details for the file python_kv-0.3.2.tar.gz
.
File metadata
- Download URL: python_kv-0.3.2.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f0c2fd3e55d1ae052144ead6f414e63dc16ec7936c82c0d605fde39890ed4c5 |
|
MD5 | 814b21cc329cc3d8044c226deaf6cc7d |
|
BLAKE2b-256 | 03a9a0855e35bd4ef7c9859a0cb8d8c02dfd89a1db68155fb392567e3c960d64 |
File details
Details for the file python_kv-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: python_kv-0.3.2-py3-none-any.whl
- Upload date:
- Size: 24.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1c332c78c5ad435ebc8e09927bb8ff6bb2ca091b118e20601989183824001eb |
|
MD5 | aeb6a8bea8e9527c892e612cd85ebf87 |
|
BLAKE2b-256 | 41627ed14337919f17e9f99870e1443525cd30ec85bb15265fa2682ae80572f6 |