Skip to main content

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.

Release files for robotraconteur 1.2.8

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for robotraconteur 1.2.8
File
robotraconteur-1.2.8-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
robotraconteur-1.2.8-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
robotraconteur-1.2.8-cp314-cp314-pyemscripten_2026_0_wasm32.whl CPython 3.14 CPython 3.14 PyEmscripten 2026.0+ WebAssembly Details
robotraconteur-1.2.8-cp314-cp314-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.34+ x86-64, Linux glibc 2.35+ x86-64 Details
robotraconteur-1.2.8-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.35+ ARM64, Linux glibc 2.34+ ARM64 Details
robotraconteur-1.2.8-cp314-cp314-macosx_15_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 15.0+ x86-64 Details
robotraconteur-1.2.8-cp314-cp314-macosx_15_0_arm64.whl CPython 3.14 CPython 3.14 macOS 15.0+ ARM64 Details
robotraconteur-1.2.8-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
robotraconteur-1.2.8-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
robotraconteur-1.2.8-cp313-cp313-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.34+ x86-64, Linux glibc 2.35+ x86-64 Details
robotraconteur-1.2.8-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.35+ ARM64, Linux glibc 2.34+ ARM64 Details
robotraconteur-1.2.8-cp313-cp313-macosx_15_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 15.0+ x86-64 Details
robotraconteur-1.2.8-cp313-cp313-macosx_15_0_arm64.whl CPython 3.13 CPython 3.13 macOS 15.0+ ARM64 Details
robotraconteur-1.2.8-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
robotraconteur-1.2.8-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
robotraconteur-1.2.8-cp312-cp312-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.34+ x86-64, Linux glibc 2.35+ x86-64 Details
robotraconteur-1.2.8-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.35+ ARM64, Linux glibc 2.34+ ARM64 Details
robotraconteur-1.2.8-cp312-cp312-macosx_15_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 15.0+ x86-64 Details
robotraconteur-1.2.8-cp312-cp312-macosx_15_0_arm64.whl CPython 3.12 CPython 3.12 macOS 15.0+ ARM64 Details
robotraconteur-1.2.8-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
robotraconteur-1.2.8-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
robotraconteur-1.2.8-cp311-cp311-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.34+ x86-64, Linux glibc 2.35+ x86-64 Details
robotraconteur-1.2.8-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.35+ ARM64, Linux glibc 2.34+ ARM64 Details
robotraconteur-1.2.8-cp311-cp311-macosx_15_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 15.0+ x86-64 Details
robotraconteur-1.2.8-cp311-cp311-macosx_15_0_arm64.whl CPython 3.11 CPython 3.11 macOS 15.0+ ARM64 Details
robotraconteur-1.2.8-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
robotraconteur-1.2.8-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
robotraconteur-1.2.8-cp310-cp310-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.34+ x86-64, Linux glibc 2.35+ x86-64 Details
robotraconteur-1.2.8-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.35+ ARM64, Linux glibc 2.34+ ARM64 Details
robotraconteur-1.2.8-cp310-cp310-macosx_15_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 15.0+ x86-64 Details
robotraconteur-1.2.8-cp310-cp310-macosx_15_0_arm64.whl CPython 3.10 CPython 3.10 macOS 15.0+ ARM64 Details
robotraconteur-1.2.8-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
robotraconteur-1.2.8-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
robotraconteur-1.2.8-cp39-cp39-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.34+ x86-64, Linux glibc 2.35+ x86-64 Details
robotraconteur-1.2.8-cp39-cp39-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.34+ ARM64, Linux glibc 2.35+ ARM64 Details
robotraconteur-1.2.8-cp39-cp39-macosx_15_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 15.0+ x86-64 Details
robotraconteur-1.2.8-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
robotraconteur-1.2.8-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
robotraconteur-1.2.8-cp38-cp38-manylinux_2_35_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.35+ x86-64 Details
robotraconteur-1.2.8-cp38-cp38-manylinux_2_35_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.35+ ARM64 Details
robotraconteur-1.2.8-cp38-cp38-macosx_15_0_x86_64.whl CPython 3.8 CPython 3.8 macOS 15.0+ x86-64 Details
robotraconteur-1.2.8-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
robotraconteur-1.2.8-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
robotraconteur-1.2.8-cp37-cp37m-manylinux_2_31_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.31+ x86-64 Details
robotraconteur-1.2.8-cp37-cp37m-macosx_15_0_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 15.0+ x86-64 Details
robotraconteur-1.2.8-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
robotraconteur-1.2.8-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details

