Metadata-Version: 2.1
Name: aryaxai
Version: 0.0.40
Summary: Full stack ML Observability with AryaXAI
Home-page: https://xai.arya.ai/docs/introduction
License: MIT
Keywords: aryaxai,ML observability
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pydantic==2.4.2
Requires-Dist: pyjwt==2.8.0
Requires-Dist: python-dotenv==1.0.0
Requires-Dist: requests==2.31.0
Requires-Dist: pandas==2.1.2
Requires-Dist: plotly==5.18.0

A python client for [AryaXAI](https://xai.arya.ai).

### Installation
```
pip install aryaxai
```

### Getting Started
```
from aryaxai import xai

xai.login()

# list of workspaces
workspaces = xai.get_workspaces()

# projects from first workspace
projects = workspaces[0].get_projects()
```

### Example Notebook
Refer to the [notebook](https://colab.research.google.com/drive/1Dy5eL-FJVnFV0K5yOfGGVoAmiS_Icaz3?usp=sharing) for detailed examples.
