{"library":"simplekv","title":"simplekv","description":"A key-value store for binary data, supporting multiple backends including filesystem, Redis, MongoDB, Azure Blob Storage, and Amazon S3. Current version: 0.14.1. Release cadence is irregular, with occasional minor and patch releases.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install simplekv","pip install simplekv[redis]","pip install simplekv[s3]"],"cli":null},"imports":["from simplekv import KeyValueStore","from simplekv.contrib.redis import RedisStore","from simplekv.contrib.s3 import S3Store","from simplekv.fs import FilesystemStore","from simplekv.contrib.mongo import MongoStore","from simplekv.contrib.azure import AzureBlockBlobStore"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import os\nfrom simplekv.contrib.redis import RedisStore\n\n# Initialize store (assuming Redis running on localhost)\nstore = RedisStore(host='localhost', port=6379)\n\n# Put a value\nstore.put('key', b'value')\n\n# Get a value\nvalue = store.get('key')\nprint(value)\n\n# Delete a value\nstore.delete('key')\n","lang":"python","description":"Basic usage of RedisStore.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}