--- id: simplekv version: "0.14.1" license: MIT license_treatment: permissive maintenance: dormant --- # simplekv — A key-value storage for binary data, support many backends. License: permissive · Maintenance: dormant · Downloads: 98.9K/mo ## What it is and what it does simplekv is a lightweight abstraction layer for key-value storage that lets you write code against a single, simple API and swap the underlying storage backend—filesystem, database, cloud service, or in-memory—without changing your application. It's designed for small, frequently accessed data or large binary blobs where you want flexibility in where and how data is persisted. The package has no runtime dependencies, making it easy to install. However, it is dormant: the last release was in 2020, and there has been no active maintenance since. It supports Python 2 and 3 but provides no explicit version constraint. If your use case fits the existing feature set and you don't need ongoing updates or support for the latest backend versions, it can work; otherwise, consider whether a more actively maintained alternative is safer for your project. Use it for: - Prototype or build a small application where you want to defer the storage backend choice until later, starting with in-memory or filesystem storage. - Write a library or service that needs to support multiple storage backends without coupling to any single implementation. - Store and retrieve binary blobs with a consistent interface across different backends. - Migrate data between storage systems by swapping the backend without rewriting application code. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. simplekv provides a unified key-value storage API that abstracts over multiple backends—filesystem, SQLAlchemy, MongoDB, Redis, S3, and Google Storage—letting you swap storage implementations without changing application code. Yes, if you need a simple, dependency-free key-value abstraction and your use case aligns with the existing backends and feature set. No, if you require active maintenance, support for the latest backend versions, or ongoing security updates. The dormant status means you're committing to maintaining compatibility yourself if backend libraries evolve. ## Install pip install simplekv uv add simplekv poetry add simplekv ## Installing simplekv Before you install: Low install friction with no runtime dependencies. The package is dormant—last release was 2020-04-09 and last commit was 2023-10-27. No active maintenance signal; use only if the existing feature set meets your needs. License in practice: MIT license is permissive; you can use simplekv in commercial and proprietary projects with minimal restrictions, provided you include the license notice. Quickstart: pip install simplekv from simplekv.memory import DictStore store = DictStore() store['key'] = b'value' data = store['key'] Verify before relying: - Whether the package works reliably with current versions of its optional backends (SQLAlchemy, MongoDB, Redis, S3, Google Storage) given no recent maintenance. - Python 3.10+ compatibility—classifiers list Python 2 and 3 but requires_python is empty and no version constraint is specified. ## Package facts - License: MIT (permissive) - Python support: unspecified - Install friction: low - Maintenance: dormant - Downloads: 98.9K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags key-value store abstraction, pluggable storage backends, simple kv api, binary blob storage, multi-backend key-value, filesystem redis mongodb storage, s3 google storage wrapper, storage-abstraction, multi-backend, dormant [View on SkillFed](https://skillfed.io/packages/simplekv) · [View on PyPI](https://pypi.org/project/simplekv/)