Skip to main content

No project description provided

Project description

rby1-sdk

CI Issues Releases Apache-2.0 python

rby1-sdk is an SDK designed for seamless control and development with the RB-Y1 robot. It provides Python and C++ APIs, making it easy to integrate into various applications, from basic scripting to advanced real-time control.

Installation

Python

Install SDK via pip:

pip install rby1-sdk

Alternatively, install from source:

pip install .
# or
poetry install

C++

Build From Source

Step 1: Install Conan

Conan is required for dependency management:

pip install conan

Step 2: Clone the Repository

git clone --recurse-submodules git@github.com:RainbowRobotics/rby1-sdk.git

Step 3: Install or Build Dependencies

conan install . -s build_type=Release -b missing -of build

[!NOTE] On aarch64 platforms (e.g., ARM64 Ubuntu runners), please make sure to set the appropriate compiler explicitly:

export CC=/usr/bin/aarch64-linux-gnu-gcc

Step 4: Configure, Build, and Install

(Option 1) CMake >= 3.23
cmake --preset conan-release -D BUILD_EXAMPLES=ON
cmake --build --preset conan-release

# Install
cmake --build --preset conan-release --target install
(Option 2) CMake < 3.23
cd build
cmake .. -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=./conan_toolchain.cmake -DCMAKE_POLICY_DEFAULT_CMP0091=NEW -DCMAKE_BUILD_TYPE=Release -DBUILD_EXAMPLES=ON
cmake --build . # or make

# Install
make install

Get Started

Python Example

import rby1_sdk as rby

robot = rby.create_robot("localhost:50051", "a")
robot.connect()
print(robot.get_robot_info())

C++ Example

#include "rby1-sdk/robot.h"
#include "rby1-sdk/model.h"

int main() {
  auto robot = rb::Robot<rb::y1_model::A>::Create("localhost:50051");
  robot->Connect();
  std::cout << robot->GetRobotInfo().robot_version << std::endl;
}

ARM Intellisense Issue

For issues with ARM Intellisense, refer to the following GitHub Issue.

To fix the Intellisense problem, add the following code at the top of your source file:

// Add this at the top of your source file
#if __INTELLISENSE__
#undef __ARM_NEON
#undef __ARM_NEON__
#endif

Resources and Support

Project details


Download files

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

Source Distribution

