Metadata-Version: 2.4
Name: openkache
Version: 0.0.2
Summary: OpenKache client — 10x cheaper and faster than Redis
License: AGPL-3.0
Project-URL: Homepage, https://openkache.com
Project-URL: Source, https://github.com/openkache/openkache
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# OpenKache

OpenKache client — 10x cheaper and faster than Redis.

A Python client for [OpenKache](https://openkache.com), the SSD cache server.

## Installation

```bash
pip install openkache
```

## Quick Start

```python
from openkache import OpenKacheClient

client = OpenKacheClient()
client.connect("127.0.0.1", 7123)
client.set("key", b"value", ttl=3600)
value = client.get("key")
client.close()
```

## License

AGPL-3.0
