Metadata-Version: 2.4
Name: kami-client
Version: 1.1.2
Summary: Client library for Kami messaging system
Author-email: tensorplex-validator <validator@tensorplex.ai>, jarvis8x7b <jarvis@tensorplex.ai>
License: MIT
Project-URL: Homepage, https://github.com/tensorplex-labs/kami-client
Project-URL: Bug Reports, https://github.com/tensorplex-labs/kami-client/issues
Project-URL: Source, https://github.com/tensorplex-labs/kami-client
Keywords: kami,client,python
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: aiohttp~=3.10.11
Requires-Dist: tenacity~=8.5.0
Requires-Dist: pydantic~=2.8.2
Requires-Dist: loguru~=0.7.2
Requires-Dist: bittensor-drand==0.5.0
Requires-Dist: python-dotenv
Provides-Extra: dev
Requires-Dist: pylint; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: pyright; extra == "dev"

# kami-client

Python client version to call functions available in [Kami](https://github.com/tensorplex-labs/kami)

# Requirements

Setup your environment variables `KAMI_HOST` and `KAMI_HOST` in your .env file.
Alternatively you may pass in `host` and `port` params when using KamiClient.


# Example Usage

```python
from kami import KamiClient
kami_client = KamiClient(host="localhost", port="3000")
```
