Metadata-Version: 2.1
Name: objcache
Version: 0.1.1
Summary: Simple Redis-like interface to storing arbirary Python objects. A high-level wrapper around ZoDB.
Home-page: https://github.com/nickderobertis/obj-cache
Author: Nick DeRobertis
Author-email: whoopnip@gmail.com
License: MIT
Project-URL: Code, https://github.com/nickderobertis/obj-cache
Project-URL: Documentation, https://nickderobertis.github.io/obj-cache
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: ZoDB


[![](https://codecov.io/gh/nickderobertis/obj-cache/branch/master/graph/badge.svg)](https://codecov.io/gh/nickderobertis/obj-cache)

# obj-cache

## Overview

Simple Redis-like interface to storing arbitrary Python objects. A high-level wrapper around ZoDB.

## Getting Started

Install `objcache`:

```
pip install objcache
```

A simple example:

```python
from objcache import ObjectCache

cache = ObjectCache('cache.zodb', ('a', 'b'))
cache.store(5)

# Later session
cache = ObjectCache('cache.zodb', ('a', 'b'))
result = cache.get()
print(result)
5
```

## Links

See the
[documentation here.](
https://nickderobertis.github.io/obj-cache/
)

## Author

Created by Nick DeRobertis. MIT License.