Total release size: 693.3 MB

Release files / robotraconteur-1.2.8-cp314-cp314-win_amd64.whl

Download URL robotraconteur-1.2.8-cp314-cp314-win_amd64.whl
Size 3.6 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
1a73173aebe70cbabd3170ba25764fbde83e8db3b9e0c3935f9ce0be3b373d73
BLAKE2b-256 checksum
How to use checksums
c51845147b9f7dcd45f6d5b3b9a7cf421ed2fb5f9050053ee679c40aaeaa6708
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp314-cp314-win32.whl

Download URL robotraconteur-1.2.8-cp314-cp314-win32.whl
Size 3.0 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
aaf0a9a3a416da0011113e7f2f8615b242e00da77076c8889c3f396a2ebb3f57
BLAKE2b-256 checksum
How to use checksums
b9afbdb50b23f09e41d6c8a52509b427d946b4e1b4b1006ed88c25a3e565c37a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp314-cp314-pyemscripten_2026_0_wasm32.whl

Download URL robotraconteur-1.2.8-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Size 2.1 MB
Tags CPython 3.14 PyEmscripten 2026.0+ WebAssembly
SHA-256 checksum
How to use checksums
20ef958f6bae719ba9af7ebd20216fc97b89057ba33274b8a9b8ea8a5d9c1d4e
BLAKE2b-256 checksum
How to use checksums
9ab6c6d061de52d4f29c3c188b16c704ff1d526d43ba19909175c436e1d2981f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.13

Release files / robotraconteur-1.2.8-cp314-cp314-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl

Download URL robotraconteur-1.2.8-cp314-cp314-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Size 23.0 MB
Tags CPython 3.14 Linux glibc 2.34+ x86-64 Linux glibc 2.35+ x86-64
SHA-256 checksum
How to use checksums
ee47b0a9aa87197b93d677f26a921eb4fa3c9c3d88e365d49904f3cf72cc5947
BLAKE2b-256 checksum
How to use checksums
af9a5e7f5fc3dbf8d5222ad5722c86571abe07cc43c8d02d0ae9be49f73fec26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl

Download URL robotraconteur-1.2.8-cp314-cp314-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Size 22.3 MB
Tags CPython 3.14 Linux glibc 2.34+ ARM64 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
ca71f216e93b292fbd196e96f77299b828827f1644890613e847af7a10e7db03
BLAKE2b-256 checksum
How to use checksums
0fa6c5ff3f7f2657c496b7593cd31b7a7f5b9bf9145f1bde1b0a5a83251518ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp314-cp314-macosx_15_0_x86_64.whl

Download URL robotraconteur-1.2.8-cp314-cp314-macosx_15_0_x86_64.whl
Size 22.9 MB
Tags CPython 3.14 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
ba1f4e614b6e9159d4c48f5512f1567338b019bbd91d346a36974b8f9cf06f66
BLAKE2b-256 checksum
How to use checksums
93bc3872b26fdb174d6c008923ba6b4cd9a1c3900860a73f8c2d9fc8ec2280ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp314-cp314-macosx_15_0_arm64.whl

Download URL robotraconteur-1.2.8-cp314-cp314-macosx_15_0_arm64.whl
Size 22.4 MB
Tags CPython 3.14 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
a3010c5745d0e8968bdf531762c8b13d5436ebc88e4be8b324707cadd2cb0d23
BLAKE2b-256 checksum
How to use checksums
463ea4f3e3a750fcf759bbbb37a8c9d560b55935d5d5e208bef28cd9cdb506e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp313-cp313-win_amd64.whl

Download URL robotraconteur-1.2.8-cp313-cp313-win_amd64.whl
Size 3.5 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
e990b487f0b14b9de4d7c844c21449feec10955faeba2da479b2964e46a01f78
BLAKE2b-256 checksum
How to use checksums
144b301119a810a77986c9e326b949b9e26ccec7a906146a198fd828bc002732
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp313-cp313-win32.whl

Download URL robotraconteur-1.2.8-cp313-cp313-win32.whl
Size 2.9 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
38b59b47db1ebaa970d51cd1ff3ad0c107ac1d4f9607ca3fe860756eec79e0ab
BLAKE2b-256 checksum
How to use checksums
dbbdb2d899f3a68f8b01094886ee30586803906359ab7d26aaed8f6407266d5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp313-cp313-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl

