Deprecated Python client for the Wandelbots API. There will be no further updates of this package. Please consider migrating to [wandelbots-nova](https://pypi.org/project/wandelbots-nova).
This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description
@wandelbots/wandelbots-python
This library provides a wrapper around the Wandelbots API. Under the hood it queries the API endpoints directly, not using wandelbots_api_client (which is still required as dependencies since the auto-generated types are used from the package for type-checking convenience).
The wrapper is meant to ease the interaction with the Wandelbots API by providing a simpler interface for initializing a MotionGroup and interacting with it.
For the full feature set of our API please refer to the official documentation and use the wandelbots_api_client package directly.
You can try the features of this library in a Jupyter notebook by clicking the Binder badge above. Create a new Instance by registering on the Wandelbots website and use the credentials to interact with the API.
Current Features:
- Sync and Async Planning and Execution
- Pose Transformations
Table Of Contents
Requirements
This library requires
- Python >=3.9
Installation
To use the library, first install it using the following command
pip install wandelbots
Then import the library in your code
from wandelbots import Instance, MotionGroup, Planner
Development
To install the development dependencies, run the following command
poetry install
To remove an old virtual environment and create a new one, first get the name of the old environment by running
poetry env info
Then remove the old environment and create a new one with the following commands
poetry env remove <name-of-env>
poetry install
Run the poetry shell to activate the virtual environment
poetry shell
Build
To build the package locally, run the following command
poetry build
This will create a dist/ directory with the built package (.tar.gz and .whl files).
Installation
pip install wandelbots
Install a development branch in Poetry
wandelbots = { git = "https://github.com/wandelbotsgmbh/wandelbots-python.git", branch = "feature/set-ios-on-path" }
Basic Usage
The wrapper provides a simple interface for initializing a Instance, MotionGroup and a Planner object, which can be used to interact with the Wandelbots API:
from wandelbots import Instance, MotionGroup, Planner
my_instance = Instance(
url=https://<my-instance-url>,
user=<username>,
password=<password>
)
my_robot = MotionGroup(
instance=my_instance,
cell="cell",
motion_group="0@motion_group",
default_tcp="Flange"
)
For further examples take a look at the examples.
Testing
poetry run pytest -rs -v
Integration Tests
By default integration tests will be skipped.
To run them localy create an env file at envs/.env.tests with your values.
WANDELAPI_BASE_URL=
NOVA_ACCESS_TOKEN=
CELL_ID=
MOTION_GROUP=
TCP=
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wandelbots-0.5.7.tar.gz.
File metadata
- Download URL: wandelbots-0.5.7.tar.gz
- Upload date:
- Size: 19.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7b095b5d45a70bebcada15cc6ecff5863b68980f886adfefb58ceb3e3e83544
|
|
| MD5 |
224225d5d836c9b4c622a73d6db784f9
|
|
| BLAKE2b-256 |
5c15a5ed1fed908b9852b0329a4695b0635ebad79064d17060e34406ae401e75
|
File details
Details for the file wandelbots-0.5.7-py3-none-any.whl.
File metadata
- Download URL: wandelbots-0.5.7-py3-none-any.whl
- Upload date:
- Size: 25.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
824834d0c4ecccd2400b111795c92d604af5cfd63df7e3ec91e5fad9aba76b1e
|
|
| MD5 |
e265454ecf29788c63fe0f21da437128
|
|
| BLAKE2b-256 |
75a5af2ee0baf2ddc2ea64390191739e62362b5bb1dbc74e22a8f6d1d06bf0db
|