Metadata-Version: 2.1
Name: zula
Version: 0.1.0
Summary: dead simple key-value and in-memory database built upon json package.
Home-page: https://github.com/efe/zula
Author: Efe Öge
Author-email: efeoge@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Requires-Python: >=2.6
Description-Content-Type: text/markdown


# zula

[![Travis](https://img.shields.io/travis/efe/zula.svg)](https://travis-ci.org/efe/zula/)
[![PyPI version](https://img.shields.io/pypi/v/zula.svg)](https://pypi.org/project/zula/)
[![codecov](https://codecov.io/gh/efe/zula/branch/master/graph/badge.svg)](https://codecov.io/gh/efe/zula)
[![License](https://img.shields.io/pypi/l/zula.svg)](https://pypi.org/project/zula/)

dead simple key-value and in-memory database built upon `json` package.


## Install
```
$ pip install zula
```

## Requirements
Python 2.6, 2.7, 3.5, 3.6+

## Documentation 

### Commands

```python
>>> import zula
```

```python
>>> db = zula.load('samsun.db')
```

```python
>>> db.set('key', 'value')
```

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

```python
>>> db.drop('key')
True
```

```python
>>> db.get_keys()
set(['key1', 'key2'])
```

```python
>>> db.dump()
True
```