Download URL robotraconteur-1.2.8-cp313-cp313-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Size 23.0 MB
Tags CPython 3.13 Linux glibc 2.34+ x86-64 Linux glibc 2.35+ x86-64
SHA-256 checksum
How to use checksums
00fac3a0663af69e38a1eef7a93bdad4552d3f66e8584bca10b4288557d14224
BLAKE2b-256 checksum
How to use checksums
d61a4c730a1ec3417fc23c8a5efda960c2dfa6bd3fd47019285c62e013ef4f59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl

Download URL robotraconteur-1.2.8-cp313-cp313-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Size 22.3 MB
Tags CPython 3.13 Linux glibc 2.34+ ARM64 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
e8dd5bc72b98af5196bb5e32a43a337654c379323d7f8f473d039aadd340d07e
BLAKE2b-256 checksum
How to use checksums
a87a66dfe48d06a30be95f9ad49268c1dadebe64061410efd5dba4f0e0984589
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp313-cp313-macosx_15_0_x86_64.whl

Download URL robotraconteur-1.2.8-cp313-cp313-macosx_15_0_x86_64.whl
Size 22.9 MB
Tags CPython 3.13 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
86b389ccff02f79db38452e0e4518d4a21db08db542391d6b99cef36576e4627
BLAKE2b-256 checksum
How to use checksums
0b2285d018f30cefb045a6eb76cb3c0c3cbff9d48688a6c613ddc835b273d249
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp313-cp313-macosx_15_0_arm64.whl

Download URL robotraconteur-1.2.8-cp313-cp313-macosx_15_0_arm64.whl
Size 22.4 MB
Tags CPython 3.13 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
e529b0bd1ebd5cffddace3883f0158228a27a85b9966c9674afbd1eedce9a819
BLAKE2b-256 checksum
How to use checksums
d4271bcff7be40247132e6a017245030bca2a006cc377f799094bf0374195a1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp312-cp312-win_amd64.whl

Download URL robotraconteur-1.2.8-cp312-cp312-win_amd64.whl
Size 3.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
c9bc09d5898c518f211d8c190928f01ba0687f4580ebb5b34280b418bdee8218
BLAKE2b-256 checksum
How to use checksums
22b10479cc5dea57f82357efb70463c5b721b242e5a3c85daa1bb90ee934cca7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp312-cp312-win32.whl

Download URL robotraconteur-1.2.8-cp312-cp312-win32.whl
Size 2.9 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
f1b979cd61369b8517280cdd9d889dcecaf73626b9f49494c0a3f83da812be03
BLAKE2b-256 checksum
How to use checksums
6deb908dfbbb56a36387d55d47c55f63ef820fad82128feeb6b7175f7560d7de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp312-cp312-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl

Download URL robotraconteur-1.2.8-cp312-cp312-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Size 23.0 MB
Tags CPython 3.12 Linux glibc 2.34+ x86-64 Linux glibc 2.35+ x86-64
SHA-256 checksum
How to use checksums
dfc971a2f1748a5a017221714b1587c17f8415ca761ebbb64af54aff4ab94cd4
BLAKE2b-256 checksum
How to use checksums
edb6971ec98e689638a54fca4998127138745d9bfa8906e7bd3e81a02a44a4ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl

Download URL robotraconteur-1.2.8-cp312-cp312-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Size 22.3 MB
Tags CPython 3.12 Linux glibc 2.34+ ARM64 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
82aa45a17e36bddaa475e62ec68331cdd790271510ac0be3f26ba084602e8431
BLAKE2b-256 checksum
How to use checksums
b22a48aa85a085742f5a536e17da63e778584320fb420aa1b81197b96e158ec6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp312-cp312-macosx_15_0_x86_64.whl

Download URL robotraconteur-1.2.8-cp312-cp312-macosx_15_0_x86_64.whl
Size 22.9 MB
Tags CPython 3.12 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
50773ac5796bc30f1bf53b6d285844dadd28693aaa34f7051ebec2b0fe0acef3
BLAKE2b-256 checksum
How to use checksums
de368a0fb8f3c9080c2e7a0255221f37951faec2a72416b1d66f16d9536ed451
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp312-cp312-macosx_15_0_arm64.whl

Download URL robotraconteur-1.2.8-cp312-cp312-macosx_15_0_arm64.whl
Size 22.4 MB
Tags CPython 3.12 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
40607d258cde7d943f36c18a4079cb464bccb078dfe243df48ea8bebc6668696
BLAKE2b-256 checksum
How to use checksums
74cfedd9a34148f7ed963e5400978ede3df9fecf774a041bea56c25e94432064
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp311-cp311-win_amd64.whl

