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.8rc1-cp314-cp314-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

robotraconteur-1.2.8rc1-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.8rc1-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.8rc1-cp314-cp314-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

robotraconteur-1.2.8rc1-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.8rc1-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.8rc1-cp313-cp313-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

robotraconteur-1.2.8rc1-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.8rc1-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.8rc1-cp312-cp312-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

robotraconteur-1.2.8rc1-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.8rc1-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.8rc1-cp311-cp311-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

robotraconteur-1.2.8rc1-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.8rc1-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.8rc1-cp310-cp310-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

robotraconteur-1.2.8rc1-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.8rc1-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.8rc1-cp39-cp39-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

robotraconteur-1.2.8rc1-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.8rc1-cp38-cp38-manylinux_2_35_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.35+ ARM64

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

Uploaded CPython 3.8macOS 15.0+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

robotraconteur-1.2.8rc1-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.8rc1-cp37-cp37m-macosx_15_0_x86_64.whl (22.9 MB view details)

Uploaded CPython 3.7mmacOS 15.0+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 37316e1a21940cae0f94b35360ec4bde06e0f0367479bcbcbd585096a913c254
MD5 9c0bc58dc8f13e5b30e0d0ba253c8369
BLAKE2b-256 69dbcb2ce1c9a92dcbbd0cdfff5b537d86e3349217086ba0bfaf497f7cedbaa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8f5d94751415d42afe2da52cc6b4a1fbcd153c86c3320153f0f3dd8f57485369
MD5 b8ff35ed5fb1966d49accadb2f210c2d
BLAKE2b-256 262ec2a1aab545b9e342957e4b70183d1c9fa3c037d2fcbf628762e177cd7f6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp314-cp314-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 37160403cfcd163a4bc7571ae038b1849d34c27be6bcdabe061eab2974728919
MD5 52e809ce41cdb1bee91c1b825ff474e0
BLAKE2b-256 ef43c4c5ab18b768c7d3e56f9d55e8a8c23d6dbf211d518c8dad86596e5abba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 d4518bb1072c5997931031628d506785b97d581472f75367fe755a1896a1438e
MD5 71424378ab184ede5dd5a45a4b7b7d33
BLAKE2b-256 33cee3b728fb501a3dde79d2c242bd7862c5d576fd24da1ee491ce0ea0d2784e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3f5310bac4faa0d0e954f9b5093fb21cd8b3735b568b1ab327fa7afa4b1d79b2
MD5 34d7e62144e6f338fe43bf7aea12d090
BLAKE2b-256 3fd0000b4e8b021a07f2afb89c98e52780aeb2e1d37416f3a4581ead87fee34e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c36868ce32424270ad46b32a07c4984e434cc1787477fe4a5adf72f9e067da73
MD5 6905458c606d7d4bce2b141ef58a92af
BLAKE2b-256 66be87c556255c99a48346dfe6ba2365a808cfede8f742adc696a1ce4677c001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ebec368c1638ef96599b5ef2d6c4656c828db5d4a66262475526c2eff6c331bb
MD5 ee22accbc2da3aa65e9cca6fe8efa437
BLAKE2b-256 391545734fd146ae1be0cebb396bdefc041464bc5035506fb407f1cc08443507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2c45b6a672a0c856c48e7e50926a86ca5f00927de57554f5dbc542284968b199
MD5 de75a003a7da97c5aef03c5b181a2a1c
BLAKE2b-256 dad98b9c32a2081a5dcc21284a154fc9ff4703de19aea921596ef67aa4739699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp313-cp313-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 bfeb965c4ddc819dd83a15665aca3792ff89a4dfa09b2541c731251270bdfb13
MD5 ee2d955304ae7afdabc97de78c60c4d8
BLAKE2b-256 b49b0489cd1cc230fc1eebe57b3c76e9d4dd44cd711b3c89cd47388bc7c0d137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 66e7aa359f3ea75d4dafebb55fa6c3885a428e70b211ce00865ebdb91be2a732
MD5 1ea020b76fd4e127655a40d24c2def34
BLAKE2b-256 43e76074bf15ad76a7667b18e9317f2c924b75bccfe1723024886caf95c8218a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f3f23772dc086a6aa77d9eb5b5825dcfacedce832d426d63780abe8014dd8d25
MD5 c07ef58a15c99a0ba1a4bc3cd0b10b3d
BLAKE2b-256 becb0062230ee6fa02ab0800656c5a1127186bcf6b894da3220960e4b269a1a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b653a1405aa2ad38a42994f7257425a932bde7023c5677069e22f8bfc166d63e
MD5 d8e9d3abe65acd2b5c00fdd2aa65d444
BLAKE2b-256 1bfe9b23605d0ff3508e4378d725123637978e252addefd27303eee27dc549ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c514c1a6e284b73f803e2ae392d48a79d46fa279e97258612399aecba4352dcf
MD5 d9b24ca4d0c0d1a3f8e802e76eb2347e
BLAKE2b-256 e7f842b76cfdc88bf9124ad54e06bd95b6d557dddfe1fd5c4dc6e0bf55e63c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e5f342b2648db69862c794c4055aeb1d2a8a75f99761394bd1573bfa3ffb415e
MD5 10e5a337db38285461e22c9cda9c7fde
BLAKE2b-256 005a7d2e329dd1279db9a336ada93f68614fdc22d740814473a188fea02386f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp312-cp312-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 adca47687c2d7ade56021f0c4a35d64a1201294e81950892f905eeaa6868bf33
MD5 df8799846f87a6cf65915d8505482c21
BLAKE2b-256 4e85f9b503215f424872e5affa183c6e65f956dc56eae56365ca65a049cf0196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 c21cd99534a59388fe844656c421b1efe8c95687a60be08f88a7c64959ca4841
MD5 56935e6b505d4e95254c9a205aa43de8
BLAKE2b-256 e028ebb4217b06c2e1511fffb8e336e8fb6d417ab1d9f443817e71187acf9a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 66ad1d9c531d8a1949a147f32e8d046762d17584403528bbb10e190efe104ca1
MD5 67b06a7fc6e49fb4c57877e3bbf110b7
BLAKE2b-256 6a534241890142a4db890539fffd89cfa6e65cf8ae376fd6b8b0f5df932a215e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 db445d0101ba93c7e5801c34523738674213809566726ce765a44c6f370ed1c0
MD5 a71232ee1b3cacb29e0ac3ad6d37200a
BLAKE2b-256 c03f2f330d06641fdbeb6e10fbf9933d46ed4fc55ed2dc7d0b2c4853ad2ee95f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b43aab346c7b63dcdced258c3338d1f1363e61f9aff8eb914b89f536a0236cdc
MD5 74fe3dcc9c20be032d2c9d4dcc6e0b9e
BLAKE2b-256 914ac9354310e4a090df9bf07449a8018ca8fae8e94b3196131c231c8bd60f13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 72295732d5754554397ff3f5633a166003dc36652f79b4e35daf4553a04fc8b0
MD5 3521faf44075343eca53515ec3346935
BLAKE2b-256 94057cc010d494059affd94a74b4794fab927484d20c2160a18033507c0c453d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp311-cp311-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 d36d8ada6bc50ac94c14a83ceca5c9fc7ac71f955dced3d392077f5c2170fe82
MD5 13acf701c5da901108ada3875e2ae4ee
BLAKE2b-256 134ed461e99f5aaefc4ec525f5a700c1a7be1ba20f57de03dfbeb7b64d122f6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 f80b41046446ef25981cb22c6574751410a318219ae171475f6aa3b927e0f0a1
MD5 c72efcfd5f6962e394e1e4ff2fb55c60
BLAKE2b-256 6601cd5e60ed7843682f160292aa20459e549c271956c6c756cd03d5bcef2957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3f435a3a7241c0a8a7de9525ab4700d678c3f6c07346fced9737c3574894fe08
MD5 92497959855fa62a655be8533a362ae5
BLAKE2b-256 62da7c28e6bebec535ddad25ae0b02e17988c9cba78c296e8da4b5b6e2fda835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a83c24172d9be97fd97ac23ce9229be24372b9f44f0808444fe1ab27d0824e89
MD5 8982245b5c494e956d0d51ca429859d9
BLAKE2b-256 e1fb4b90c4bcf376b6a926b4836c9a85c5fd914cfc32a491f001b5c46e02e274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dc210a23c10dd3908a72115bcedc8cd3506c7bf0c8f643be0a704badc10fa28e
MD5 c954ebd9fbdb2e6a5469e2e3e6059d0c
BLAKE2b-256 e8c05417e237be1a022792429b47f9ee8813759d82baf77bffd2002a2679ac50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b2a67a915956a82a0ae4cb6ef17f2639e2e751da5a235ac5033b395b68beb559
MD5 2355b68720766d562aa55a68a3dec568
BLAKE2b-256 87605ac174fd7f1de2e3bc681af79bb5e0c14478d878ee061374ab1115974077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp310-cp310-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 e0f1aa8db3d5d288867faaed7b94e87ddcf4edb5b944ae830df77ec137b707d1
MD5 a26496df9dc411401969ea40bd1ee764
BLAKE2b-256 e974bdf06134f1c5fed6278441a17b8a985ccec8c03c38a061adfa4090ae5d8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 e6a74750acf7ee426f9678b4676cf5b62a9deb7ece3f97977548dbd2095e6ffb
MD5 3da72a57de9d133717358936a79fd3b0
BLAKE2b-256 f72c50b9a5fac2361461a1262b67d974af6f3e2c3c57c2e47cf9344dd4de101d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4726b6aa047ae502c6691c74c87d49fb35abde5ad7d540749a1ff91e2484f792
MD5 4684a38ff1d304b7229a7e86e29db14d
BLAKE2b-256 d97b2781a59458ffade3c410673603ef584c31fd5b45b930a05917dd16691280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 108ae6074b6b9fe033d7281652297da197d3a4c5b794caad1fd088219daa7aea
MD5 027e8d9cd8765d74f33f84fbcdb2efda
BLAKE2b-256 d46f910b0175ec388bf8ff7bc78b3a48769ec6a0cc622dc275a65877ab7366be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9a12ffc773221a4cb96e2d82221b02da9c86a106614ce33bac3ec66d489da723
MD5 3208ae8733c7326c8e2dc7bb1bae33f3
BLAKE2b-256 b886898cf5c32956897b137521b1f606cd409e90eabf776363a7de740fe5c48f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7ca4fed2e67b4cd420da1fcef3f45d0392f9e02df9a4a9fd92febc902ddb719b
MD5 eaf6a0d94894f88e08f898275b825ac1
BLAKE2b-256 9bbe1c9ddab8c7dd86fa82899579ffc4806f83b1ba48ea1034769f8a26d59134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp39-cp39-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 59afdf26001d115192d69cd94cb539266b9e9d016535ac357fccb40ef2cacc08
MD5 05bf78cb0a4247687797ffb7a3e64016
BLAKE2b-256 d50ed9e515e92fc8c73886eabe933379f7b43188aead175c388c531f588c8272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp39-cp39-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 fb8633ad7f44ae5236c90296e82ffa68a6173cf6e6e7c7e36c84b47c1a7bffeb
MD5 3541c46e5e65cfd25224db5d7c46ff3e
BLAKE2b-256 0e2c99782f2cf673a2c80e5c2113f0189ec9183a25c9c77b49902bb9aba08da0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 43333dee91d07203901eac18b74be8226931256c06b7607228ee7e4dd4d2ba70
MD5 bf09df70f5b9f3f9e284cc8f0537e556
BLAKE2b-256 0fd63b0c6176833103bb7211a23f7e2bbf32cf275ffa869cf8b62767da4b72da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 68d1785fae9fac9d80cc49c8e21bda41229e77a4afa25358e067f6522e4a5099
MD5 62886663087ff8c41146317b6c8ccde3
BLAKE2b-256 ac86ef0866156498b8a42570a8d91be5fed8fd64c37d66d4a676cebb3a0110ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d0fd962e02097b6d7299b29e646b8bb84bd1d7588c871daed7a2455c8da63b55
MD5 ec20e6339528d32e708e801dc11feb3b
BLAKE2b-256 fa2067b3911e39c85254124c5566fceb6cf54206e6f0475b2be7493201e608ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp38-cp38-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 eb6dd72e7618ddfc663dc4627c82bfd403a8f2a8877ff868f34fde23132751a3
MD5 f3956bd05d8e99422d65e9a018dc8b72
BLAKE2b-256 76501ed0054586d5d0dce63b68cff0c459d656354db99d92ec399897ea3b3a7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp38-cp38-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 f8e51148e0810557ba68e01b33e8084d5eed65b5c7c233b6e84db19fd748c3a2
MD5 48a4d0f6a48163c9c0b6bb142c4cbc31
BLAKE2b-256 a0dfcd9d77d31ea0324edac49bac488515dd41db970b7a1c76e3840817b99677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2e3cfce0373565be32fd55d25e08397c270f4ddd5c4871a205007bdad802c384
MD5 df8edf8402415875b572d553839fca5c
BLAKE2b-256 eb82f64d6c3ba573bbad6f06e4b324dbc13a1434efc90af5c4615962d8646353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 479a5a7151f57e5b2dd0b9fa1df380cb1400f51591ac3552af474afed27459e9
MD5 6ca73c2124c224c935a82b1ef8b0a63d
BLAKE2b-256 2d8605394c012904f28a37852af94e173fa5318eb372916623c1b39e4eb311e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b29d3b688a8cb2ece0965d642f06c04b06dd6411d8b3597b99c9f74e42056782
MD5 a7d5c91224d8375eec34345c87ad154c
BLAKE2b-256 2635b244ea45ff20ad1da76ccdad3796b7b507c7b660e939a947d797a573e3b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp37-cp37m-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 6a90b0ea1c38e482b9d0d35f539a1122559facaf07bcb4145293be69b9816000
MD5 a90770e37cd7c030d63ebb7042b8ffdf
BLAKE2b-256 2b69344750f9a4757e491e10a4b22f58b206857ea89cf435fd1f9b734ca0b5b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp37-cp37m-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6d2037f2b164cc67f7205143c1d17017e2b65ad555c6748da8f386631a4904b2
MD5 7519162ffd76679d572ac6e8fb1c703a
BLAKE2b-256 442c7efcf74d6a67b38f12d7962463be776376113eabcfbdef94dfa55544fdcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 747b17ed27f9d66701cb54e8bc657ddc49e37dfc6a040373d2b2d8004b4dab6c
MD5 2521268d98e7ca1a51b2a49feb5d5408
BLAKE2b-256 e60ebc6d0b231ff6a218b92d1558486a114e9ecae8abb343bf6b8ea1b2ac61ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7d8a572727ef0cc4574826751b19511510f0e121a5a9019490e817f7d15ba450
MD5 f99c185c49b196837db0c5472cc54b1c
BLAKE2b-256 80635ec15d17611375839b42f18864e4ee10595e8b5280951c557e1ef54982b2

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