Skip to main content

Python wrapper for MAVSDK

Project description

# MAVSDK-Python

This is the Python wrapper for MAVSDK.

The Python wrapper is based on a gRPC client communicating with the gRPC server written in C++. To use the Python wrapper the gRPC server called “backend” needs to be running on the same system. The wrapper is essentially auto-generated from the message definitions ([proto files](https://github.com/mavlink/MAVSDK-Proto)).

## Important Notes

## Build and run backend

First, we need to build and run the backend which is the gRPC server that the Python wrapper will connect to.

Note: it is planned to automate this step using package managers like brew, apt-get, etc. .

` git clone https://github.com/mavlink/MAVSDK --recursive cd MAVSDK mkdir -p build/default cd build/default cmake -DBUILD_BACKEND=ON ../.. cmake --build . `

For more help on this step, check the [docs on how to build from source](https://sdk.dronecode.org/en/contributing/build.html).

Once this is built, start PX4 SITL and run the backend:

` ./src/backend/src/backend_bin `

By default, the backend will connect using MAVLink on UDP port 14540 which is running by default when PX4 is run in SITL (software in the loop simulation). Run $ ./src/backend/src/backend_bin –help for more information.

## Get the Python wrapper

Clone this repo and recursively update submodules:

` git clone https://github.com/mavlink/MAVSDK-Python --recursive cd MAVSDK-Python `

### Install prerequisites

First install the protoc plugin (protoc-gen-dcsdk):

` cd proto/pb_plugins pip install -r requirements.txt pip install -e . `

You can check that the plugin was installed with $ which protoc-gen-dcsdk, as it should now be in the PATH.

Then go back to the root of the repo and install the dependencies of the SDK:

` cd ../.. pip install -r requirements.txt -r requirements-dev.txt `

### Generate wrapper

Run the following helper script. It will generate the Python wrappers for each plugin. If the submodules are not initialized already, the script will take care of it.

` ./other/tools/run_protoc.sh `

### Install the package locally

After generating the wrapper you can install a development (editable) version of the package using:

` pip install -e . `

### Running the examples

Once the package has been installed, the examples can be run:

` examples/takeoff_and_land.py `

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

mavsdk-0.1.0-py3-none-win_amd64.whl (3.9 MB view hashes)

Uploaded Python 3 Windows x86-64

mavsdk-0.1.0-py3-none-manylinux1_x86_64.whl (6.9 MB view hashes)

Uploaded Python 3

mavsdk-0.1.0-py3-none-macosx_10_9_x86_64.whl (4.3 MB view hashes)

Uploaded Python 3 macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page