Metadata-Version: 2.4
Name: easydb-storage
Version: 0.1.0
Summary: A zero-boilerplate key-value storage library powered by SQLite.
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# easydb-storage

`easydb-storage` is a lightweight, zero-boilerplate key-value database library for Python powered by SQLite. It lets you store, retrieve, and manage persistent data locally using a clean, dictionary-like syntax—eliminating the need to write repetitive SQL queries.

## Features

* **Zero Boilerplate:** No database connections, cursor setups, or explicit commit statements to manage.
* **Dictionary-Like API:** Interact with your local database using standard Python dictionary syntax (`db["key"] = value`).
* **Type Safe Serialization:** Automatically handles native Python data types (strings, integers, lists, dictionaries) via JSON serialization.
* **Context Manager Support:** Clean resource management out of the box using `with` blocks.

---

## Installation

Install the library via pip:

```bash
pip install easydb-storage