Download URL robotraconteur-1.2.8-cp311-cp311-win_amd64.whl
Size 3.5 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
cfc03d9deab86100eb7729dd83c472b520d37d3ff25a47a7b2c28651f23812c6
BLAKE2b-256 checksum
How to use checksums
0365bedee42491c667d1991e0b3131750ecf9b2aeed27f902067e8ecb5b2d533
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp311-cp311-win32.whl

Download URL robotraconteur-1.2.8-cp311-cp311-win32.whl
Size 2.9 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
954367da41a13af7a9eef781e1cdc0e3b564749479663ccf018aea5896400832
BLAKE2b-256 checksum
How to use checksums
d4ffa66b1d1c51a49b63e8b840f1e42ebf42167b9a3b916f60b555dceeccb02a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp311-cp311-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl

Download URL robotraconteur-1.2.8-cp311-cp311-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Size 23.0 MB
Tags CPython 3.11 Linux glibc 2.34+ x86-64 Linux glibc 2.35+ x86-64
SHA-256 checksum
How to use checksums
068e4bcb7e576207316aee2ab4620e97c6a042641ac843cb6b580865908a8654
BLAKE2b-256 checksum
How to use checksums
1f63f21f1b4dfbd7c96f19e9ea0548dfe01d946d7127f903e480433ba57119ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl

Download URL robotraconteur-1.2.8-cp311-cp311-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Size 22.3 MB
Tags CPython 3.11 Linux glibc 2.34+ ARM64 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
b456045a863c02201984005abe7fa3dbc1bcbceb0ee4710c7641ecf128faede1
BLAKE2b-256 checksum
How to use checksums
7d4a5dae03790d2bd4f9308b7a9879a938cebdccbfd3b48e1e7a4c394b9fea3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp311-cp311-macosx_15_0_x86_64.whl

Download URL robotraconteur-1.2.8-cp311-cp311-macosx_15_0_x86_64.whl
Size 22.9 MB
Tags CPython 3.11 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
01d24a2de136f3f7c263528ef4a93d4de4909d5901cc2584f6b227817e911b80
BLAKE2b-256 checksum
How to use checksums
f282237db92d133aa4e5356ccc6bc9c1333b17fe85ef5c418583fa491b55777f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp311-cp311-macosx_15_0_arm64.whl

Download URL robotraconteur-1.2.8-cp311-cp311-macosx_15_0_arm64.whl
Size 22.4 MB
Tags CPython 3.11 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
4cd77531b7a7e1e34a467e6de59452bedb20579e733a466476b49afbafc8b467
BLAKE2b-256 checksum
How to use checksums
876685b0cb9d7ecfe94cd5faadaae963249b342e2673491b6325f201850e3b67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp310-cp310-win_amd64.whl

Download URL robotraconteur-1.2.8-cp310-cp310-win_amd64.whl
Size 3.5 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
1376b68827924e140e06f5f46e05aee470773f9c58ef66ebadc1fc73934379f3
BLAKE2b-256 checksum
How to use checksums
c8fdd452b0c30b9d47e05800eca86217a8a39d2feebff1bd6cd44db7e0f5259e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp310-cp310-win32.whl

Download URL robotraconteur-1.2.8-cp310-cp310-win32.whl
Size 2.9 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
567e6f2571b0f87ab2cfa86514d3b5c7b136ce85f321759b9c52ef86507f4d8d
BLAKE2b-256 checksum
How to use checksums
5229d5fb3ca091200efba069879e51b0da2ed058c214e8157fd97b3e466fe86b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp310-cp310-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl

Download URL robotraconteur-1.2.8-cp310-cp310-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Size 23.0 MB
Tags CPython 3.10 Linux glibc 2.34+ x86-64 Linux glibc 2.35+ x86-64
SHA-256 checksum
How to use checksums
8b7080325154c532b7c8a52fd33e0047fa2374ad3dcb41e46ae1d18fb942a6de
BLAKE2b-256 checksum
How to use checksums
6ef0f616dbe0229406c3add4b595b9017713d9355821574d0242a6bb27f1a910
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl

