Skip to main content

Package to communicate with Dynamixel motors.

Project description

Rustypot: a Rust package to communicate with Dynamixel/Feetech motors

Build Status Latest Version

Getting started

Rustypot is a communication library for Dynamixel/Feetech motors. It is notably used in the Reachy project. More types of servo can be added in the future.

Feature Overview

  • Relies on serialport for serial communication
  • Support for dynamixel protocol v1 and v2 (can also use both on the same bus)
  • Support for sync read and sync write operations
  • Easy support for new type of motors (register definition through macros). Currently support for dynamixel XL320, XL330, XL430, XM430, MX*, Orbita 2D & 3D.
  • Pure Rust plus python bindings (using pyo3).

To add new servo, please refer to the Servo documentation.

APIs

It exposes two APIs:

  • DynamixelProtocolHandler: low-level API. It handles the serial communication and the Dynamixel protocol parsing. It can be used for fine-grained control of the shared bus with other communication.
  • Controller: high-level API for the Dynamixel protocol. Simpler and cleaner API but it takes full ownership of the io (it can still be shared if wrapped with a mutex for instance).

See the examples below for usage.

Examples

use rustypot::{DynamixelProtocolHandler, servo::dynamixel::mx};
use std::time::Duration;

fn main() {
    let mut serial_port = serialport::new("/dev/ttyACM0", 1_000_000)
        .timeout(Duration::from_millis(10))
        .open()
        .expect("Failed to open port");

    let dph = DynamixelProtocolHandler::v1();

    loop {
        let pos =
            mx::read_present_position(&dph, serial_port.as_mut(), 11).expect("Communication error");
        println!("Motor 11 present position: {:?}", pos);
    }
}
use rustypot::servo::feetech::sts3215::STS3215Controller;
use std::time::Duration;

fn main() {
    let serial_port = serialport::new("/dev/ttyUSB0", 1_000_000)
        .timeout(Duration::from_millis(1000))
        .open()
        .unwrap();

    let mut c = STS3215Controller::new()
            .with_protocol_v1()
            .with_serial_port(serial_port);

    let pos = c.sync_read_present_position(&vec![1, 2]).unwrap();
    println!("Motors present position: {:?}", pos);

    c.sync_write_goal_position(&vec![1, 2], &vec![1000, 2000]).unwrap();
}

Tools

Simple bus scanning tool:

cargo run --bin=scan -- --serialport=/dev/ttyUSB0 --baudrate=1000000 --protocol=v1

Documentation

See https://docs.rs/rustypot for more information on APIs and examples.

See python/README.md for information on how to use the python bindings.

Python bindings

