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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.9macOS 15.0+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.35+ ARM64

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

Uploaded CPython 3.8macOS 15.0+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 15.0+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1a73173aebe70cbabd3170ba25764fbde83e8db3b9e0c3935f9ce0be3b373d73
MD5 356bc976e681d1b2339c51e9f23a9d29
BLAKE2b-256 c51845147b9f7dcd45f6d5b3b9a7cf421ed2fb5f9050053ee679c40aaeaa6708

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aaf0a9a3a416da0011113e7f2f8615b242e00da77076c8889c3f396a2ebb3f57
MD5 8ff579f07c2a4e008e70c07551e97dcf
BLAKE2b-256 b9afbdb50b23f09e41d6c8a52509b427d946b4e1b4b1006ed88c25a3e565c37a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp314-cp314-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 ee47b0a9aa87197b93d677f26a921eb4fa3c9c3d88e365d49904f3cf72cc5947
MD5 ff1e987e04807947531fa73e8418060e
BLAKE2b-256 af9a5e7f5fc3dbf8d5222ad5722c86571abe07cc43c8d02d0ae9be49f73fec26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 ca71f216e93b292fbd196e96f77299b828827f1644890613e847af7a10e7db03
MD5 0fc14bf7678263088be97f4ddda2b3e9
BLAKE2b-256 0fa6c5ff3f7f2657c496b7593cd31b7a7f5b9bf9145f1bde1b0a5a83251518ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ba1f4e614b6e9159d4c48f5512f1567338b019bbd91d346a36974b8f9cf06f66
MD5 0d79fe02e14df9740f18ba1472039798
BLAKE2b-256 93bc3872b26fdb174d6c008923ba6b4cd9a1c3900860a73f8c2d9fc8ec2280ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a3010c5745d0e8968bdf531762c8b13d5436ebc88e4be8b324707cadd2cb0d23
MD5 6e88f4083703460252ca165383b643be
BLAKE2b-256 463ea4f3e3a750fcf759bbbb37a8c9d560b55935d5d5e208bef28cd9cdb506e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e990b487f0b14b9de4d7c844c21449feec10955faeba2da479b2964e46a01f78
MD5 0b8b8e0a245fec39b1ac4b14300e4410
BLAKE2b-256 144b301119a810a77986c9e326b949b9e26ccec7a906146a198fd828bc002732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 38b59b47db1ebaa970d51cd1ff3ad0c107ac1d4f9607ca3fe860756eec79e0ab
MD5 3d25f6e30735e2aeb5dfb29ea9937d75
BLAKE2b-256 dbbdb2d899f3a68f8b01094886ee30586803906359ab7d26aaed8f6407266d5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp313-cp313-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 00fac3a0663af69e38a1eef7a93bdad4552d3f66e8584bca10b4288557d14224
MD5 2f28be8c9a917053d0fe2139a89e2284
BLAKE2b-256 d61a4c730a1ec3417fc23c8a5efda960c2dfa6bd3fd47019285c62e013ef4f59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 e8dd5bc72b98af5196bb5e32a43a337654c379323d7f8f473d039aadd340d07e
MD5 8449ead18f513b5a6b53e28da275c8b0
BLAKE2b-256 a87a66dfe48d06a30be95f9ad49268c1dadebe64061410efd5dba4f0e0984589

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 86b389ccff02f79db38452e0e4518d4a21db08db542391d6b99cef36576e4627
MD5 6ddfab83629733c33b029b325f99fb95
BLAKE2b-256 0b2285d018f30cefb045a6eb76cb3c0c3cbff9d48688a6c613ddc835b273d249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e529b0bd1ebd5cffddace3883f0158228a27a85b9966c9674afbd1eedce9a819
MD5 3cf293f4848d02779b23d61492769cc2
BLAKE2b-256 d4271bcff7be40247132e6a017245030bca2a006cc377f799094bf0374195a1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c9bc09d5898c518f211d8c190928f01ba0687f4580ebb5b34280b418bdee8218
MD5 2427a29b71cbf697e7314628e26561a7
BLAKE2b-256 22b10479cc5dea57f82357efb70463c5b721b242e5a3c85daa1bb90ee934cca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f1b979cd61369b8517280cdd9d889dcecaf73626b9f49494c0a3f83da812be03
MD5 41b76152092c163ad1e0651b6026c51b
BLAKE2b-256 6deb908dfbbb56a36387d55d47c55f63ef820fad82128feeb6b7175f7560d7de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp312-cp312-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 dfc971a2f1748a5a017221714b1587c17f8415ca761ebbb64af54aff4ab94cd4
MD5 bf7de41bf8f7545ddadbac088ad1aa18
BLAKE2b-256 edb6971ec98e689638a54fca4998127138745d9bfa8906e7bd3e81a02a44a4ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 82aa45a17e36bddaa475e62ec68331cdd790271510ac0be3f26ba084602e8431
MD5 f4bb2e1cb7323369ee7327dd8ca36857
BLAKE2b-256 b22a48aa85a085742f5a536e17da63e778584320fb420aa1b81197b96e158ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 50773ac5796bc30f1bf53b6d285844dadd28693aaa34f7051ebec2b0fe0acef3
MD5 17985d73ee198ec8846392b2fa035381
BLAKE2b-256 de368a0fb8f3c9080c2e7a0255221f37951faec2a72416b1d66f16d9536ed451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 40607d258cde7d943f36c18a4079cb464bccb078dfe243df48ea8bebc6668696
MD5 9cde9aec49c18c8b846568d89801e11b
BLAKE2b-256 74cfedd9a34148f7ed963e5400978ede3df9fecf774a041bea56c25e94432064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cfc03d9deab86100eb7729dd83c472b520d37d3ff25a47a7b2c28651f23812c6
MD5 ba9480ad84cd6e11f103ca9af0cbd7be
BLAKE2b-256 0365bedee42491c667d1991e0b3131750ecf9b2aeed27f902067e8ecb5b2d533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 954367da41a13af7a9eef781e1cdc0e3b564749479663ccf018aea5896400832
MD5 26965b63753467d4e28efcfae767a581
BLAKE2b-256 d4ffa66b1d1c51a49b63e8b840f1e42ebf42167b9a3b916f60b555dceeccb02a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp311-cp311-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 068e4bcb7e576207316aee2ab4620e97c6a042641ac843cb6b580865908a8654
MD5 652815f2b5cfe68020e13094aa7f586f
BLAKE2b-256 1f63f21f1b4dfbd7c96f19e9ea0548dfe01d946d7127f903e480433ba57119ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 b456045a863c02201984005abe7fa3dbc1bcbceb0ee4710c7641ecf128faede1
MD5 ccf2c0a3047b198f39a9c2b3e9604ce1
BLAKE2b-256 7d4a5dae03790d2bd4f9308b7a9879a938cebdccbfd3b48e1e7a4c394b9fea3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 01d24a2de136f3f7c263528ef4a93d4de4909d5901cc2584f6b227817e911b80
MD5 a789360293e13dc183750e1648c77d22
BLAKE2b-256 f282237db92d133aa4e5356ccc6bc9c1333b17fe85ef5c418583fa491b55777f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4cd77531b7a7e1e34a467e6de59452bedb20579e733a466476b49afbafc8b467
MD5 7ab5fb216723fd4329c3414ea791344b
BLAKE2b-256 876685b0cb9d7ecfe94cd5faadaae963249b342e2673491b6325f201850e3b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1376b68827924e140e06f5f46e05aee470773f9c58ef66ebadc1fc73934379f3
MD5 f71bcdb472e471857fe92aa2eaabefd9
BLAKE2b-256 c8fdd452b0c30b9d47e05800eca86217a8a39d2feebff1bd6cd44db7e0f5259e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 567e6f2571b0f87ab2cfa86514d3b5c7b136ce85f321759b9c52ef86507f4d8d
MD5 94c412590cb49a6efafd7f4be02f76b1
BLAKE2b-256 5229d5fb3ca091200efba069879e51b0da2ed058c214e8157fd97b3e466fe86b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp310-cp310-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 8b7080325154c532b7c8a52fd33e0047fa2374ad3dcb41e46ae1d18fb942a6de
MD5 89d5160bc6bf2dbda57ce88559eae0fc
BLAKE2b-256 6ef0f616dbe0229406c3add4b595b9017713d9355821574d0242a6bb27f1a910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 98e05252bcaa1f163bee16cf38fb0ba1956247ff92083ff8b5069fd0a0182c3b
MD5 29674052f5296e9aeafe13ed74060103
BLAKE2b-256 9d1dae22397525137ca6f18896ffb972e31ec0c32dd698f748575ad6d73b2279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e5454ce1423623c235f8cc90c476cc60ef997677e9b8647634b6cede866a61e0
MD5 2b4ab5be748552cb0e8ea98f6be72d6a
BLAKE2b-256 33e91f5827e20cf52f81dd9de01a53db10038decc81e4456b5870380c0976f93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e18709828fe9ef0eefe4460a5d5e7544e0dbcab4201eee2ea1c56e2ed32a37f9
MD5 8ead0e2cd09980071d2fc736cddf8882
BLAKE2b-256 0d5db452844645b680cd3c2aa5f9f1eeb87e1f8e0a4d4b4755d2cfce0bedd9e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp39-cp39-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 82574052f0aa30e675d046aa3e75a1b4f6bfcfc68fcf47826b9f2ba8490d8b87
MD5 ae82ea5855723dcfff25048a377e2d60
BLAKE2b-256 94d5028382875add856b9c5af48d64e657661d6bcd892c7eafec9f97d30cc008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f73c7b9426096ae0b7d1faec0747d3da901b9c00109ae87c9de90cd989dd5449
MD5 052778f45ef27071b6fca79fa9b45ee5
BLAKE2b-256 ffdd0308a9095079f47e9a8519254ab5f09ae7b883935e2eceb9520ead0f8907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f79368b37bf8e4d76ddd3fc9c3a890f0553943a252c3a22224bd6a14dcfd3313
MD5 d2b3dbebb1ca1a643c96c58382331161
BLAKE2b-256 6252120896ad5d3df666d5b415e64da8ae112359a382dc615427eff1bb9fe7e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: robotraconteur-1.2.8-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for robotraconteur-1.2.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9c1dd17eac2d535d241a5b3f511d85164aca4fbdcc6b994806e567512cbba679
MD5 46e120f8a407ec798f5dc9b0bbcfd5df
BLAKE2b-256 4e51c4e53b66d7418f8eb71ba6800fde0785fb1e0206b7583178c8facc159059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp38-cp38-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 c5adaaf2bd33257662857b78d9a5688af253dd9398e30af35c1aff89f9b4f0a8
MD5 b3910847a5867275b30bc090740b245a
BLAKE2b-256 9899f985f170096a65a0cd7e97d42080b70ab394557f595422925a37d77373d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp38-cp38-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 891427a43357d30e3acac9bff082fed716ff41dfb14517c0031b310bd684c2f2
MD5 9382a421261ce543a20b22de65217aa2
BLAKE2b-256 0db8cc9241b7335458fd3f9094b6e4f653a948e0c550cfbc7c0e42034c409b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 0f09354b5008a348843002b5b87a53d610f69e92bf13148c3add205be40dd89b
MD5 1f30b9afcbaf20fada79cfa475c2886f
BLAKE2b-256 ef79ec11623c15b9baa4fdfd9b1978c6b50be114749f08ca0359552664328040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2f31eef9d33f1e4be64f8a720d47b5b6cdcd7fa2baccbd119f87d38e164b25e2
MD5 2dbb9a41050d8979cd90f3b4dc56d6de
BLAKE2b-256 293d6d379a6368e679b9760e3e93ded7e537fed8e35443dac3c0a4e4dc74c38c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: robotraconteur-1.2.8-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for robotraconteur-1.2.8-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9e5793730f019a4ce0a023f22519b58726022953352b42bc4416bbfc7dd23277
MD5 b393e2ed5cca856ab3cbecac226e663e
BLAKE2b-256 05714df60f5c0c79b8947384f81c6abfa75016995f2f5aab515c52330ce713e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp37-cp37m-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 60dfb01a28310c8575671537a12a731ddfc9e5060000e72bb57050fc39263e94
MD5 c31e9cd130ddbcc84b3cd6848f88d36f
BLAKE2b-256 35d7cc37df58faaa92d3cd3771f59c1b60a002d39327c71913a4566c15ea2033

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp37-cp37m-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d8cab878167adcd9dc3ac9f70628baea6c9ab8c9a51abb4ae5b9f91bcfdc0b8f
MD5 10ea3c3d0a9c3f223aa78de96ced0929
BLAKE2b-256 0ea4dcc376e9794d40a7337fe180a5a3d50c836097b857f2ba42c5a7d281b605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robotraconteur-1.2.8-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ed52644b388a3ad460c90fb3c64e553da15db1c0dd87fccb22070944cccdf250
MD5 1f62e88e6e6f0c4a9ba00d9f7ca00407
BLAKE2b-256 7975f5afc64fc2a95845c10cf34382ba426e59ce80703d4553413f2af61462dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: robotraconteur-1.2.8-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for robotraconteur-1.2.8-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1cc286f6deac53991ea3cd81f8bfcee718c7b36cd70adad5c2792cb8086db22b
MD5 ce384e77a7bbbd4edf06aa9a7e1e42f6
BLAKE2b-256 62f4f9c04bb468b98a71d0cc9f91add09d1b325668d6b40c58a772ad0484e620

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