A SQLAlchemy based Key-Value store.
Project description
KVAlchemy
KVAlchemy is a SQLAlchemy-based key-vault store. It has the ability to get/set values based off a string key, an optional string tag, and an optional expiration time. Additionally it has a built-in ability to memoize function results to the store.
Example
from kvalchemy import KVAlchemy
# Setup. Supports any available sqlalchemy backend.
k = KVAlchemy('sqlite://')
# Set/Get
k.set("hello", "world")
assert k.get("hello") == "world"
# Default values
assert k.get("hello again", "default") == "default"
# memoize example
import time
@k.memoize()
def func():
time.sleep(1)
func() # Will sleep
func() # Won't sleep
func.cache_clear()
func() # Will sleep
# proxy example
proxy = k.get_proxy('pizza')
proxy.set('pie')
assert proxy.get() == 'pie'
proxy.delete()
assert proxy.get('default') == 'default'
Installation
On Python 3.8 or later:
pip install kvalchemy
More Documentation
For more documentation visit: https://csm10495.github.io/kvalchemy
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
kvalchemy-0.0.5.tar.gz
(8.8 kB
view hashes)
Built Distribution
Close
Hashes for kvalchemy-0.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42196406fb096084c32ba63f5cfa5974c1ada37c1de0988680c4da15d1f1404c |
|
MD5 | a8fc2a1fe2877bb80add46e97cb42bb6 |
|
BLAKE2b-256 | 3550011ca2110c9c5d94a4bfdce4ea768f03657f3cc9c2caeecba5f49681d681 |