Metadata-Version: 2.1
Name: craft-ai-sdk
Version: 0.1.2
Summary: Craft AI MLOps platform SDK
Home-page: https://www.craft.ai/
Author: Craft AI
Author-email: contact@craft.ai
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: PyJWT (>=2.3.0,<3.0.0)
Requires-Dist: python-dotenv (>=0.20.0,<0.21.0)
Requires-Dist: requests (>=2.27.1,<3.0.0)
Description-Content-Type: text/markdown

# Craft AI Python SDK

This Python SDK lets you interact with Craft AI MLOps Platform.

## Installation
This project relies on **Python 3.8+**. Once a supported version of Python is installed, you can install `craft-ai-sdk` from PyPI with:

```console
pip install craft-ai-sdk
```

## Basic usage
You can configure the SDK by instantiating the `CraftAiSdk` class in this way:
```python
from craft-ai-sdk import CraftAiSdk

ACCESS_TOKEN =  # your access token
ENVIRONMENT_URL =  # url to your environment

sdk = CraftAiSdk(token=ACCESS_TOKEN, environment_url=ENVIRONMENT_URL)
```