rby1_sdk-0.10.0.tar.gz (93.4 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rby1_sdk-0.10.0-cp313-cp313-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.13Windows x86-64

rby1_sdk-0.10.0-cp313-cp313-manylinux_2_39_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

rby1_sdk-0.10.0-cp313-cp313-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

rby1_sdk-0.10.0-cp313-cp313-manylinux_2_35_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ x86-64

rby1_sdk-0.10.0-cp313-cp313-manylinux_2_35_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

rby1_sdk-0.10.0-cp313-cp313-macosx_26_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.13macOS 26.0+ ARM64

rby1_sdk-0.10.0-cp313-cp313-macosx_15_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

rby1_sdk-0.10.0-cp313-cp313-macosx_14_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

rby1_sdk-0.10.0-cp312-cp312-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.12Windows x86-64

rby1_sdk-0.10.0-cp312-cp312-manylinux_2_39_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

rby1_sdk-0.10.0-cp312-cp312-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

rby1_sdk-0.10.0-cp312-cp312-manylinux_2_35_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ x86-64

rby1_sdk-0.10.0-cp312-cp312-manylinux_2_35_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

rby1_sdk-0.10.0-cp312-cp312-macosx_26_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.12macOS 26.0+ ARM64

rby1_sdk-0.10.0-cp312-cp312-macosx_15_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

rby1_sdk-0.10.0-cp312-cp312-macosx_14_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

rby1_sdk-0.10.0-cp311-cp311-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.11Windows x86-64

rby1_sdk-0.10.0-cp311-cp311-manylinux_2_39_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

rby1_sdk-0.10.0-cp311-cp311-manylinux_2_39_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

rby1_sdk-0.10.0-cp311-cp311-manylinux_2_35_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ x86-64

rby1_sdk-0.10.0-cp311-cp311-manylinux_2_35_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

rby1_sdk-0.10.0-cp311-cp311-macosx_26_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.11macOS 26.0+ ARM64

rby1_sdk-0.10.0-cp311-cp311-macosx_15_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

rby1_sdk-0.10.0-cp311-cp311-macosx_14_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

rby1_sdk-0.10.0-cp310-cp310-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.10Windows x86-64

rby1_sdk-0.10.0-cp310-cp310-manylinux_2_39_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

rby1_sdk-0.10.0-cp310-cp310-manylinux_2_39_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

rby1_sdk-0.10.0-cp310-cp310-manylinux_2_35_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ x86-64

rby1_sdk-0.10.0-cp310-cp310-manylinux_2_35_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

rby1_sdk-0.10.0-cp310-cp310-macosx_26_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.10macOS 26.0+ ARM64

rby1_sdk-0.10.0-cp310-cp310-macosx_15_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

rby1_sdk-0.10.0-cp310-cp310-macosx_14_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file rby1_sdk-0.10.0.tar.gz.

File metadata

  • Download URL: rby1_sdk-0.10.0.tar.gz
  • Upload date:
  • Size: 93.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rby1_sdk-0.10.0.tar.gz
Algorithm Hash digest
SHA256 441af9e1d852382473aacdcb0526546e7f6e95bb50f84fdddf2c6b8328d50dd8
MD5 8b428545d1149c8a3b1bac231ca42d65
BLAKE2b-256 136fbd606d1161176a4d97e43bdb76217c64afc0558a0359d5239b18f5debbf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0.tar.gz:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rby1_sdk-0.10.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rby1_sdk-0.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 efa738fa2974ec8d4c57a41089cc6097cf0e1e87755c5cebdd1b929a74198ce5
MD5 96f551964ad9b6287aec2f838e874074
BLAKE2b-256 eaeab4b8e260c27c3d9de30217afd62a1d1a96799283b0543c1478dfdb6474b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp313-cp313-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 11e484d2deeb66f09894cb05799dfbbd969864643485773a76d35b8d7e7f73db
MD5 4069a4069f71cb692b46c742465c1670
BLAKE2b-256 f250e013cebc997615a4213fd98515940d2350dd9e2719d329c17a415637144e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp313-cp313-manylinux_2_39_x86_64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp313-cp313-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 db2ce7a765ef594f1e3350a2857ae5e21d972b594fdeb5f39864b6e056dc8e43
MD5 f7924254fb5f042574d0f4b3f02f604b
BLAKE2b-256 6a2b7c6a56af3f4679927ca029bf8ca4b793e051c749c32ff415ad8cadf34844

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp313-cp313-manylinux_2_39_aarch64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp313-cp313-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp313-cp313-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 45902d81a2c0dc8adad65af978c02bb679a992772ed97a7b29451afee71be9a1
MD5 3886a80f5d4155c56332a8a35e013028
BLAKE2b-256 70646b4abea8a62980f1c28114bba0e480de40d0668b8f33cf21223cdfbff000

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp313-cp313-manylinux_2_35_x86_64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 fd57ad1b4d5a47da6bb1a23b6b6c088e671fce0cf2f4a6b55daa966c415f54ab
MD5 03e947bbfdf246e9282929dd039b8347
BLAKE2b-256 7faa747c3a678028f1203cf2c518059903f7b569f475a794d073bfd57fcb193e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp313-cp313-manylinux_2_35_aarch64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp313-cp313-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp313-cp313-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 f7b33edff7ea02951dc1d289568a384605f31dd358307ef418a837af940e8313
MD5 7c263281106af184e79ec9a66c20b00c
BLAKE2b-256 7925ad4fdf99e90ea89de0dec8b9330c3f91add1204964e4796046b258a7957b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp313-cp313-macosx_26_0_arm64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0a039e4df5459a235483c9e6b202dd2d35c7c2a670074887e90b48858bd33a6b
MD5 6bd67136fc0ddeeba5ad941cc7952b6a
BLAKE2b-256 e4f82e565d5a5ccc04052a711d94c321d13481c988aa5ce026d716be22f6dce2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2ee5318a83990d29e53d0764b6eb8015289cb2001511ec151a8c52913968aaff
MD5 3c8f5cf0e5bcea9c04d25c499efbe67c
BLAKE2b-256 f6148d27b8e2ca20de715334274bec807ac2feba894d076b743aa73e631baf16

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rby1_sdk-0.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rby1_sdk-0.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab55efd74e01759ca6ec13d934d440a5ac54f47cf09e35aa4d3af358c251fe1d
MD5 e5ee9f89766188d25aa5f62b41fa7c8b
BLAKE2b-256 4816621ee0421e55067734460241352614f6b6c1da85e007102e4de890753175

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp312-cp312-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 162692be047f6722e70e69f2ba1fe5054e0636345435f9fc095553cfd9dd24ee
MD5 b15e69f8acb071d04348cbbe18889216
BLAKE2b-256 06cb3748937224d6d7e795bd9addbe1db9d3e4efdd9f9a5ca011400259f550e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp312-cp312-manylinux_2_39_x86_64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp312-cp312-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 629c9897e97f7af68626c4557c0a0af42ded4e5c8605d2abb16a0bc839e6d2d0
MD5 bcb505ab8dc81a9eed2a7fb402702aa0
BLAKE2b-256 20c52a1ace819d66baa01c3c9da477d50c66e1e4d8ac28f1378ef28249586e68

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp312-cp312-manylinux_2_39_aarch64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp312-cp312-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp312-cp312-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 fc10eefa29a92a4caaea20d003e08f84cf9f8d755c7998294d0a0f85006757fc
MD5 540be7496592978d3c90f24791116149
BLAKE2b-256 bf3dbca3e0f2e1d0453dda05534ab0914cb80ac03faa2003cbf1b10c634871be

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp312-cp312-manylinux_2_35_x86_64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 838cf9600da098b46ae4f5070e03bd534a63d0e8c5c17af4534c7005d13dda5b
MD5 e18c7ec9205c971f224e158125fcf366
BLAKE2b-256 c75eb4e120fef14e598d42f5c20519c6abf53a0ce94cb3bcf83893e5b8a67c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp312-cp312-manylinux_2_35_aarch64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp312-cp312-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp312-cp312-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 786f10c45d08d2cbeb92e9c814e984a0d6fca824ed16d4879db66a79c5be428e
MD5 909f2ea008bd4b660c9db0b62619de77
BLAKE2b-256 1d06efa2905ff3eed8d03060c1c3c0a171f092264da7993a40532d50529de582

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp312-cp312-macosx_26_0_arm64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 cb1acfd72864938abe20a1a76efcef232f0d9540c0e08370f26e59dfeeb6aa8d
MD5 b0c7307bea1900ac58d42959ee8f82f6
BLAKE2b-256 a4e66c75d567880ce2b1d8d707d92dbf86ec562e4ac27cb1576406fbf5ca2beb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3bf71e30d30cf367b58df526b576c9ccb2f5ddebcdef703257d649551a34b32c
MD5 f7e0b1d26809d96f018580832f39bb08
BLAKE2b-256 ede7820c62d6b874f21e40975869507c1318156ac93b04cff6930045d86384c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rby1_sdk-0.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rby1_sdk-0.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c186b8694c52b50c66658ed20af1d44a29da0796be7575e20f188e2dd719375a
MD5 716cf385f5fc18548396513970ff25a7
BLAKE2b-256 5cc7d55c35efd819ad104be153df43cd13b90d186f61dc60b926ed56128f8511

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp311-cp311-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 e6f7abce059816e79635b406587b424c26a45acefc631bc363b9ddb28d556272
MD5 902e96ae3720b873d7ef3b235abfb118
BLAKE2b-256 5415551895973f7bf918c1cde8811ed58076ac97e9a783f6e28302bed5fb18df

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp311-cp311-manylinux_2_39_x86_64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp311-cp311-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 c2af95f26fb3c49f1d7773944448a58f90d25296691c5330e020e97fa6262952
MD5 e7c8976f109ea93714790d27b7916c73
BLAKE2b-256 d4054e50f811b6b7b30fbea963f3a81092ad67628c9471b0cc7db8d02ceac145

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp311-cp311-manylinux_2_39_aarch64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp311-cp311-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp311-cp311-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 b4846a6b10510afbcf73bf05d8f7d69dd6bb2dfc90aae4c744a975c666acc729
MD5 df93c935fa703f7344adde3e840c4318
BLAKE2b-256 c230f89266b6d34a33f0c070d581fa688573b3e4e94f9f7bde08b94fe01d8bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp311-cp311-manylinux_2_35_x86_64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 58fce3d6cc97812b53af81cceb8048e8ffb015e44a27b184ab2a95f14ccb1eb1
MD5 3c48f558e319263811b09bdf34043bda
BLAKE2b-256 e0d1a9c71084781eeab4416e33e789e962ca81f8ce18f1d52a7ba95f56789f76

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp311-cp311-manylinux_2_35_aarch64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp311-cp311-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp311-cp311-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 6d33fe680beda21c059a49c03f70c615505e0be964c65ef73ba17e1052491be8
MD5 93cf6a3b79585fd818f380bfaf2dbb82
BLAKE2b-256 4424fc8857f83098816202462b2520b32e95460dd75fdc8b246942105b295931

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp311-cp311-macosx_26_0_arm64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0ef72de6357cf0fe5e83b043e1b47aee2ec0e29d7c7f5376715d55906b4f6a08
MD5 9c4322121b82dd75bdcdf09e85ac67c9
BLAKE2b-256 41e2f5aad06390c539c10ac47ad2887f17b6f1cd649109a5f3a070bae76f8af8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3a7aa919208709551c534d659d7d7e860a9c7dea32fb6c0378ba09991f31a6f4
MD5 67a49c4cbc01752cf33277caf2be434b
BLAKE2b-256 3c2cdd9f7f4829a4b7e125de248523c236bc9b8f2babaeb2f40269141e1bbc3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rby1_sdk-0.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rby1_sdk-0.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d2442beb9b9f2c65c8537241c071ce064f4e2b9de8f146b4f78ec5e22dd2f12
MD5 a6c5bda74b65deed0d8a426708753000
BLAKE2b-256 ea0c35c523c7f257c2a1a1f325a733f4375e21586551f32c601a07964b22266f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp310-cp310-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 49c9e3516e02d55ff181a40331c8450ee6bd34178638af7a74cb38ee4b71ae6b
MD5 0c2cfa06f81713f0dccd5db7d85f2dc7
BLAKE2b-256 65d41514b54901a9672c552a0bb801335f766cfb3fca29ad02c9929f10dcef9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp310-cp310-manylinux_2_39_x86_64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp310-cp310-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b9c8bef27e3995bdfa4173d605b1a99ec7cf4165a2cc21bbfcd3df8286ddac12
MD5 0e94132cc2ad4110e3b91adbd431737d
BLAKE2b-256 401d264cc52b040f673b21125ec6f518c88957ca91e31fd4269cc6a41d9dc633

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp310-cp310-manylinux_2_39_aarch64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp310-cp310-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp310-cp310-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 a94f1fc36a950c419dec9d3f4f7b29431f0dc6c83c7005682b26c22a6dc66a0c
MD5 b4044ba95a9c0d293bd0cf49411a3735
BLAKE2b-256 3caec09a41875c2838670555c412cd4b3a0288d259e9b188810f4f1620f45f4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp310-cp310-manylinux_2_35_x86_64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 7a6415b54d10ca6d15dd8d25c567299e16df27184b5eaca422558f7276911460
MD5 3bf7752ba270affd91a5450d9da571c0
BLAKE2b-256 29cc49d5553d85c2c00f9322bd4e8eceff3ade0030eaffd36edf0e7f8f211550

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp310-cp310-manylinux_2_35_aarch64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp310-cp310-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp310-cp310-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 2d7c0cc816ce45d714b37b9e537963cbd1dc1743489a1626c61520a42b9fa9db
MD5 d8eb9126b5f9ba9878d920e8d11a94e3
BLAKE2b-256 ce57619499106172bc45cea3c135e83e5d2121dc4c0d879fea7642d452378859

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp310-cp310-macosx_26_0_arm64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a180e7d73e4bd99fc624c5316d5a857ea9d049016a559720ce62b04e6648a548
MD5 38ee3dd56a0544d392b7ec1d12bd5082
BLAKE2b-256 0546930d89c996cea50f8a9a2b87cb2abe8cc9c31dadb57a93533ea2ca2ad031

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp310-cp310-macosx_15_0_arm64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rby1_sdk-0.10.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rby1_sdk-0.10.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c73b55240f35385be4efa1356550ea6736c26f371e5f0008ab724969534637bb
MD5 3b3c9b35840d70cfab80593a7182c781
BLAKE2b-256 1f791d82cf2b4cf4af19510cd765736925a550e2c0e852b2e07472c0c400065b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rby1_sdk-0.10.0-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: release.yml on RainbowRobotics/rby1-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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