The python bindings are generated using pyo3. They are available on pypi(https://pypi.org/project/rustypot/). You can install them using pip.

pip install rustypot

To build them locally, you can use maturin.

First, generate the type annotations for the python bindings, by running:

cargo run --release --bin stub_gen --features python

Then, you can build the python bindings using maturin. You can either build the wheel files to distribute them, or install them directly in your local python environment.

To build the wheel files, you can run:

maturin build --release --features python --features pyo3/extension-module

or, if you want to install them in your local python environment:

maturin develop --release --features python --features pyo3/extension-module

See maturin official documentation for more information on how to use it.

Using the Python bindings

The Python bindings exposes the same API as the Controller API in the rust crate.

You first need to create a Controller object. For instance, to communicate with a serial port to Feetech STS3215 motors, you can do the following:

from rustypot import Sts3215PyController

c = Sts3215PyController(serial_port='/dev/ttyUSB0', baudrate=100000, timeout=0.1)

Then, you can directly read/write any register of the motor. For instance, to read the present position of the motor with id 1, you can do:

pos = c.read_present_position(1)
print(pos)

You can also write to the motors. For instance, to set the goal position of the motors with id 1 to 90° you can do:

import numpy as np
c.write_goal_position(1, np.deg2rad(90.0))

Then, you can also sync_read any registers on multiple motors in a single operations. For instance, to read the present position of the motors with id 1 and 2, you can do:

pos = c.sync_read_present_position([1, 2])
print(pos)

Same with sync_write. For instance, to set the goal position of the motors with id 1 and 2 to 0.0 and 90° respectively, you can do:

import numpy as np
c.sync_write_goal_position([1, 2], [0.0, np.deg2rad(90.0)])

Contributing

If you want to contribute to Rustypot, please fork the repository and create a pull request. We welcome any contributions, including bug fixes, new features, and documentation improvements. We especially appreciate support for new servos. If you want to add support for a new servo, please follow the instructions in the Servo documentation.

License

This library is licensed under the Apache License 2.0.

Support

Rustypot is developed and maintained by Pollen-Robotics. They developed open-source hardware and tools for robotics. Visit https://pollen-robotics.com to learn more or join the Discord community if you have any questions or want to share your projects.

Project details


Download files

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

Source Distribution

rustypot-1.1.0.tar.gz (50.3 kB view details)

Uploaded Source

Built Distributions

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

rustypot-1.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rustypot-1.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rustypot-1.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rustypot-1.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rustypot-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rustypot-1.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rustypot-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rustypot-1.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rustypot-1.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rustypot-1.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rustypot-1.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rustypot-1.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rustypot-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rustypot-1.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rustypot-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rustypot-1.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rustypot-1.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rustypot-1.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rustypot-1.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rustypot-1.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rustypot-1.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rustypot-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rustypot-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rustypot-1.1.0-cp313-cp313t-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rustypot-1.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rustypot-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rustypot-1.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rustypot-1.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rustypot-1.1.0-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

rustypot-1.1.0-cp313-cp313-win32.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86

rustypot-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rustypot-1.1.0-cp313-cp313-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rustypot-1.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rustypot-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rustypot-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rustypot-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rustypot-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rustypot-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rustypot-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rustypot-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rustypot-1.1.0-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

rustypot-1.1.0-cp312-cp312-win32.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86

rustypot-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rustypot-1.1.0-cp312-cp312-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rustypot-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rustypot-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rustypot-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rustypot-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rustypot-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rustypot-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rustypot-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rustypot-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rustypot-1.1.0-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

rustypot-1.1.0-cp311-cp311-win32.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86

rustypot-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rustypot-1.1.0-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rustypot-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rustypot-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rustypot-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rustypot-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rustypot-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rustypot-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rustypot-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rustypot-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rustypot-1.1.0-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

rustypot-1.1.0-cp310-cp310-win32.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86

rustypot-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rustypot-1.1.0-cp310-cp310-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rustypot-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rustypot-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rustypot-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rustypot-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rustypot-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rustypot-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rustypot-1.1.0-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

rustypot-1.1.0-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86

rustypot-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rustypot-1.1.0-cp39-cp39-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rustypot-1.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rustypot-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rustypot-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rustypot-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rustypot-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rustypot-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

rustypot-1.1.0-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86

rustypot-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rustypot-1.1.0-cp38-cp38-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rustypot-1.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

rustypot-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rustypot-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rustypot-1.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

rustypot-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

rustypot-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file rustypot-1.1.0.tar.gz.

File metadata

  • Download URL: rustypot-1.1.0.tar.gz
  • Upload date:
  • Size: 50.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustypot-1.1.0.tar.gz
Algorithm Hash digest
SHA256 ae75191e7c2558eb3037cb22256ba9a90349c848815ff55d8a5b9ff8e366e984
MD5 54ee1bdf24bebcf6a6a5815576e46590
BLAKE2b-256 7132b55822399ba7ef8e77ad84c162021e6537855f3bcba1dbdee522d777b0b1

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32623e118af4435642e4ffaa214e7c6115c862ffbe15e99f717a9957ca3be04a
MD5 3e8d24f5149531d7ca8cd46406e3da4d
BLAKE2b-256 27ab9e5bb5bb57e2301943010eee33d0368ec658cd647a827934e1c8ae86f44f

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40d4fe057057b170a4498927205c471274cd719e8e24b218d010aeaf6bf767ea
MD5 dbef8ad3b7ec8a6514af5885ceee5b27
BLAKE2b-256 cb9ad590448ce06c49cad8e89d7f6459dd3fe175b6ab0b88107dc0c8667c545f

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96b613a6d0888024d071624ebb7496fa62242d7b498f8351f223c73551121906
MD5 6dcd085a40dc4341b23e39f224807670
BLAKE2b-256 7d90da83ecfa21f8d911e817df1ae1e0023a3b2af8a80ea86c8f303dd9952f21

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b8fe1fa6a3bf92bdd54cf2329a8cc2159bf07edbefe8522282099fe963fa93ed
MD5 fff921dbd23570ed76c2b13a18379107
BLAKE2b-256 c3dbc79ea73bbe4e68715bae315ded5a98adc49b21165f6ceb31395850baa91b

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0de5cf427a12e052b8dd77cfbfc7c9c7fdb1d0f39c4308eaee004aadb595402b
MD5 92ab68004e5811a4b6faea384b01b863
BLAKE2b-256 98e18e36956fffa5616ddd3ff36bbf3541e548ce73e2bdcbce8a31b30eb43e70

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e24c046da2222e2cf9f7cf9b2c8001521d242aed0f9daca498e846c8e1da1834
MD5 fc2fbe674f00d7bc2fea7dfec16cc0ae
BLAKE2b-256 10543f08609cf22f4ac5c88ed3b45f81b0a0cd00a663e1f40b3c0a4c81bedd45

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a5389b265408d9e12920803a10dd3bdf84971e474134bc74e49a4ae83b9e734
MD5 dcad54da7c1aad65bb611fccb7a99ffb
BLAKE2b-256 1e24e6cdbade7069de1396ccc0da835b8b0b227f6db95d565909b8e0c94213a6

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f5101ab3ea68375ba9fba551a3463d07798bd69bbb6ac1d718a0bf14d9a859d7
MD5 0470deca29a2d879ad8be33d31bad992
BLAKE2b-256 0b1e81edcbc9aa3e53576c96b99f1051b34cb0b8801b3bf667f7b78d70dc2c9b

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2694e0965494fb674daf9cc3ba2fe98b056f50d4f88731257ec6e1cb07b8e31
MD5 2f2725847b571017c537e6f9c884ede7
BLAKE2b-256 3c5d7e556c8a13e8b9ace643b80ff1e00ace76225021b95e812751f4530e1a01

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 001b819dc8e233a53aed527a038a4b7c07966e05a455e4017a65b8840e0a574e
MD5 44c6b3ee719e6e6f48d714f2a473fd64
BLAKE2b-256 737627648c3c33ad1e11277998577c1b9c8612794bff0d2f0f64c7d2a01a45be

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f829f1b56d26424a2aa6e2c0dc39bb1e6e7cbda1b21b2bdfad4110fbb41b1645
MD5 20774a9a39aa1567084eff6c0b3b05e1
BLAKE2b-256 30e2434db020205324abb35dbf859c120db7e39898690062a5829390f089ab1f

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83ceaca948507b2b2153104f07065980fe0621fdca40cf676c5dc018412cdad8
MD5 cc51854a079a06c78010836d061c3ecd
BLAKE2b-256 672cecdecc0a644db3d2abb08a2ac48ab9ef44cfe35b7627a9e15e739e38d781

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 882fb6442c6e06d7b973d69657f52e7299bb90ebf334449219c80452e0e399c8
MD5 4a6fc67f12de31216abfd1f81c58bcd7
BLAKE2b-256 f482c02f47528b4aedb408753ff12a2a42b2e0c7ccc778c649f7e11e68afe6e3

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 318c94c39379f2b55ae6b8671c8f488538c01c34cc0bd38ce152b5ccc56df9cc
MD5 ecc15b1ec344756830b6023e191ac8e1
BLAKE2b-256 87104a53a1a176076e5fa55cef9c57ee810b447276da01608f1db59d097315c6

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f1ab1bf9198aaa6ca3a1addf68a5c57ffcb153038521a6555d6e38f86b95686
MD5 9abba65d8bc7686875e79145539f5eb7
BLAKE2b-256 e986bd3a5ef7eb4769893336c0df323ddf2376052f503ea255e49e39dd40ae94

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ff828e38031225bd8bd8456bffb0a6a65f4737e4831f5f6e1484b4ece9d75512
MD5 7533af02c0c80c0491a3507e4333e2c6
BLAKE2b-256 7b74e401bc2ba38923c1d26892434bb7e56a289ca6192fd697d3f7788fe6898f

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a1126b66b634e839e54d65c0ccc70f2dbf77d88a336eea8a45971486079215d
MD5 e546a36596068ae23be5debaaa3cd894
BLAKE2b-256 bc1ba5475d24b70842c0796b4c6bc30137947332330fbdfc83c2029517de47d6

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dcf143d2d8e86adcc8a7f252732665b5ed8e03cf6dcbb1b3f0e2f4b7c861243a
MD5 f265262e66a57aeeb790dc43d1156686
BLAKE2b-256 2787860f34898b4d3c7d701d80c5c0fafe793af8589e43b993cfe853e9721250

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 380619f22139a0437e5b78bf2b620a56c1c5358d8dfb85a9e0cc029b56806896
MD5 a8ff1fda5488cb5b5fec13cdb57d3f2d
BLAKE2b-256 5fe599d64b35599680c9bee00e749ff8bc387d7406630aa85d27c151f6463cc5

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f210c2fce41525a04a9ed72447062e634548bbad73fb54bffeecbc9360bc72f2
MD5 e12dc77a079a19e85921481b95d828de
BLAKE2b-256 b20903655ad772ae2c2e68f93a6e24b8b7e0c7dc321e66d6da259d66294b9979

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4338b0ac40666d9d56ecad0ab04c6a5e37d5a4a614f457a4466a21e04988a28
MD5 78f69a94a8d9f8db629d9a55a575bed3
BLAKE2b-256 5595d08337c9ef9e9ae0e70655e4a512149f4a23783fab11d44a1883b518b886

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43d2ee94029bce2d9e4d73af2d824d653d5519e389a77fd9cfc691dc98453659
MD5 e7e0148e9654cc6e5b02be6bcd2c664d
BLAKE2b-256 08de094cbcf1ac0995a5cb19ec9ba71f0d3e0fc26b2d2ebccae52d851fc91f21

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4a3600cd0f8e0908e8204d3c3f482fbca4db7ce3edf8bc19836d45c8f67640f
MD5 e49b76ec3f36f8649849f701fd87aeb1
BLAKE2b-256 1badc1de7e767ab7e8d43e96a59ae0ea0220969899de79ed1e0680295410ebaa

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 384ec6bc093f593e5fb5d1ca151caf190ad366c36b8b5c5cbed479867409420d
MD5 deb1f57aef4a7369c31f15f99c9898ce
BLAKE2b-256 d48008a3943160d7d0705012aa02527171e2717a81d1dfe29da20196d5f78217

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 74a160431aa133cedf1dcb1ae70b6c0d3b87b4a562e136842a5d9d641fdeec51
MD5 80a86a992e7ce77a446dc8c84b4e2d57
BLAKE2b-256 2e3445c5555a17d905da715c26af8e40226b7f16a46aa6b20ce8d92711d8fcbc

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19759d08534bfd83a8ae036e80ea93b8244379ca437d530b0162e623d7c6e149
MD5 04356d12232fd2a922f9c7fb5140b2f6
BLAKE2b-256 9c0a4500f24b424a7edfcfaecc725286e820dc1ebd4dbc1a8eedc83c2895975d

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65a1a045f60ae10f6efbd4c4246e632638bbb93f2372f976608037a998e9842c
MD5 e01471c2a6fdcd62917ff0adc6cc2227
BLAKE2b-256 64a15afcb051a6956d194a76218fd7857a95fae53c441f60da2f4f73dd926058

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91d63b7f3b19fe1f3196b39cf6516f124de4750d9c398b1b97a0641ba5d4354a
MD5 e2b8f6b921a510fb819632e8c768223a
BLAKE2b-256 2f1b007847d07aec3de64f88206bf5212b992afa396657bd94c7b37c03384501

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4feb31dffc03f80ab9bf09af73de4441999eb59201ffdba10f773716d2bac341
MD5 9d9d113056cfe48e3c339f7e94040dfd
BLAKE2b-256 7885dcdac3495ae1229eb1c4677e48a28d9e4fbb542c5055a9f36f0e831d3a61

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: rustypot-1.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustypot-1.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d9081defb5e0d2956d27c144fa918e36658535933e7d1d9c9eda7ff7ae68cfa5
MD5 47ae4caa5058df582d4a7fc29548bd4f
BLAKE2b-256 4dad75dd67e262677c90c3e9a776bbba57fdbfd888652b1a8a522ab6d46e84da

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbd42a1cc5f1c3525fd45115596f532aae9380399c026a609a3493fcf134c7c6
MD5 a3f04f28e5dab3f69c803944483bbf01
BLAKE2b-256 e9d9d95ab863ec1749e05aeb9caede814443c69e2e058643adc629f088304cee

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 985a537254e49b6a6ca3a6288abca67d6ca19fbe44eafc52a7061e30a4af894b
MD5 3bf0f4a225d156b4e4bf5a43eab5d789
BLAKE2b-256 9b5ce75e24695929605be2e13e95e790113b0235fbfa03238e94446ae4259727

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47c7c98a3e6fd1952a5b4c7505e94529e26c8b5934b822e332c012e81cbc657e
MD5 153f8ce90c8489423bafa4908d7092d4
BLAKE2b-256 8e79963c3a81d9864f04f2c66cc5eb5c0ed75fde4ba6910bfbf18745eb55b579

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b41b3c975bd48773a941852749ad54599cd19106beda7e64e0efc17dc0305a9b
MD5 1ad069008efe7905a21b40c6bd506382
BLAKE2b-256 4d1a48540328eaa2e0de9df72cef2f935e885f2dfe4df0a26843445f428a20a7

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60ed08d6227b865d4851697f8b4ae6789e777f6d9ab0831fbba09a5c0d75f8de
MD5 b2ac1348544c6698e42188e1bd93d846
BLAKE2b-256 7ff0211fe209cb4e904c7805e9a2603a32b920be083992a0f3a2ae8708a840a0

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 28800af8d39336d2746e8ff2728ab7e6f7709f9ae97a0de4bfe541fbb00ac095
MD5 0408e15fae2f9e2d3099bc56d6c8747b
BLAKE2b-256 79ba115d40c47773fb3043ec2ba42e8953af144362b81b8565978f3781b70d75

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07518c558d3bbbd3e3e01af14041c5dd1fe2f0b6b12f5705fcd0f2e11b53a209
MD5 a8da42fd29262513dbc552af7191beda
BLAKE2b-256 8c5272a0a25e93eb42117e389a2826f8845ae52042bbed57db6090f36a4e362b

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c64972ba36e96c5761f432eff2197a60bfda0d337de6d788808438e0dec9788a
MD5 900ca8deeb21cde58f62f38c7b1e72fa
BLAKE2b-256 45b043f77cd87210f81180ddac15472e9a22ba2ff8ba9eb955b9e62d89b8bf60

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f77a82f97b850e817bac683c51260f96d561cff29078bc87f7305128c30ef424
MD5 d14ef61ffdb14eac886558e334c88a45
BLAKE2b-256 85efab29527cd057a1dfe934a7bd6db4e8b594686c7ce7387e48ebb1412756e3

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9fee8256f2a84309ac6b6ee9b753388e2cd8fd0b1978a1878a1bbe15ddf4cdaa
MD5 1dea9c41ee794f8e3e5a85d1c4ca6fa4
BLAKE2b-256 ce0f211e291268c63cf3bd9795a1951aed31e85d74e3142f4779997a75521f7e

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 32640266360889cfee179f8f55764aef5026e741090e90fe118d3d9b7e4cff53
MD5 be13da66312b955a65f70a047191c1a1
BLAKE2b-256 274315a3dbc580afb3a0758d8244d328a8ed11134e34e63bba5379e9f94e4169

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: rustypot-1.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustypot-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1341bc78e79d6f1199cba641aa06e99939cb92599f1c73114cf63018650c72a4
MD5 35fd6b3ce5a45461ab8734f953063384
BLAKE2b-256 5ddfb6a9ce5b2a0a6c97d793b871c8fbeb89f357f54cfc392e9debce213202bd

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d48992997b0ce4ea3af905aff83da898aef1827ebdb73cc9e19e478d07ea49f4
MD5 6d9752b33057a211e787a3ef3fbbfd6f
BLAKE2b-256 ed0ca01a774f26b20d39946713fbbef8c34f7566ad8c5bdb1615c9bfd82641f6

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 415f21379e007b9ff16f757a1451fc0a1461fb32fea9d0952ffd4005f88d70be
MD5 450dbbe52cc4a99ceb19950b0b8fa67e
BLAKE2b-256 61ffb8f3cdda3b834aced7c94a2f195d88806019245420cafd0fa8ff9a70cb56

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d78124644130db2d04a26fd890c3e38ece164644bc7959bb3f0d1c58f020079
MD5 20c8c74067aaa9da116a2aca49fe5ddc
BLAKE2b-256 c1b3a62946776af896fe92b1d966f51edba41bbbeb252001e48c9d80c3c4c625

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76556437b5c7e8362688e94a2800a85eca0b56862b1fa7fb201b8d5bac07709b
MD5 6d3bf387bfbee9eb83a740f52044872a
BLAKE2b-256 7cc3391fffb85fc927ae175d9ebac5ba74a9132049606b1f8a64a3c131ad308e

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3e0cc8e4b2abfc49ace2646c307aab9c3dce4c1a52b36343889aa56cd789686
MD5 bd3a20b9652914930d96755b4ee5cae5
BLAKE2b-256 119d0275e31ee40244203a164f212ab4b031089a1dac44cc7d95388f3744186b

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2723388a7ffe848d7748258991861576c33bd54b3e17e858729f1e0aa62d506b
MD5 0654742b778dfc45e8349670867bc3d8
BLAKE2b-256 cc0d18c2ad52be0f736c6286add826a4b907fdcf14494b4b9e89bad116cb4d6c

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2df12d2b728f36a3e7b965ef724f128767352ffb42fe212390975cbaf467852b
MD5 aff6f3dfc8922ae078f005ce553511cb
BLAKE2b-256 be44b195adb090f1e2409c88f56688d9ac9becc89ac62b01421fe26be385fe5f

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0ad6426b928343cf2c20021e2b84b5dddc35bb493c5332ad04f3ddd6e5f9a80e
MD5 feeac6bbc2f5068a4fb1527ec31ba022
BLAKE2b-256 4bd495f34f63bcb99fc50e49539daea2213e09e76a5343470e940ba8966be229

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4db96cf843fbffa61f49581e2bac3e423f05c883f95426983f401df50b4c45f
MD5 27891b01c1c17b3d80b6c15ad07ae605
BLAKE2b-256 c100a14e57a67c4e04bb0e2885ac34da745f5e942255a37ec2f4913f561bcf9d

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 58ab6b0648d3f72a0b8bc76eb2ae63259dc94e000cc7878ce9d48da350acadde
MD5 8dd81fc3a46ff06a0d6cd805c8a9ffb7
BLAKE2b-256 f3a3b3886d82b8b32b176b7a50a2841a64e8cf0727e990624da95f1c2bfe00dc

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c410002dcfa890182709bcc48c15dd2a580a8e9c8e663564e8e147ab99783f65
MD5 d67d8e500d30cb0adbfa7302ad2c473a
BLAKE2b-256 88d788a36258c34dab8de3fb4c275c0766021b2ff57a0dafc954536cbeec81f0

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: rustypot-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustypot-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d1954dcafaa6dc59589fd7419221746df16af7392cb04141096dab9edff27427
MD5 7c3fcea83cc10524ab2abd418184cb2e
BLAKE2b-256 665a21328220c202debed194d9752beda3672815dcf9ef97f49c3dcc15dd2e90

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b56bceb7fb71225c9a087f6f1831174735973198d881b8a2f3bb35cf52ac614
MD5 96302689cf5b211d5c5e6a676f2a4eee
BLAKE2b-256 6f5e255e11f7aca92e1b2be03a83b3d3ecdeb1eede3e616a099acfe95c170089

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4bab60468cbd3f763dfa20d1e8e27576e288f438b93543ad489675b8dbff1a0b
MD5 4f6d4c559e6a0b19d5d21fb643e5acb3
BLAKE2b-256 26f73c86611235828328c67eb820791edcebae81f5a84f9783edd029c1e1b8fc

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 355833f1cad9de00e3093898e8f8228d55dbcb534216221e244776d3f2dc1df7
MD5 b3757c629df9a67136b1b38d7b95653e
BLAKE2b-256 a04b69d96563ae52896adc504eb4a3ea0790e1bdbf4207b50b169acbffb5e0de

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b7e43edd5c5d8d7d6bb01ef70235243775cca24258bafa2b4ad19e17bc70fb1
MD5 2814ccdb7e4382f5da5a0dd683fc3f08
BLAKE2b-256 f84a4de4474b967c409ac2b221da2d0ed1ab4b32a16ba7cc7fe068f5921e5c17

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d859353244b55263cc2a9b0c553f4c586bbbef19ef84bc33003de702cb4026f
MD5 01577200915e3fb95a37e12bc48e63bc
BLAKE2b-256 f7b19e29b0752d19cc9ee0d5de4b9f7935f194abad7fd1522c7816b191cfed9d

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4732278eb134042b1db3b1e1470d1740676e0fae2dcc651dc3fcba3d4e767003
MD5 1ca739ef971b4b929778e5ea05ed12a5
BLAKE2b-256 71c51076a435d6848677f7c1796553093b0e6c73ca9fb442b5f772b33ec45f53

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7aa29e3af1e9ca2645f81f8a2d33fdd608487443444d0172cdcf5affe85212f8
MD5 21f13ed6f2c7259929e2ca6765c21267
BLAKE2b-256 a40262ef9130f08d00874f6a0ce2432c6bb1b1b7a3991b9b6bee6b9a6fbffd83

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 badf614e493ae04ee1f8aaf7733e4fa845ab46dee0b1ef4dd826fd929012a411
MD5 dc3b7c07143b61ccc2d3fe4d387c2d1b
BLAKE2b-256 5736ae9360319fb159cc422ea4e86c669b76339a9d7b3d8716d2dad132c6ea68

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff08bd888f57361f96370a78b6e0ace81a7735b1b47d8cc4eaa278f8a13e7317
MD5 d309ef1895b49faf2b2980358bd2ac9e
BLAKE2b-256 fe33d0065080b3c1289d06102a41d23cfb02ee091535f6155aeb13ebc2950141

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3bf9292507bc5b70fe4ed204c16dccd40ddeda1c594797f7b30ddf7de8d6ab6a
MD5 7c016bdc3255503ea613cc6b8c645120
BLAKE2b-256 dc77dc5450874ca8ec7b335d6c51666df2cff2d1c9156cbf7016c08c55d4fae5

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e2b91ad4830fb8dcb2fcee048923b82cf8d6673811e4979561ebf3b2bd845332
MD5 907244154f3fa058931e8cb34bcf1a79
BLAKE2b-256 7199cb00b0634faa3637208bb7274cc9b05519943587d89b1dcddc8f4b9b26dd

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: rustypot-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustypot-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7729a3190de70b75e52f61f9c1649c74bd9d346e6b5d5aadecb73f8c55feff4d
MD5 af6fbedc8bd09fa073a106c0cc8f06c8
BLAKE2b-256 8a276d0eae8a08e643fe02a9ecc0726728ae0be6725aaf780b9a83fae475e0c5

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f23ddb85e7407a30599f313e6d521c2237c2e5e3dfc6e3f28d7639156d5b9fdf
MD5 b2ccaf891f206e7587b396c085f0e4f8
BLAKE2b-256 baee119704558fbe00174ecd5736d923f8753b5a6521969eb42acef9c8a90c9c

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1bb16229b612c66705ebbd6ea224bcc6de435ade481422fd0b5a6179d52002fa
MD5 0e1e8ca38dc9a72f837fb57537596228
BLAKE2b-256 b375302382bc9008167d57a217dc35ffa215fd68c334d2fe3f20e1082c425f96

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6cec22dea3a52d98ef42a33bd81af0459f638489a32df9dbb62800c06db219f0
MD5 a5c65b6ec96b4a82fde92cd2a870cdbc
BLAKE2b-256 a96d38bac7ae664c359e3a7f7db4244d01be5f71ae77f2cceff71722c4dce1f8

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78561fe18217726492e9dba5e3e2e9a6f3ea442c3f1948c66d2290de6a3babb2
MD5 7ac99ba1e2614a5c58a8d4194e7d42eb
BLAKE2b-256 7d80961c3b2332b7567ff2ee3bf9bba7b04480727cb80e7f79d98cfe32df5269

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de1d287244603d9bf02395d68aad3be4397e4ee14ebdfc9b81f1cf7f044302a5
MD5 365093c3e18cf22ce59cfda34f298c7a
BLAKE2b-256 b0b07a0e579cbd17a96c0afde6f9095912ac41fda94e51156de9950eb76ffb64

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4812b281eec69c7364f9655127fd74459810250951a9a13bed6503089d753671
MD5 8a5d58d5c79ca7074c908c2f5843ad89
BLAKE2b-256 30faaa4f7a7c6a7aa63fff64dcf653ba0c67c7ad579d69d2f22f9e6d48f24855

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e4ce1676df23b6fd3db426b1b1b8c2e8ecc15a8be994196d9f464fde2d69a89
MD5 a374a2f22183c0d735ead39a2b1a781c
BLAKE2b-256 d793d337cdbf90c37107a48aeb18c9b6878b208ff1f4028011954041e7a85a8a

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8db32e77ecf917fae9c4947f9bb4e1a5a99c74744db34c479840a6c8112eb65
MD5 85a41f23eb6379a5bd6a22bbafed3eff
BLAKE2b-256 0621283ff9daae0a80075b91c7dedc01e3eb78e7c82f06f17befe16d93839d9c

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rustypot-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustypot-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d789b374a9849bc6e8715088f6cf9330e0f5ab617432d6ebc4dc3e7a47bad9f3
MD5 f998195be183aefdd9217eb3c799f7a6
BLAKE2b-256 11f009708b6d50a6f394f6942f2fedd1115e59a8602cb5f2140fbcf42336618f

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: rustypot-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustypot-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c5ef5508a5bb92b08afc0e298fe0e929551ac9b73c3b88076d00fb6cd1d14a86
MD5 55268b0f3b05936661e244dbb163a19d
BLAKE2b-256 e226bd51d033585c78e409f83bf23465b7b51f87ef873363d5d670c2149ec8d4

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a612e5c8df853cccd81f264e843150557a3655b27ca3ce795154dea2fa4d234
MD5 31a811681bc87e44a2ecc01d56c7b564
BLAKE2b-256 eee1dd42f4ce1f544f07e1d9bcf9491f36c9d90bc4a794b4f2afe5d3b5549500

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4abf18d4d70d343334cf8aad391fbaec029a460fb77a038eb31f919e7ee764a
MD5 f370a193fb0078bdb2ca1548660763a5
BLAKE2b-256 fa2c57f93821bfff70bf0cd2ffb7303084c05dbda23cfdbc783ec45b46ec5882

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ac158b0f90611df9294f2ff5e54bb0ecb34f5478f60bca043da5fbb00908efa
MD5 f7c5c19c5df9e0f1c4ac36a413b8fea7
BLAKE2b-256 6f854e249dc5611f2a04eed42b1ac390105dbf52335fddf50893a26a5c8fa166

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90291902a458558e4cd675e8a2e063f1afec384e1d0318774673ec2df1a6051d
MD5 366d4971c9d2296e0be28ff65e1cb0df
BLAKE2b-256 ea062d94f53ef9a38b63191722721375cd4ac4f323a78b42eca807fd722c7837

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76e4a7dc9ae40a4ddf83cd850365f26e732ba16eff777f2c6c8a3bbad5a06af3
MD5 949ab194ce41ab88435c63b7935ded41
BLAKE2b-256 f1160eab684d400cb005c9dc46e2d7eb9653bd6ff26d3ff78eb99c4478fd6610

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c1524b8a7ab1bffd37f6bd0c5d676131e7bcb50d724efe5a62212197d788b46
MD5 c8361850178c1b0d6813dff82e7efe58
BLAKE2b-256 674093dd2070f4c368077c7681f94f1377510ed071a3de06e1888dba8e9f446c

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57552fb17e7be3d2ccc390f26aa29fcc9d876fd0aa8836a3f73a02e954d9f96f
MD5 c179e5ade7fdb49ff72e479d17f4280d
BLAKE2b-256 74424277f0317094ad4355e051a15b137a4004251e023f96dac70f705f4c5412

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ecaa42f20a51b580cc20eb5c3ba7210fed9fe68a2922f2407e186703cc020275
MD5 8d4dbd7a94828cd372289924b11288e7
BLAKE2b-256 85a8b14aba9838a1c3bce582d5850ac222ad0daff595c4640c88d8e91bf994c1

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: rustypot-1.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rustypot-1.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 97caa1bc3294867e3ce653e7859ff300f20375a2963323e3addc17bee59912ad
MD5 4b6f555378f5b812785e3a0b48fa75d1
BLAKE2b-256 be5e45ebe87c2bcd737a0b3e76072fa88b9d83deaa5d1d9d35967a5b05b6fa29

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30674de2a801c094b067481ba3e8e739e027f11e06661dea01ab0492b3d62dca
MD5 8b65c16fd634dbc179c2ca8f09f72aa5
BLAKE2b-256 e6b7f171ae47da5cf77071da7a2b26c3c50352dfef62f8df2e6ff399cfeeb9a0

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c572e13fc06403c863008ee55c47c94fbeddb599d9e0c55285cdad9fc36874ba
MD5 5f69a391d46343124a7e3a0cc61a0482
BLAKE2b-256 e494eadce472bb236bb463503b8ce250ceee896b57e13826f611b87e79aa3952

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db4716a4db6f60ca55de59af7f874949453af791f32480723632d158027826c3
MD5 2b18cc0b1b8428957426b66208df8175
BLAKE2b-256 709bd4be4668944705fe2ac5b2a9bbace5f54192f23f3413c57e8febb63ae92e

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a46d7029334af7f8da38d14584c09265ab8ae64c3e47eff38f64bac1a5f7a18
MD5 d7e13e98d5553b38b5e7894b4343b80d
BLAKE2b-256 62093811cefd568c63616f02d4f185f2f60054efd6767065451184c9caf8a4e0

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebc3a63984e950b4ab251b07466f3eace5f61303f24221c13510e0347f770684
MD5 35d7aa45859db5e66bb66624ccc28f0a
BLAKE2b-256 bcc5958abbcbe7fb013298b870c8eef4210284cf2a046dd2f2995db2fc469278

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ec47006e082aecc40fd6fccb83e2e5c7d7ae870676aed2b6c2fad57d4366171
MD5 7feaa405bb553d52e8f09c178f9e9b9c
BLAKE2b-256 cffbd4007016b0533025dd9c48511b0b274e05cc785efdc21401a86190b27821

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5c2e7ad48295c15893f10bd62ae4da0e34ebc3fbef7b2507aeaaf07a3878480
MD5 71e8b3625787a518c9126d6460a539ca
BLAKE2b-256 abe24395f3cee332c5befcbce82b5d19e09da90f547b8bf1aad5a0af303667bb

See more details on using hashes here.

File details

Details for the file rustypot-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rustypot-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3decb14263a1e346a75a35ff34c445f5c42b6c8e9ac8bd2920588684386d162
MD5 681563e48aefd47790e66166c9e13e9f
BLAKE2b-256 c45f183d16e034eb481cc0c306a162775054052cbbb3e8022d2533639311aaa0

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