Metadata-Version: 2.4
Name: pickledb
Version: 1.4
Summary: An ultra micro ASGI web framework
Keywords: pickle,database,json,redis,asyncio
Author-email: Harrison Erd <harrisonerd@gmail.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Classifier: Framework :: AsyncIO
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Database
License-File: LICENSE
Requires-Dist: orjson>=3.11.5
Requires-Dist: aiofiles>=25.1.0
Project-URL: Homepage, https://patx.github.io/pickledb
Project-URL: Repository, https://github.com/patx/pickledb

[![Logo](https://patx.github.io/pickledb/logo.png)](https://patx.github.io/pickledb)

[pickleDB](https://patx.github.io/pickledb) is a fast, easy to use, in-memory Python 
key-value store with asynchronous support. It is built with the `orjson` module for 
extremely high performance and was originally inspired by Redis. It is licensed under 
the BSD three-clause license.

### pickleDB is easy

```python
>>> from pickledb import PickleDB

>>> db = PickleDB('example.json')

>>> db.set('key', 'value')
True

>>> db.get('key')
'value'
```

### Useful links

- **Homepage**: [patx.github.io/pickledb](https://patx.github.io/pickledb)
- **GitHub**: [github.com/patx/pickledb](https://github.com/patx/pickledb)



