Metadata-Version: 2.1
Name: wandelbots-nova
Version: 0.1.5
Summary: Official Python SDK for the Wandelbots
Author: Wandelbots GmbH
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
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: httpx (>=0.28.0,<0.29.0)
Requires-Dist: loguru (>=0.7.2,<0.8.0)
Requires-Dist: numpy (>=2.1.3,<3.0.0)
Requires-Dist: pydantic (>=2.10.3,<3.0.0)
Requires-Dist: python-decouple (>=3.8,<4.0)
Requires-Dist: scipy (>=1.14.1,<2.0.0)
Requires-Dist: wandelbots_api_client (==24.9.0rc3)
Requires-Dist: websockets (>=14.1.0,<15.0.0)
Description-Content-Type: text/markdown

# wandelbots-nova

This library provides an SDK for the Wandelbots NOVA API.

The SDK will help you to build your own apps and services on top of NOVA and makes programming a robot as easy as possible.

## Requirements

This library requires
* Python >=3.10

## Installation

To use the library, first install it using the following command

```bash
pip install wandelbots-nova
```

Then import the library in your code

```python
from nova import Nova, MotionGroup
```

## Development

To install the development dependencies, run the following command

```bash
poetry install
```

## Usage

Have a look at the [examples](https://github.com/wandelbotsgmbh/wandelbots-nova/tree/main/examples) directory to see how to use the library.

