Skip to main content

Robot Raconteur Python Library

Project description

robotraconteur Python Package

Python pypi conda CI

A communication framework for robotics, automation, and the Internet of Things

http://robotraconteur.com

J. Wason and J. T. Wen, "Robot Raconteur Updates on an Open Source Interoperable Middleware for Robotics", in Proc. IEEE Conference on Automation Science and Engineering, 2023, pp. 1-8.

Github Repository: https://github.com/robotraconteur/robotraconteur

Introduction

Robot Raconteur is a powerful communication framework for robotics and automation systems. While intended for use with robotics, it is flexible enough to be used for other applications, including building control, infrastructure, and Internet-of-Things applications, among many others. This package contains the Robot Raconteur Core library for Python.

Installation

For most platforms, the easiest way to install Robot Raconteur is using pip:

python -m pip install robotraconteur

Packages are available from pip for Python 3.6 and later for Windows (x86,x64), macOS (x64,arm64) and Linux (x64,arm64).

Use python3 instead of python if you are using Ubuntu or other Linux distributions.

It may be necessary to update pip before installing on older Linux distributions:

sudo python3 -m pip install --upgrade pip

Conda packages are also available from the conda-forge channel:

conda install -c conda-forge robotraconteur

It is highly recommended that the robotraconteurcompanion package is also installed.

python -m pip install robotraconteur robotraconteurcompanion

Or with Conda:

conda install -c conda-forge robotraconteur robotraconteur_companion_python

For other installation options, see the installation instructions.

Documentation

See the Robot Raconteur Documentation

See the Robot Raconteur Examples

Quick Start

The Quick Start example demonstrates the basic functionality of Robot Raconteur be creating a service, and then calling the service using a client. This example uses the "Reynard the Robot" Python package, which provides a simple cartoon robot.

reynard_quickstart_service.py

import RobotRaconteur as RR
RRN = RR.RobotRaconteurNode.s

import threading
import reynard_the_robot

# Define the service definition for the quickstart service
reynard_quickstart_interface = """
service experimental.reynard_quickstart

object ReynardQuickstart
    function void say(string text)
    function void teleport(double x, double y)
end
"""

# Implement the quickstart service


class ReynardQuickstartImpl(object):
    def __init__(self):
        self.reynard = reynard_the_robot.Reynard()
        self.reynard.start()
        self._lock = threading.Lock()

    def say(self, text):
        with self._lock:
            self.reynard.say(text)

    def teleport(self, x, y):
        with self._lock:
            self.reynard.teleport(x, y)


with RR.ServerNodeSetup("experimental.minimal_create2", 53222):
    # Register the service type
    RRN.RegisterServiceType(reynard_quickstart_interface)

    reynard_inst = ReynardQuickstartImpl()

    # Register the service
    RRN.RegisterService("reynard", "experimental.reynard_quickstart.ReynardQuickstart", reynard_inst)

    # Wait for program exit to quit
    input("Press enter to quit")

To run the service, execute the following command:

python reynard_quickstart_service.py

And open a browser to http://localhost:29201 to view the Reynard user interface.

This service can now be called by a connecting client. Because of the magic of Robot Raconteur, it is only necessary to connect to the service to utilize its members. In Python and MATLAB there is no boilerplate code, and in the other languages the boilerplate code is generated automatically.

reynard_quickstart_client.py

from RobotRaconteur.Client import *

# RRN is imported from RobotRaconteur.Client
# Connect to the service.
obj = RRN.ConnectService('rr+tcp://localhost:53222/?service=reynard')

# Call the say function
obj.say("Hello from Reynard!")

# Call the teleport function
obj.teleport(100, 200)

To run the client, execute the following command:

python reynard_quickstart_client.py

License

Apache 2.0

Support

Please report bugs and issues on the GitHub issue tracker.

Ask questions on the Github discussions.

Acknowledgment