Download URL robotraconteur-1.2.8-cp310-cp310-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Size 22.3 MB
Tags CPython 3.10 Linux glibc 2.34+ ARM64 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
98e05252bcaa1f163bee16cf38fb0ba1956247ff92083ff8b5069fd0a0182c3b
BLAKE2b-256 checksum
How to use checksums
9d1dae22397525137ca6f18896ffb972e31ec0c32dd698f748575ad6d73b2279
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp310-cp310-macosx_15_0_x86_64.whl

Download URL robotraconteur-1.2.8-cp310-cp310-macosx_15_0_x86_64.whl
Size 22.9 MB
Tags CPython 3.10 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
e5454ce1423623c235f8cc90c476cc60ef997677e9b8647634b6cede866a61e0
BLAKE2b-256 checksum
How to use checksums
33e91f5827e20cf52f81dd9de01a53db10038decc81e4456b5870380c0976f93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp310-cp310-macosx_15_0_arm64.whl

Download URL robotraconteur-1.2.8-cp310-cp310-macosx_15_0_arm64.whl
Size 22.4 MB
Tags CPython 3.10 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
e18709828fe9ef0eefe4460a5d5e7544e0dbcab4201eee2ea1c56e2ed32a37f9
BLAKE2b-256 checksum
How to use checksums
0d5db452844645b680cd3c2aa5f9f1eeb87e1f8e0a4d4b4755d2cfce0bedd9e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp39-cp39-win_amd64.whl

Download URL robotraconteur-1.2.8-cp39-cp39-win_amd64.whl
Size 3.5 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
a14ec3899b50f8615ed20541c92c39b004863ebd4a8e7bd556854bb56206cac3
BLAKE2b-256 checksum
How to use checksums
2a5cb69b7cccd8e5b680ff37eac6f0cb5b5b3725d394c9503dc5954287e77cd9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.13

Release files / robotraconteur-1.2.8-cp39-cp39-win32.whl

Download URL robotraconteur-1.2.8-cp39-cp39-win32.whl
Size 2.9 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
6cd056bfc0a8c3a69b01f3d6a6c780a144885c1c01172b91c17e9be3c09f4722
BLAKE2b-256 checksum
How to use checksums
62316fcbb16825c9fd19135fad275ea680ed6b66cabe9d2b49694aec182ddf02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.13

Release files / robotraconteur-1.2.8-cp39-cp39-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl

Download URL robotraconteur-1.2.8-cp39-cp39-manylinux_2_34_x86_64.manylinux_2_35_x86_64.whl
Size 23.0 MB
Tags CPython 3.9 Linux glibc 2.34+ x86-64 Linux glibc 2.35+ x86-64
SHA-256 checksum
How to use checksums
b46a79d3dae9fa116646208840e25e142c6c9eb95fdc65a6e56e3d86edca0bdb
BLAKE2b-256 checksum
How to use checksums
0d557d18adcd992f160b36ddc3aea8be99619c47b3c1654e4d53fa9417431ac4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.13

Release files / robotraconteur-1.2.8-cp39-cp39-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl

Download URL robotraconteur-1.2.8-cp39-cp39-manylinux_2_34_aarch64.manylinux_2_35_aarch64.whl
Size 22.3 MB
Tags CPython 3.9 Linux glibc 2.34+ ARM64 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
82574052f0aa30e675d046aa3e75a1b4f6bfcfc68fcf47826b9f2ba8490d8b87
BLAKE2b-256 checksum
How to use checksums
94d5028382875add856b9c5af48d64e657661d6bcd892c7eafec9f97d30cc008
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp39-cp39-macosx_15_0_x86_64.whl

Download URL robotraconteur-1.2.8-cp39-cp39-macosx_15_0_x86_64.whl
Size 22.9 MB
Tags CPython 3.9 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
f73c7b9426096ae0b7d1faec0747d3da901b9c00109ae87c9de90cd989dd5449
BLAKE2b-256 checksum
How to use checksums
ffdd0308a9095079f47e9a8519254ab5f09ae7b883935e2eceb9520ead0f8907
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp38-cp38-win_amd64.whl

Download URL robotraconteur-1.2.8-cp38-cp38-win_amd64.whl
Size 3.5 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
f79368b37bf8e4d76ddd3fc9c3a890f0553943a252c3a22224bd6a14dcfd3313
BLAKE2b-256 checksum
How to use checksums
6252120896ad5d3df666d5b415e64da8ae112359a382dc615427eff1bb9fe7e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp38-cp38-win32.whl

