Metadata-Version: 2.4
Name: redis-enterprise
Version: 0.8.6
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Rust
Classifier: Topic :: Database
Classifier: Typing :: Typed
Requires-Dist: pytest>=7.0 ; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21 ; extra == 'dev'
Provides-Extra: dev
Summary: Python bindings for Redis Enterprise REST API client
Keywords: redis,enterprise,api,rest,client
Home-Page: https://github.com/redis-developer/redis-enterprise-rs
Author-email: Josh Rotenberg <josh.rotenberg@redis.com>
License: MIT OR Apache-2.0
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Project-URL: Documentation, https://docs.rs/redis-enterprise
Project-URL: Homepage, https://github.com/redis-developer/redis-enterprise-rs
Project-URL: Repository, https://github.com/redis-developer/redis-enterprise-rs

# redis-enterprise Python bindings

Python bindings for the `redis-enterprise-rs` client.

Install from PyPI:

```bash
pip install redis-enterprise
```

Basic usage:

```python
from redis_enterprise import EnterpriseClient

client = EnterpriseClient(
    base_url="https://cluster:9443",
    username="admin@redis.local",
    password="secret",
    insecure=True,
)

dbs = client.databases_sync()
```

For full project documentation and examples, see the repository root `README.md`.

