viam-sdk


Nameviam-sdk JSON
Version 0.51.0 PyPI version JSON
download
home_pageNone
SummaryViam Robotics Python SDK
upload_time2025-07-17 20:15:32
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8.1
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Viam Python SDK

![PyPI](https://img.shields.io/pypi/v/viam-sdk)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/viam-sdk)
[![documentation](https://img.shields.io/static/v1?label=docs&message=python.viam.dev&color=lightgray)](https://python.viam.dev)
![build status](https://github.com/viamrobotics/python-sdk/actions/workflows/test.yml/badge.svg)
[![license](https://img.shields.io/badge/license-Apache_2.0-blue)](https://github.com/viamrobotics/viam-python-sdk/blob/main/LICENSE)

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](https://python.viam.dev/#installing-from-source) guide.

If you would like to develop and contribute to Viam's Python SDK, take a look at the [Development](#development) portion of the README.

## Installation

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 want to install on Windows, you can install from github directly with `pip`:

`pip install git+https://github.com/viamrobotics/viam-python-sdk.git`

Note that only direct gRPC connections are supported on Windows; you will need to [disable webrtc](https://python.viam.dev/autoapi/viam/rpc/dial/index.html#viam.rpc.dial.DialOptions.disable_webrtc) or else connection will fail. Full support (including webRTC) _does_ exist on WSL.

If you intend to use the [`MLModel` service](https://python.viam.dev/autoapi/viam/services/mlmodel/mlmodel/index.html#viam.services.mlmodel.mlmodel.MLModel), 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](https://docs.viam.com/data-ai/ai/deploy/) documentation for more information.

### Upgrading

To upgrade, simply run the `pip install` command with the `-U` option:
`pip install -U viam-sdk`

### Installing from Source

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](https://github.com/viamrobotics/rust-utils) that contains the necessary protocols. Therefore, to build from source, you will need both the Rust utils and the Rust compiler.

1. Download/clone this [repository](https://github.com/viamrobotics/viam-python-sdk)
1. Download/clone the [rust-utils](https://github.com/viamrobotics/rust-utils)
1. [Install Rust](https://www.rust-lang.org/tools/install) if not already available
1. From the `rust-utils` directory, run `cargo build`
   - You can optionally provide the `--release` flag: `cargo build --release`
1. Find the compiled library in `rust-utils/target/debug/libviam_rust_utils.*`
   - If you provided the `--release` flag, the enclosing directory will be `release`: `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 be `libviam_rust_utils.so`
1. Copy the compiled library to the directory `viam-python-sdk/src/viam/rpc/`
1. From the `viam-python-sdk` directory, run `uv build --wheel` to create an installable package
1. 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](https://github.com/viamrobotics/rust-utils/releases/latest) 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:

1. Download/clone this repository
1. Run `uv build --wheel` from the `viam-python-sdk` directory
1. 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`
1. Ensure that every connection has the option `disable_webrtc` set to `True`: `viam.rpc.dial.DialOptions(disable_webrtc=True)`
   - For more information about connecting to a robot, see the [documentation](https://python.viam.dev) and [example usage](https://python.viam.dev/examples/example.html)

## Configure a client application at [app.viam.com](https://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](https://app.viam.com). After you log in, perform these steps:

1. Create a location (for example `home`)
2. Create a robot (for example `arduino`)
3. Follow the steps on the setup tab:

   1. Setup machine cloud credentials on Single Board Computer (SBC)
   2. Download and Install Viam Server
   3. 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 `RobotClient` & connectivity

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](https://github.com/viamrobotics/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

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](https://pkg.go.dev/go.viam.com/rdk/session) for more details and server-side configuration options.

## Examples

Read the [Example Usage](https://python.viam.dev/examples/example.html) 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`](https://github.com/viamrobotics/viam-python-sdk/tree/main/examples) directory.

## Documentation

Documentation, like this entire project, is under active development, and can be found at [python.viam.dev](https://python.viam.dev).

---

## Development

To contribute to the python SDK, please see the [contribution guidelines](https://python.viam.dev/contributing.html).

### Adding new resource types

The SDK provides a number of abstract base components and services (collectively: resources). To add more abstract resources, follow these steps:

1. Create a new directory in `viam.components` or `viam.services` with the name of the new component
1. Create 4 new files in the newly created directory:
   1. Define all requirements of the resource in `{RESOURCE_NAME}.py`
   1. Implement the gRPC service for the new resource in `service.py`
   1. Create a gRPC client for the new resource in `client.py`
   1. Register the API and define package exports in `__init__.py`
1. Write tests for the new resource and add the resource to `tests.mocks.{components|services}`
1. If the resource is a component, add the component to `examples.server.v1.components` and its corresponding concrete type in `examples.server.v1.server`

## License

Copyright 2021-2024 Viam Inc.

Apache 2.0 - See [LICENSE](https://github.com/viamrobotics/viam-python-sdk/blob/main/LICENSE) file

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "viam-sdk",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8.1",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Naveed Jooma <naveed@viam.com>",
    "download_url": null,
    "platform": null,
    "description": "# Viam Python SDK\n\n![PyPI](https://img.shields.io/pypi/v/viam-sdk)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/viam-sdk)\n[![documentation](https://img.shields.io/static/v1?label=docs&message=python.viam.dev&color=lightgray)](https://python.viam.dev)\n![build status](https://github.com/viamrobotics/python-sdk/actions/workflows/test.yml/badge.svg)\n[![license](https://img.shields.io/badge/license-Apache_2.0-blue)](https://github.com/viamrobotics/viam-python-sdk/blob/main/LICENSE)\n\nThe Viam Python SDK allows you to build robots, access existing Viam robots, and manage your fleet of Viam robots.\n\nIf you would like a blueprint on setting up a Python environment with Viam from scratch, you can follow our [Setup](https://python.viam.dev/#installing-from-source) guide.\n\nIf you would like to develop and contribute to Viam's Python SDK, take a look at the [Development](#development) portion of the README.\n\n## Installation\n\nCurrently, 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`:\n\n`pip install viam-sdk`\n\nIf you want to install on Windows, you can install from github directly with `pip`:\n\n`pip install git+https://github.com/viamrobotics/viam-python-sdk.git`\n\nNote that only direct gRPC connections are supported on Windows; you will need to [disable webrtc](https://python.viam.dev/autoapi/viam/rpc/dial/index.html#viam.rpc.dial.DialOptions.disable_webrtc) or else connection will fail. Full support (including webRTC) _does_ exist on WSL.\n\nIf you intend to use the [`MLModel` service](https://python.viam.dev/autoapi/viam/services/mlmodel/mlmodel/index.html#viam.services.mlmodel.mlmodel.MLModel), use the following command instead, which installs additional required dependencies:\n\n`pip install 'viam-sdk[mlmodel]'`\n\nYou can also run this command on an existing Python SDK install to add support for the ML model service.\nSee the [ML (machine learning) model service](https://docs.viam.com/data-ai/ai/deploy/) documentation for more information.\n\n### Upgrading\n\nTo upgrade, simply run the `pip install` command with the `-U` option:\n`pip install -U viam-sdk`\n\n### Installing from Source\n\nThe 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](https://github.com/viamrobotics/rust-utils) that contains the necessary protocols. Therefore, to build from source, you will need both the Rust utils and the Rust compiler.\n\n1. Download/clone this [repository](https://github.com/viamrobotics/viam-python-sdk)\n1. Download/clone the [rust-utils](https://github.com/viamrobotics/rust-utils)\n1. [Install Rust](https://www.rust-lang.org/tools/install) if not already available\n1. From the `rust-utils` directory, run `cargo build`\n   - You can optionally provide the `--release` flag: `cargo build --release`\n1. Find the compiled library in `rust-utils/target/debug/libviam_rust_utils.*`\n   - If you provided the `--release` flag, the enclosing directory will be `release`: `rust-utils/target/release/libviam_rust_utils.*`\n   - 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 be `libviam_rust_utils.so`\n1. Copy the compiled library to the directory `viam-python-sdk/src/viam/rpc/`\n1. From the `viam-python-sdk` directory, run `uv build --wheel` to create an installable package\n1. 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`\n\nIf 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](https://github.com/viamrobotics/rust-utils/releases/latest) page of the rust-utils library.\n\nIf you do **NOT** need communication over WebRTC (and thus, do not need the native library), the steps are:\n\n1. Download/clone this repository\n1. Run `uv build --wheel` from the `viam-python-sdk` directory\n1. 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`\n1. Ensure that every connection has the option `disable_webrtc` set to `True`: `viam.rpc.dial.DialOptions(disable_webrtc=True)`\n   - For more information about connecting to a robot, see the [documentation](https://python.viam.dev) and [example usage](https://python.viam.dev/examples/example.html)\n\n## Configure a client application at [app.viam.com](https://app.viam.com)\n\nYour 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.\n\nTo create a client application, to navigate to [app.viam.com](https://app.viam.com). After you log in, perform these steps:\n\n1. Create a location (for example `home`)\n2. Create a robot (for example `arduino`)\n3. Follow the steps on the setup tab:\n\n   1. Setup machine cloud credentials on Single Board Computer (SBC)\n   2. Download and Install Viam Server\n   3. Wait until the robot shows as connected. If this doesn't happen try restarting the viam-server:\n\n      ```\n      sudo systemctl restart viam-server\n      ```\n\nNext, select the `CODE SAMPLE` tab in the Viam Web UI, and copy the boilerplate code from the section labeled `Python SDK`.\n\nTo 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.\n\n## The `RobotClient` & connectivity\n\nThe 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.\n\nThe `RobotClient` will attempt to refresh its resources at a set interval (customizable via `Options`).\n\nIn 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`).\n\nUpon 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.\n\nThe 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](https://github.com/viamrobotics/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`.\n\n### Sessions\n\nSessions 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](https://pkg.go.dev/go.viam.com/rdk/session) for more details and server-side configuration options.\n\n## Examples\n\nRead the [Example Usage](https://python.viam.dev/examples/example.html) page, to learn how to access a component, build a custom component, and expose\ncustom components as a remote to existing robots.\n\nMore examples can be found in the [`examples`](https://github.com/viamrobotics/viam-python-sdk/tree/main/examples) directory.\n\n## Documentation\n\nDocumentation, like this entire project, is under active development, and can be found at [python.viam.dev](https://python.viam.dev).\n\n---\n\n## Development\n\nTo contribute to the python SDK, please see the [contribution guidelines](https://python.viam.dev/contributing.html).\n\n### Adding new resource types\n\nThe SDK provides a number of abstract base components and services (collectively: resources). To add more abstract resources, follow these steps:\n\n1. Create a new directory in `viam.components` or `viam.services` with the name of the new component\n1. Create 4 new files in the newly created directory:\n   1. Define all requirements of the resource in `{RESOURCE_NAME}.py`\n   1. Implement the gRPC service for the new resource in `service.py`\n   1. Create a gRPC client for the new resource in `client.py`\n   1. Register the API and define package exports in `__init__.py`\n1. Write tests for the new resource and add the resource to `tests.mocks.{components|services}`\n1. If the resource is a component, add the component to `examples.server.v1.components` and its corresponding concrete type in `examples.server.v1.server`\n\n## License\n\nCopyright 2021-2024 Viam Inc.\n\nApache 2.0 - See [LICENSE](https://github.com/viamrobotics/viam-python-sdk/blob/main/LICENSE) file\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Viam Robotics Python SDK",
    "version": "0.51.0",
    "project_urls": {
        "Documentation": "https://python.viam.dev",
        "Homepage": "https://www.viam.com",
        "Repository": "https://github.com/viamrobotics/viam-python-sdk"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "585d0d5d98141eeff8c7beff5d21faf09f5343a58920b44e1b0bfa2ecdf2e069",
                "md5": "d5b8643e1536b164abcb2999013708dd",
                "sha256": "6989856a4c5c5faeb30d39250888286fc2e668d9e2fb5b13d7ac9b755bd7593d"
            },
            "downloads": -1,
            "filename": "viam_sdk-0.51.0-py3-none-linux_armv6l.whl",
            "has_sig": false,
            "md5_digest": "d5b8643e1536b164abcb2999013708dd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1",
            "size": 8296700,
            "upload_time": "2025-07-17T20:15:32",
            "upload_time_iso_8601": "2025-07-17T20:15:32.531780Z",
            "url": "https://files.pythonhosted.org/packages/58/5d/0d5d98141eeff8c7beff5d21faf09f5343a58920b44e1b0bfa2ecdf2e069/viam_sdk-0.51.0-py3-none-linux_armv6l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "045e65c02c8dd03a060d8dc0d2fa13624ce0c102cca108f0a3fbf6d270139d3d",
                "md5": "5a0da6b7c91dc47c19bcdeb45794efc8",
                "sha256": "8c60d77a345221541ed1955dc9e71ef00f10bac9768f9831d6a3ceb0431cef57"
            },
            "downloads": -1,
            "filename": "viam_sdk-0.51.0-py3-none-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5a0da6b7c91dc47c19bcdeb45794efc8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1",
            "size": 8296975,
            "upload_time": "2025-07-17T20:15:34",
            "upload_time_iso_8601": "2025-07-17T20:15:34.594151Z",
            "url": "https://files.pythonhosted.org/packages/04/5e/65c02c8dd03a060d8dc0d2fa13624ce0c102cca108f0a3fbf6d270139d3d/viam_sdk-0.51.0-py3-none-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49f2300dd16a3505e48ab69fc6faac4d7a891324c3fdac5c2ca9f45b03bdc825",
                "md5": "65c6e909003deb4b7da9b82a29ed8908",
                "sha256": "806ec6728f42a912e66bcbf4310af95bbdabe446f437dbd3ffc3863a756d8d2c"
            },
            "downloads": -1,
            "filename": "viam_sdk-0.51.0-py3-none-macosx_10_16_x86_64.whl",
            "has_sig": false,
            "md5_digest": "65c6e909003deb4b7da9b82a29ed8908",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1",
            "size": 7870364,
            "upload_time": "2025-07-17T20:15:36",
            "upload_time_iso_8601": "2025-07-17T20:15:36.163220Z",
            "url": "https://files.pythonhosted.org/packages/49/f2/300dd16a3505e48ab69fc6faac4d7a891324c3fdac5c2ca9f45b03bdc825/viam_sdk-0.51.0-py3-none-macosx_10_16_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f56ff145231404d859f6c01537cd71448a01ac26748569a73280c3d49c72e272",
                "md5": "20753596053e14409208652f30458b1e",
                "sha256": "17716140beb59dd8dc6e16baac52a0a827434aaf33150d92aaca8bc7411cb7c0"
            },
            "downloads": -1,
            "filename": "viam_sdk-0.51.0-py3-none-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "20753596053e14409208652f30458b1e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1",
            "size": 7603536,
            "upload_time": "2025-07-17T20:15:37",
            "upload_time_iso_8601": "2025-07-17T20:15:37.380413Z",
            "url": "https://files.pythonhosted.org/packages/f5/6f/f145231404d859f6c01537cd71448a01ac26748569a73280c3d49c72e272/viam_sdk-0.51.0-py3-none-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f469e2451f1e4863e7ac7551d21b391864e05426da81e24777108af45a494045",
                "md5": "da028e394738143ac938a1f94ecd6395",
                "sha256": "47c04a8fe50e912fca2cafdcda854ea5735cd53d306bf1fcff636908067e47f5"
            },
            "downloads": -1,
            "filename": "viam_sdk-0.51.0-py3-none-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "da028e394738143ac938a1f94ecd6395",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1",
            "size": 8474281,
            "upload_time": "2025-07-17T20:15:38",
            "upload_time_iso_8601": "2025-07-17T20:15:38.653443Z",
            "url": "https://files.pythonhosted.org/packages/f4/69/e2451f1e4863e7ac7551d21b391864e05426da81e24777108af45a494045/viam_sdk-0.51.0-py3-none-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6d5273ed0d1dd43296eb03cc9e90ad786dc718b47182e04322f684beab4d5eb",
                "md5": "fcc3bbd3e75d16da06a0b7fcde130dc3",
                "sha256": "f8e91f60a8a425599663998abb7a1bdd51f8157754fb826bc1d8c7a652fe78dd"
            },
            "downloads": -1,
            "filename": "viam_sdk-0.51.0-py3-none-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fcc3bbd3e75d16da06a0b7fcde130dc3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1",
            "size": 8549458,
            "upload_time": "2025-07-17T20:15:40",
            "upload_time_iso_8601": "2025-07-17T20:15:40.207042Z",
            "url": "https://files.pythonhosted.org/packages/c6/d5/273ed0d1dd43296eb03cc9e90ad786dc718b47182e04322f684beab4d5eb/viam_sdk-0.51.0-py3-none-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e17dc2f65af86a126bed9fd290d4e40083e8c6661faaf0ccf8921293e9d7c00f",
                "md5": "19e327a224fed5c6a3fcbd683a8a9808",
                "sha256": "62699b0aa633311471ddfeb1e15d56978ea45a0e882d1a9b629caf6398c96be2"
            },
            "downloads": -1,
            "filename": "viam_sdk-0.51.0-py3-none-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "19e327a224fed5c6a3fcbd683a8a9808",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1",
            "size": 8346370,
            "upload_time": "2025-07-17T20:15:41",
            "upload_time_iso_8601": "2025-07-17T20:15:41.720386Z",
            "url": "https://files.pythonhosted.org/packages/e1/7d/c2f65af86a126bed9fd290d4e40083e8c6661faaf0ccf8921293e9d7c00f/viam_sdk-0.51.0-py3-none-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb8c21a699e80fe306db1f6c68a07938373de30263db851e258b02ae984979ea",
                "md5": "70c2363684d64d1c61371c5a564efa89",
                "sha256": "737235889f46a1432aa8e57770e2c843972e891bd5f5c992a063f2ed4563ee1e"
            },
            "downloads": -1,
            "filename": "viam_sdk-0.51.0-py3-none-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "70c2363684d64d1c61371c5a564efa89",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1",
            "size": 8184312,
            "upload_time": "2025-07-17T20:15:42",
            "upload_time_iso_8601": "2025-07-17T20:15:42.948352Z",
            "url": "https://files.pythonhosted.org/packages/eb/8c/21a699e80fe306db1f6c68a07938373de30263db851e258b02ae984979ea/viam_sdk-0.51.0-py3-none-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22ed06ec2ad8d1662a1b5ef41ff1be073e383e2d04bdc410e12b778be7cb4cb9",
                "md5": "d5a1caf662377c4891709f45f7d6022d",
                "sha256": "a64fad1f4f88ea5aad20a9f110c8016e5da6ae1bfa79862dce917591543ffe41"
            },
            "downloads": -1,
            "filename": "viam_sdk-0.51.0-py3-none-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d5a1caf662377c4891709f45f7d6022d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1",
            "size": 8433593,
            "upload_time": "2025-07-17T20:15:44",
            "upload_time_iso_8601": "2025-07-17T20:15:44.692223Z",
            "url": "https://files.pythonhosted.org/packages/22/ed/06ec2ad8d1662a1b5ef41ff1be073e383e2d04bdc410e12b778be7cb4cb9/viam_sdk-0.51.0-py3-none-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f305d4d9dfa33bab3971fd5c8ce7c5337dfced4aa53483e55b73fcfcb3cc5591",
                "md5": "f86a8dfc129ccf7e341980b71eeea173",
                "sha256": "3782e6cf499ecbeaf2dd1f06581d7c3bd4fdbcff152022ac97a2edcb5ba8be9d"
            },
            "downloads": -1,
            "filename": "viam_sdk-0.51.0-py3-none-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f86a8dfc129ccf7e341980b71eeea173",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1",
            "size": 8556937,
            "upload_time": "2025-07-17T20:15:46",
            "upload_time_iso_8601": "2025-07-17T20:15:46.275779Z",
            "url": "https://files.pythonhosted.org/packages/f3/05/d4d9dfa33bab3971fd5c8ce7c5337dfced4aa53483e55b73fcfcb3cc5591/viam_sdk-0.51.0-py3-none-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76fe3bd7fa6d6d015c7f80f60dfa6444835355f2c3da9cd724e05bcb42088b49",
                "md5": "a10be8ea41086de1f9b2473ff755d140",
                "sha256": "2da1f434915e317d6feb3ca368e10c9892ca702c55b19be0f2efa44d85d8c69d"
            },
            "downloads": -1,
            "filename": "viam_sdk-0.51.0-py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a10be8ea41086de1f9b2473ff755d140",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1",
            "size": 7174819,
            "upload_time": "2025-07-17T20:15:48",
            "upload_time_iso_8601": "2025-07-17T20:15:48.196311Z",
            "url": "https://files.pythonhosted.org/packages/76/fe/3bd7fa6d6d015c7f80f60dfa6444835355f2c3da9cd724e05bcb42088b49/viam_sdk-0.51.0-py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-17 20:15:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "viamrobotics",
    "github_project": "viam-python-sdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "viam-sdk"
}
        
Elapsed time: 2.08788s