Download URL robotraconteur-1.2.8-cp38-cp38-win32.whl
Size 2.9 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
9c1dd17eac2d535d241a5b3f511d85164aca4fbdcc6b994806e567512cbba679
BLAKE2b-256 checksum
How to use checksums
4e51c4e53b66d7418f8eb71ba6800fde0785fb1e0206b7583178c8facc159059
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp38-cp38-manylinux_2_35_x86_64.whl

Download URL robotraconteur-1.2.8-cp38-cp38-manylinux_2_35_x86_64.whl
Size 23.0 MB
Tags CPython 3.8 Linux glibc 2.35+ x86-64
SHA-256 checksum
How to use checksums
c5adaaf2bd33257662857b78d9a5688af253dd9398e30af35c1aff89f9b4f0a8
BLAKE2b-256 checksum
How to use checksums
9899f985f170096a65a0cd7e97d42080b70ab394557f595422925a37d77373d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp38-cp38-manylinux_2_35_aarch64.whl

Download URL robotraconteur-1.2.8-cp38-cp38-manylinux_2_35_aarch64.whl
Size 22.3 MB
Tags CPython 3.8 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
891427a43357d30e3acac9bff082fed716ff41dfb14517c0031b310bd684c2f2
BLAKE2b-256 checksum
How to use checksums
0db8cc9241b7335458fd3f9094b6e4f653a948e0c550cfbc7c0e42034c409b40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp38-cp38-macosx_15_0_x86_64.whl

Download URL robotraconteur-1.2.8-cp38-cp38-macosx_15_0_x86_64.whl
Size 22.9 MB
Tags CPython 3.8 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
0f09354b5008a348843002b5b87a53d610f69e92bf13148c3add205be40dd89b
BLAKE2b-256 checksum
How to use checksums
ef79ec11623c15b9baa4fdfd9b1978c6b50be114749f08ca0359552664328040
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp37-cp37m-win_amd64.whl

Download URL robotraconteur-1.2.8-cp37-cp37m-win_amd64.whl
Size 3.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
2f31eef9d33f1e4be64f8a720d47b5b6cdcd7fa2baccbd119f87d38e164b25e2
BLAKE2b-256 checksum
How to use checksums
293d6d379a6368e679b9760e3e93ded7e537fed8e35443dac3c0a4e4dc74c38c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp37-cp37m-win32.whl

Download URL robotraconteur-1.2.8-cp37-cp37m-win32.whl
Size 2.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
9e5793730f019a4ce0a023f22519b58726022953352b42bc4416bbfc7dd23277
BLAKE2b-256 checksum
How to use checksums
05714df60f5c0c79b8947384f81c6abfa75016995f2f5aab515c52330ce713e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp37-cp37m-manylinux_2_31_x86_64.whl

Download URL robotraconteur-1.2.8-cp37-cp37m-manylinux_2_31_x86_64.whl
Size 21.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.31+ x86-64
SHA-256 checksum
How to use checksums
60dfb01a28310c8575671537a12a731ddfc9e5060000e72bb57050fc39263e94
BLAKE2b-256 checksum
How to use checksums
35d7cc37df58faaa92d3cd3771f59c1b60a002d39327c71913a4566c15ea2033
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp37-cp37m-macosx_15_0_x86_64.whl

Download URL robotraconteur-1.2.8-cp37-cp37m-macosx_15_0_x86_64.whl
Size 22.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
d8cab878167adcd9dc3ac9f70628baea6c9ab8c9a51abb4ae5b9f91bcfdc0b8f
BLAKE2b-256 checksum
How to use checksums
0ea4dcc376e9794d40a7337fe180a5a3d50c836097b857f2ba42c5a7d281b605
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp36-cp36m-win_amd64.whl

Download URL robotraconteur-1.2.8-cp36-cp36m-win_amd64.whl
Size 3.5 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
ed52644b388a3ad460c90fb3c64e553da15db1c0dd87fccb22070944cccdf250
BLAKE2b-256 checksum
How to use checksums
7975f5afc64fc2a95845c10cf34382ba426e59ce80703d4553413f2af61462dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12

Release files / robotraconteur-1.2.8-cp36-cp36m-win32.whl

Download URL robotraconteur-1.2.8-cp36-cp36m-win32.whl
Size 2.9 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
1cc286f6deac53991ea3cd81f8bfcee718c7b36cd70adad5c2792cb8086db22b
BLAKE2b-256 checksum
How to use checksums
62f4f9c04bb468b98a71d0cc9f91add09d1b325668d6b40c58a772ad0484e620
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.12
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page