Metadata-Version: 2.1
Name: PicoDB
Version: 0.1.1
Summary: A lightweight and simple database
Home-page: https://github.com/vitalvas/picodb
Author: VitalVas
Author-email: source@vitalvas.com
License: MIT License
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database
Description-Content-Type: text/markdown

# PicoDB

PicoDB is lightweight, fast, and simple database with namespaces.

## PicoDB is simple
```python
import picodb

db = picodb.load('test.db', False)

db.set_ns('space')
db.set('space', 'key', 'value')
db.delete('space', 'key')
db.get('space', 'key')
db.save()
```


## And Easy to Install

```shell
pip install picodb
```



