Metadata-Version: 2.4
Name: flet-storage
Version: 0.1.2
Summary: A lightweight utility for simplified client-side storage management in Flet applications.
Author-email: Andrii Bogdanovych <a@bogdanovych.org>
License: MIT
Project-URL: Repository, https://github.com/BogdanovychA/flet-storage.git
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: flet>=0.80.2
Dynamic: license-file

# Flet Storage

A lightweight, asynchronous utility for simplified client-side storage management in [Flet](https://flet.dev) applications.

This package provides a clean wrapper around Flet's `SharedPreferences`, adding automatic JSON serialization so you can store complex Python objects (dicts, lists) without manual conversion.

## Features

- **Automatic JSON Serialization:** Store and retrieve dictionaries and lists directly.
- **Asynchronous API:** Built to work seamlessly with Flet's async architecture.
- **Namespaced Storage:** Easily organize data by `app_name` to avoid collisions.
- **Simplified Syntax:** Clean, functional approach to persistent data.

## Installation

```bash
pip install flet-storage
