Metadata-Version: 2.1
Name: tinydb-appengine
Version: 1.0.6
Summary: TinyDB Extension for AppEngine
Home-page: https://github.com/imalento/tinydb-appengine
Author: Imalento
Author-email: imalento2@gmail.com
License: MIT
Keywords: database nosql tinydb appengine
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Database
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# tinydb-appengine

__tinydb-appengine__ provides TinyDB storage for App Engine. You can use JSON readonly.

## Installation

```bash
$ pip install tinydb-appengine
```

## Usage

```python
from tinydb import TinyDB
from tinydb_appengine.storages import EphemeralJSONStorage
db = TinyDB('your_data.json', storage=EphemeralJSONStorage)
```


