The Viam Python SDK allows you to build robots, access existing Viam robots, and manage your fleet of Viam robots.
If you would like a blueprint on setting up a Python environment with Viam from scratch, you can follow our Setup guide.
If you would like to develop and contribute to Viam's Python SDK, take a look at the Development portion of the README.
Currently, we have pre-built binaries for macOS (both Intel x86_64
and Apple Silicon) and Linux (x86
, aarch64
, armv6l
) that you can install using pip
:
pip install viam-sdk
If you intend to use the MLModel
service, use the following command instead, which installs additional required dependencies:
pip install 'viam-sdk[mlmodel]'
You can also run this command on an existing Python SDK install to add support for the ML model service. See the ML (machine learning) model service documentation for more information.
Windows is not supported. If you are using Windows, install viam-sdk
in WSL. For other unsupported systems, read further on how to install from source.
To upgrade, simply run the pip install
command with the -U
option:
pip install -U viam-sdk
The Viam Python SDK uses native libraries to support communication over WebRTC, which will allow you to connect to robots that are not on the same network. In order to facilitate that communication, there is a rust-utils repo that contains the necessary protocols. Therefore, to build from source, you will need both the Rust utils and the Rust compiler.
- Download/clone this repository
- Download/clone the rust-utils
- Install Rust if not already available
- From the
rust-utils
directory, runcargo build
- You can optionally provide the
--release
flag:cargo build --release
- You can optionally provide the
- Find the compiled library in
rust-utils/target/debug/libviam_rust_utils.*
- If you provided the
--release
flag, the enclosing directory will berelease
:rust-utils/target/release/libviam_rust_utils.*
- The extension of the executable will depend on your operating system. For example, on macOS it will be
libviam_rust_utils.dylib
, whereas on Linux it will belibviam_rust_utils.so
- If you provided the
- Copy the compiled library to the directory
viam-python-sdk/src/viam/rpc/
- From the
viam-python-sdk
directory, runpoetry build
to create an installable package - Find the newly created installable package located in
viam-python-sdk/dist/
and pip install it directly, for example:pip install viam-python-sdk/dist/viam_sdk-0.1.0-py3-none-any.whl
If you have a macOS or Linux based operating system and do not want to build rust-utils manually, you can also look for the executable in the releases page of the rust-utils library.
If you do NOT need communication over WebRTC (and thus, do not need the native library), the steps are:
- Download/clone this repository
- Run
poetry build
from theviam-python-sdk
directory - Find the newly created installable package located in
viam-python-sdk/dist/
and pip install it directly, for example:pip install viam-python-sdk/dist/viam_sdk-0.1.0-py3-none-any.whl
- Ensure that every connection has the option
disable_webrtc
set toTrue
:viam.rpc.dial.DialOptions(disable_webrtc=True)
- For more information about connecting to a robot, see the documentation and example usage
Configure a client application at app.viam.com
Your client application does not directly interact with your hardware. Instead, your client application makes calls to the viam-server
which can then issue commands to your hardware or read from sensors.
To create a client application, to navigate to app.viam.com. After you log in, perform these steps:
- Create a location (for example
home
) - Create a robot (for example
arduino
) - Follow the steps on the setup tab:
-
Setup Viam App Config on Single Board Computer (SBC)
-
Download and Install Viam Server
-
Wait until the robot shows as connected. If this doesn't happen try restarting the viam-server:
sudo systemctl restart viam-server
-
Next, select the CODE SAMPLE
tab in the Viam Web UI, and copy the boilerplate code from the section labeled Python SDK
.
To ensure the installation succeeded and the systems are functional, save and run this simple program. If the program runs successfully, the python-sdk is properly installed, the viam-server
instance on your robot is alive, and the computer running the program is able to connect to that instance.
The main entry point for using the SDK as a client is the RobotClient
class. This class can manage resources, operations, frames, etc., for the robot. It can also manage connectivity and behavior around sessions and reconnection through the RobotClient.Options
nested class.
The RobotClient
will attempt to refresh its resources at a set interval (customizable via Options
).
In the event that connection is lost to the robot, the RobotClient
will attempt to reconnect at a set interval. There are two options available for customizing this behavior: how often the client checks the connection status (RobotClient.Options.check_connection_interval
), and how often the client attempts to reconnect upon detecting a loss of connection (RobotClient.Options.attempt_reconnect_interval
).
Upon a loss of connection, outstanding requests are NOT terminated and can possibly error with a GRPCError
whose status is DEADLINE_EXCEEDED
. When connection is restored, existing built-in clients will automatically receive the new connection - no need to re-obtain the client. Tasks initiated by Viam will automatically resume, but any user-defined tasks that depend on the connection should be checked and potentially restarted.
The Viam Python SDK utilizes gRPC and, optionally WebRTC (defaults to on). gRPC is provided purely in python, but WebRTC is provided by the external viam Rust utils library. WebRTC settings can be changed using the appropriate attributes in viam.rpc.dial.DialOptions
. These options can be passed to the RobotClient
through RobotClient.Options.dial_options
.
Sessions are a safety feature that automatically cancel operations made by the python client if it loses connection to a robot. Sessions are enabled by default but can be disabled by setting RobotClient.Options.disable_sessions = True
. Please see the RDK session documentation for more details and server-side configuration options.
Read the Example Usage page, to learn how to access a component, build a custom component, and expose custom components as a remote to existing robots.
More examples can be found in the examples
directory.
Documentation, like this entire project, is under active development, and can be found at python.viam.dev.
To contribute to the python SDK, please see the contribution guidelines.
The SDK provides a number of abstract base components and services (collectively: resources). To add more abstract resources, follow these steps:
- Create a new directory in
viam.components
orviam.services
with the name of the new component - Create 4 new files in the newly created directory:
- Define all requirements of the resource in
{RESOURCE_NAME}.py
- Implement the gRPC service for the new resource in
service.py
- Create a gRPC client for the new resource in
client.py
- Register the subtype and define package exports in
__init__.py
- Define all requirements of the resource in
- Write tests for the new resource and add the resource to
tests.mocks.{components|services}
- If the resource is a component, add the component to
examples.server.v1.components
and its corresponding concrete type inexamples.server.v1.server
Copyright 2021-2023 Viam Inc.
Apache 2.0 - See LICENSE file