This work was supported in part by Subaward No. ARM-TEC-18-01-F-19 and ARM-TEC-19-01-F-24 from the Advanced Robotics for Manufacturing ("ARM") Institute under Agreement Number W911NF-17-3-0004 sponsored by the Office of the Secretary of Defense. ARM Project Management was provided by Christopher Adams. The views and conclusions contained in this document are those of the authors and should not be interpreted as representing the official policies, either expressed or implied, of either ARM or the Office of the Secretary of Defense of the U.S. Government. The U.S. Government is authorized to reproduce and distribute reprints for Government purposes, notwithstanding any copyright notation herein.

This work was supported in part by the New York State Empire State Development Division of Science, Technology and Innovation (NYSTAR) under contract C160142.

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

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

robotraconteur-1.2.8rc2-cp314-cp314-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.14Windows x86-64

robotraconteur-1.2.8rc2-cp314-cp314-win32.whl (3.0 MB view details)

Uploaded CPython 3.14Windows x86

robotraconteur-1.2.8rc2-cp314-cp314-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl (23.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64manylinux: glibc 2.35+ x86-64

robotraconteur-1.2.8rc2-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64manylinux: glibc 2.35+ ARM64

robotraconteur-1.2.8rc2-cp314-cp314-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

robotraconteur-1.2.8rc2-cp314-cp314-macosx_15_0_arm64.whl (22.4 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

robotraconteur-1.2.8rc2-cp313-cp313-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.13Windows x86-64

robotraconteur-1.2.8rc2-cp313-cp313-win32.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86

robotraconteur-1.2.8rc2-cp313-cp313-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl (23.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64manylinux: glibc 2.35+ x86-64

robotraconteur-1.2.8rc2-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64manylinux: glibc 2.35+ ARM64

robotraconteur-1.2.8rc2-cp313-cp313-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

robotraconteur-1.2.8rc2-cp313-cp313-macosx_15_0_arm64.whl (22.4 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

robotraconteur-1.2.8rc2-cp312-cp312-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.12Windows x86-64

robotraconteur-1.2.8rc2-cp312-cp312-win32.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86

robotraconteur-1.2.8rc2-cp312-cp312-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl (23.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64manylinux: glibc 2.35+ x86-64

robotraconteur-1.2.8rc2-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64manylinux: glibc 2.35+ ARM64

robotraconteur-1.2.8rc2-cp312-cp312-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

robotraconteur-1.2.8rc2-cp312-cp312-macosx_15_0_arm64.whl (22.4 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

robotraconteur-1.2.8rc2-cp311-cp311-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.11Windows x86-64

robotraconteur-1.2.8rc2-cp311-cp311-win32.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86

robotraconteur-1.2.8rc2-cp311-cp311-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl (23.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64manylinux: glibc 2.35+ x86-64

robotraconteur-1.2.8rc2-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64manylinux: glibc 2.35+ ARM64

robotraconteur-1.2.8rc2-cp311-cp311-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

robotraconteur-1.2.8rc2-cp311-cp311-macosx_15_0_arm64.whl (22.4 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

robotraconteur-1.2.8rc2-cp310-cp310-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.10Windows x86-64

robotraconteur-1.2.8rc2-cp310-cp310-win32.whl (2.9 MB view details)

Uploaded CPython 3.10Windows x86

robotraconteur-1.2.8rc2-cp310-cp310-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl (23.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64manylinux: glibc 2.35+ x86-64

robotraconteur-1.2.8rc2-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64manylinux: glibc 2.35+ ARM64

robotraconteur-1.2.8rc2-cp310-cp310-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

robotraconteur-1.2.8rc2-cp310-cp310-macosx_15_0_arm64.whl (22.4 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

robotraconteur-1.2.8rc2-cp39-cp39-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.9Windows x86-64

robotraconteur-1.2.8rc2-cp39-cp39-win32.whl (2.9 MB view details)

Uploaded CPython 3.9Windows x86

robotraconteur-1.2.8rc2-cp39-cp39-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl (23.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ x86-64manylinux: glibc 2.35+ x86-64

robotraconteur-1.2.8rc2-cp39-cp39-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ ARM64manylinux: glibc 2.35+ ARM64

robotraconteur-1.2.8rc2-cp39-cp39-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

robotraconteur-1.2.8rc2-cp38-cp38-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.8Windows x86-64

robotraconteur-1.2.8rc2-cp38-cp38-win32.whl (2.9 MB view details)

Uploaded CPython 3.8Windows x86

robotraconteur-1.2.8rc2-cp38-cp38-manylinux_2_35_x86_64.whl (23.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.35+ x86-64

robotraconteur-1.2.8rc2-cp38-cp38-manylinux_2_35_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.35+ ARM64

robotraconteur-1.2.8rc2-cp38-cp38-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

robotraconteur-1.2.8rc2-cp37-cp37m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

robotraconteur-1.2.8rc2-cp37-cp37m-win32.whl (2.9 MB view details)

Uploaded CPython 3.7mWindows x86

robotraconteur-1.2.8rc2-cp37-cp37m-manylinux_2_31_x86_64.whl (21.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.31+ x86-64

robotraconteur-1.2.8rc2-cp37-cp37m-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.7mmacOS 15.0+ x86-64

robotraconteur-1.2.8rc2-cp36-cp36m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.6mWindows x86-64

robotraconteur-1.2.8rc2-cp36-cp36m-win32.whl (2.9 MB view details)

Uploaded CPython 3.6mWindows x86

File details

Details for the file robotraconteur-1.2.8rc2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 803b778a44c5ac2d07a8945e34bfd6fd70ecc831e7c47e7092221c08d9981c20
MD5 ec17914769d1fdaa2af5bd5c3e854218
BLAKE2b-256 f36fe1aac505445f83045f9578cf047b1acfa4f3d31c0235b824feefa38b56ac

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f6519cc5d8fc1249e4fb789f9d19d70d3f211c94f660306f335c84c944d28b92
MD5 34a87dc8de0dbdf492b1770057c4f309
BLAKE2b-256 f07102af26875fa29e568e522e5a5ac1aa936c0c6562c1bd1bfa2982d28636df

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp314-cp314-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp314-cp314-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 fb51e98e7c59f12573efffef25b4507666898e125d35a8663bb8ce0f8b95fb32
MD5 6aaf1ceac2d7e36799402782235b23e9
BLAKE2b-256 8601901afbce2363e740781ca0a97a38b6afe4b27311692c676c878e99fc0fa1

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 da0f1bd695606f8de5ff7585084cb5e08171cdec7508fc138b8a3d4352f95ee5
MD5 2860ea1d64093594e016b4ea3b32e3ab
BLAKE2b-256 30b281ee3e00c7a4fac9a6ee902c2070b69d7430532b47122cc1c01a846584df

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 57dd2ffb5e5745a2400f069286198f3bf3b5a01dbcdb35e9dc06b72345e60493
MD5 087d2e748acbfdbb37487fd8478c863a
BLAKE2b-256 6db17e219d3ad26298a667c2165efd4e4722900813dafa25e0b2f26fc86aea58

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7f92ad71a28abe555dc721da9723ae6497a11e9725c7677ba5c5bb938fe6192b
MD5 dbec85852c07e594ade00d9a8c643b9b
BLAKE2b-256 01c496260a57e3c9a9e85388deef60be9d114351fff3c37025bad259d4bc5185

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f2fb91baa7ec2d5887f589d66c3fcc8f9ec3b5d2818adb1a8c2468c1572dd188
MD5 feb10300a878650b9adc792818b96984
BLAKE2b-256 6be4cfafcc5088cc3b4c46ac4b389c0eb60defe63e0e0392176cf83dc38475a3

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 993b53ee792fdbf24ea4d287863372178747394ce617e9df8ba81b7f60924008
MD5 e31378a8d320c1de0d10960b0e8ea66b
BLAKE2b-256 1cb4bd5fe7cacbec7f499018c989bf3f164193c47786f0b1171cee4afea84aa8

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp313-cp313-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp313-cp313-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 d79f3d190fe7efd22350fdb25aa57b85e54c0b0ac1506700c524038416d9d42f
MD5 a865be519c20974975fb46640ce1f85d
BLAKE2b-256 6f2b87a20d5426a11d60c8d6987d7fee418eab310d8947b0e57775b8278bd5a4

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 8d28fd753ceeb159fa9c108a656c18138341d0f66381657e57939bc0af949f4d
MD5 24a305e04b3c994fadc95b2a7d8231b6
BLAKE2b-256 877c032988270a53f5314830167f257f90493643d3ad09bca4fa1cabdb8737d7

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 02d4edf4e7d38ec44a484b154728c4a9df66a3b37b4f9ee0e18023bbeda2cc9c
MD5 062116bd658de36a2fc1289aa0e26f4e
BLAKE2b-256 f0a112fdf4d161c3db1a5b6e757eabc308b75c3153474e73196209450119300f

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3c4f45361049ec1c57f3311b45390c887de63a321308545f666a8cd061c211f1
MD5 59ff4de0eb93823263108cc330758f02
BLAKE2b-256 8c629100d4766d5169e3c9740b1075cac9bc21dd681bdfbe17f05693ec7b6538

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a37dd8c9da41362272f0ca5e4d0c7bf181e216d92ae0da5bc345123f3f0edb79
MD5 7c576db526e89632026bd13f402e3817
BLAKE2b-256 23a99792a761777104993ad5d78bcfdbc193979a02c2198170b7582f582d725f

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 008c923de814e049d1efa2011c8b834e6c2e1928cf482615d975b85f9beb7be9
MD5 c911cfff5d73cd3691e6edc82ddf61b9
BLAKE2b-256 52c71d2b051ea738834fa74a818bc4f70cd6b43afa18d63a36f01ebaf716abbf

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp312-cp312-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp312-cp312-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 ee182d1103da1b7d6b4a2f0666c8a00221701e4ea5e8a2fc23aa078a5363d61b
MD5 d5d27d454e09f958c50848b637bc5603
BLAKE2b-256 09ad25521321521702167896b37c7316028981d16629014bf8f4b791b83f6575

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 cabd8b926c867f80afb107b1024c4487ccbc482aa69199555bc338b485b828d7
MD5 baaeaeb098fda2c3f50bdfc789afbf1a
BLAKE2b-256 eedb8a0cffdf1a5079ba3c23672c035d178a365b0095fdba510a0f065d5c9649

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fc56d8fc6a6aee8e13554584eeb8d700b74413aecc2dad6e89fec98069090c34
MD5 f07d2c1a2714cbd8f359a8324a616dd8
BLAKE2b-256 78c0cea6c687de40e12a11fa8c074cd78e5dbdb1051e18dd977382a5ae6e43c6

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c1616e9c4f92d073c707f257a21647e57a7e46325a9b9030226b7a64217b81c9
MD5 5b26b4168e993afce3cc6bda1b05aff2
BLAKE2b-256 29c214b69a232ac53366e5ebd196c245f8cc98a2ee22604134a742c311030855

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8cdfaba9d313c21bca066017ebc724ff91b0caec94eb2d279e99e47bd8063664
MD5 80a0a8f6a566ecbe5b634831b97a8c2a
BLAKE2b-256 cdafa2819456e620b01a4234024dcf7ea67f542fcfba86ace5ffb5caf4d45788

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c9979620f4e72fb24a57ac860acb677d361ddc31406d13e2f63972b2d9cc0a3f
MD5 96016d169645110f5f2bdad9fe7c05f8
BLAKE2b-256 3750769c7ec6326e59912a1cbc9135d1ff4517edcf28635dfd90fce09ea542e9

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp311-cp311-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp311-cp311-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 f1589e1c58299be304174112ab071904984d542626acd4f72aec47f147880074
MD5 f89e5732e99aa8336955782a951109eb
BLAKE2b-256 51d4ecfe4bc164d63c2017b2fc7c1049c9090bc2ef2fba101ca87a57a901106c

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 53c2c239cef48de632264b0d8ad20017b6eb92a211e908e7c4ced4ab07065ef5
MD5 9092a4a33f697073c223b9f3b8745730
BLAKE2b-256 c5f49e16c344c3aff5ee8e2c2880395ff98d5853f499a2e540e7d674a3aa30d5

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a6015ac4f3096a97a394b5b5bcaadb5a708ec82d9a9bda695a8886568e630fc9
MD5 1add37bc395d12b00154df1344c652b7
BLAKE2b-256 9914e3ab39208c7527085e52b286724dce37f93ead1988282f33b654d3e0b905

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 6f9ae5f6a724f6d890041e0de652283c1612e04651ef2f8783c8374b97d9c925
MD5 3ba7b28396ccc0c8f69ab599e7b41731
BLAKE2b-256 7d1f6b93bc5ca7e8cec55f3299738898c3cc5d318713846dd9204fa39c44ff1a

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 330d6c018dcb179367b0ef254a99889bb8cc6e4f84bf44ae48d3d3767728afd9
MD5 1a34559c43b5c280f9cc629ff34d5566
BLAKE2b-256 412c99c6dacd08d639d0f9d24d52c382b7d1fca1e2d86e7e754c8fa62df0c0b6

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c862524c9902403106a0dda041424cbe3a263fccede7f43833ce5e0aa0d6729f
MD5 5a0b3d2e20e7677b099976b44b37ba9f
BLAKE2b-256 fbfcfb700f7ef41b701fc6f313bf11b22d9293c3db11b007ce2d69b7ab878625

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp310-cp310-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp310-cp310-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 1015f0e121026196e3d04a69cd44c14c42f2292aa545dd8fe2228b5e6b6c6090
MD5 7ec63c51c23b144e9636493ea682fb4a
BLAKE2b-256 f3191806e4443dd7de0360c0cd16815c3e4bc55c5a8505064c435fd65612cfe8

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 051aa609025ef3e1cfa609f0c5071e05a9a1fb200ada867981199a881d04f784
MD5 8d16d60f9386a84285f4fa86902467e0
BLAKE2b-256 4a72a58d3b4d78ee58a421c0b25fd6672aef4bfa29ba2d5b1f1d059f656f6945

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b18deb57eb0cf4f4caac629a28f0003f30809331b52b4eac1694d51d042667b4
MD5 1b643207e66b5432cffc646400185ba3
BLAKE2b-256 9da1e0cb7a22d3a1ab590adaf938f1aa625d671dea93814cae2fcd32299b21bd

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1f4e12c9a4e39e16ec6c80a6c43a1a7687f435ba4d438e52cac55a220b4fee2a
MD5 c6d4eff9a0e3d161437d4b725a3ade3a
BLAKE2b-256 354ee5a639432bf110a3447c150c21ea1632515c962c1c9dd3e9a79c5d4e1259

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e639e33cce3acb2c4ef67a2214b0dd12de308e8a6ee45587651ba4a75375c8e5
MD5 69b115d08409a6c26b2da58e9cb7a2dc
BLAKE2b-256 43a1acef1167cb4a157d7ece8d336bf1cb32414ca266587d1fd81389fdfdbc34

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 be268718fe7a80822031c5a9489a5b1dc576975e0adbf576c738a8e4f0e6b9ea
MD5 f4cb338fdf1de6acd7b1fdd8efbd1a40
BLAKE2b-256 fc9135aa7a114534bceee7fb1adc6f0c08cf6bed0ccb3b592759a00837243b42

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp39-cp39-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp39-cp39-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 ffeee20e6fa82b72fdcd0b180a341ae1e70aeddc0db0b00a592f637954c800e6
MD5 79cc5bc9b704a3c624d2a6095e098fb5
BLAKE2b-256 b04a3c8e64eae49ea84921f3dbd6dbcd7ca9021b9e9e01e48e49006e4370ef1f

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp39-cp39-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp39-cp39-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 49eded3085f7df022e93bb6070752b1b5bb8669b53ec100b41a66272d10d252a
MD5 460362fa4eceeb5f7c6ef3622fd30ca8
BLAKE2b-256 55f88f3462cface4098e7269094a4ffc7dce47b473ef14898add80c18d763ca6

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2f682046504b128d34270a32062c630062705d1340fb206548f8302ba6726775
MD5 3c9848fefd914e9cbf336effbdd68886
BLAKE2b-256 ab0190d8bf42fe83938609a1d77eefe12fdb2223b459fb30c67a2b44fdabb9be

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3e6048ca171133e2f16ba29252e9fdf2ba3a96e9801ef643e073ae5396f53d90
MD5 5c44500088e145e0c2c4b0d486b1afc8
BLAKE2b-256 15af0f481e43458dca7c8a4b8f359a2915b66323c44d0394b0df1c70036bca82

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0a20eea845a2f7a76f3ec40df7fd803626321f0d20adaa5d1fff5f6c0fc89174
MD5 dbb6d2bb59425fd5efc1c59192126b0d
BLAKE2b-256 f903029e863d1e19748c7602f6bd6905c85dc3c28897cb388f43406ae4ecf5d2

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp38-cp38-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp38-cp38-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 9bc6809182796cedac5b863afb0807e63bd4a842338a46f2dc7427b64ee2e0c3
MD5 3918f19ef5ea3c2a14f3fb83e76f59ec
BLAKE2b-256 797e71a35739748054d4005811cefa437a5920e9f623641fc28b9f3366226fea

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp38-cp38-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp38-cp38-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 cd0d29e6615b28ca24a6b999be91e1a5b6b5f3f05e8172eae64abebc409d2879
MD5 3d087ca72b47164432ba1ea02df3d5a5
BLAKE2b-256 b7c21c8565e8f5663951eb80076b3faaf2a15c07d61bae75aa0e312f905aae17

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp38-cp38-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e2fa62c98246f5ce6c7c660172fce353344aab85cc39280ec55540a171b73f08
MD5 db700ab2d3e6645332d74c984261cd6e
BLAKE2b-256 bfdcc5c4bb09e338b4c56f76c06073216174c812de7afe50afcf392f10825555

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d53aeb26b015de3462ab9afe9954244d91613b61106aedb099d349b4246fbf9f
MD5 23f5366f6648209e3d53f02756c6e1be
BLAKE2b-256 b54829282ecf0685639051647866ac52a7f36b7f99c5dd588339d2efed21adf8

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5d32c51c36ae9a35575c0dafbc2500803a333e479b8f44bceb2fba24e9737518
MD5 d5d259c86885da2e8a87135e8e0a0f84
BLAKE2b-256 742d6c8160510ac63b1e5fff6ab316d69b770cbd929c400545bab059ab11cf65

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp37-cp37m-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp37-cp37m-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 a094ef0f11bf423e58245339410e5b017658ccae58f8c53bece679f814aff1a4
MD5 390e3d822a4c08f04f58b324d3929f85
BLAKE2b-256 0c7de06c15a6ddbfec89b2393101df5d12d1bd1a01a43c1b055f1ddbb4d988aa

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp37-cp37m-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp37-cp37m-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f7b78cda661554930b35b5a6a5a5bef3b79b1b590bd254f35b3116ccab98c8e3
MD5 1f1e2f13b9db54769ada84c15d6869a8
BLAKE2b-256 dc46499f065999ed83d883fe1ec0f621b0396802713de7be17678afadfec6440

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 edce09bb7ae02bae0ba07a13a297717d4200a25ee48b009b062fbe7fffe588e3
MD5 3ab5fddb31c955ff9104db3dc5c9fc0a
BLAKE2b-256 954e16b4f87bb296d69957c8b18bf4d2fcc3f6bca44bfa1b06dbfebecead42c3

See more details on using hashes here.

File details

Details for the file robotraconteur-1.2.8rc2-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ccaf6c7830cb10c687fada48dfba861be985613a55191512ef03a6de254692ce
MD5 1d8eaa52b892e3a14da1c7e517fa7a8c
BLAKE2b-256 d97de5296711ef81c1e235c70ccea1959c6939f25c18d98f848d9d22145442a4

See more details on using hashes here.

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