The make87 SDK for Python provides tools and libraries to interact with the make87 platform. This SDK is designed to be compatible with Python versions 3.9 to 3.12.
To install the SDK, use pip:
pip install make87The SDK has the following dependencies:
protobuf==4.25.5eclipse-zenoh==1.2.1pydantic>=2.9.2,<3.0.0
For optional storage support, you can install additional dependencies:
pip install make87[storage]For development, you can install the development dependencies:
pip install make87[dev]To build the documentation locally, navigate to the docs directory and install the required dependencies:
cd docs
pip install -r requirements.txtThen, build the documentation using MkDocs:
mkdocs buildWe welcome contributions to the make87 SDK. Please follow these steps to contribute:
- Fork the repository.
- Create a new branch for your feature or bugfix.
- Make your changes.
- Ensure all tests pass.
- Submit a pull request.