Metadata-Version: 2.1
Name: boltml-python
Version: 0.0.2
Summary: 
Author: Kevin Alex Zhang
Author-email: kevz@boltml.dev
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: requests (>=2.31.0,<3.0.0)
Requires-Dist: websockets (>=12.0,<13.0)
Description-Content-Type: text/markdown

# boltml-python
The [BoltML](https://boltml.dev/) client library for Python.

## Installation
Install the latest version of the BoltML client library using pip:

```bash
pip install boltml-python
```

## Usage
After signing up for BoltML, you will receive a client token. You can use this token to authenticate with the BoltML API.

```python
from boltml import BoltMLClient

API_ENDPOINT = "https://api.boltml.dev"
CLIENT_TOKEN = "<...>"

client = BoltMLClient(API_ENDPOINT, CLIENT_TOKEN)
```

