Metadata-Version: 2.1
Name: drax-sdk
Version: 2.2.4
Summary: Python sdk for Drax IoT Platform
Author: Applica Software Guru
Author-email: info@applica.guru
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: drax-ecc (>=0.1.0,<0.2.0)
Requires-Dist: pandas (>=2.2.2,<3.0.0)
Requires-Dist: pika (>=1.3.2,<2.0.0)
Requires-Dist: pyarrow (>=16.0.0,<17.0.0)
Requires-Dist: pydantic (>=2.7.0,<3.0.0)
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Description-Content-Type: text/markdown

# Drax SDK for Python

Drax SDK for Python is a Python library that provides an easy way to interact with the Drax API. The SDK is built on top
of the Drax API and provides a simple interface to interact with the API.

## Installation

You can install the Drax SDK for Python using pip:

```bash
pip install drax-sdk
```

## Usage

### Initialize the Drax SDK

To use the Drax SDK, you need to initialize it with your API key. You can get your API key from the Drax dashboard.

```python
from drax_sdk.drax import DraxConfigParams, Drax

config = DraxConfigParams.standard(
    project_id="your_project_id",
    api_key="your_api_key",
    api_secret="your_api_secret"
)

drax = Drax(config)
```
