Metadata-Version: 2.1
Name: plain_db
Version: 0.0.42
Summary: Plain txt DB
Home-page: https://github.com/gaoyunzhi/plain_db
Author: Yunzhi Gao
Author-email: gaoyunzhi@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE

# plain_db

Plain txt db

## usage

```
import plain_db
counter = plain_db.load('counter')
counter.update('abc', 2)
counter.inc('abc', 1)
counter.get('abc') # 3
```

## how to install

`pip3 install plain_db`

