Skip to main content

RockBLOCK 9704 serial tools

Project description

RockBLOCK 9704

  • The official RockBLOCK 9704 Python Library made by Ground Control.

  • This library provides an easy to use Python interface for the RockBLOCK 9704 serial tools, originally written in C.

  • The source for this project can be found on https://github.com/rock7/RockBLOCK-9704.

  • All Python examples can be found here

Requirements

Installation

The RockBLOCK 9704 library can be installed from PyPI:

pip install rockblock9704

Connecting to your RockBLOCK

Communication with the RockBLOCK is conducted via serial, either with USB serial or using the GPIO pins on your device.

Connecting via USB

Once your rockBLOCK has been connected to your device via USB you will need to find its local address.

Linux / macOS

List all local devices:

ls /dev/tty*

The name will vary depending on machine but will generally include USB in the name (e.g. /dev/ttyUSB0 or /dev/tty.usbserial-FTH9I1S5)

Windows

List COM devices:

mode

When connected to my machine the port was COM6 but this will vary, it can be helpful to run the command before connecting to see what port becomes active.

Begin the Serial Connection

Once you have the address of your device, create an instance of RockBlock9704 and call the begin method.

from rockblock9704 import *

rb = RockBlock9704()
connected = rb.begin(<device address>)

if connected:
    print("Successful connection!")

The begin() function must be called before any other RockBLOCK functions can be used. You should always check that begin() has returned true to indicate a successful connection, otherwise further interaction with the RockBLOCK will fail.

There are several functions that allow monitoring of RockBLOCK and modem information.

# Board Information
hardware_version = rb.get_hardware_version()
print("Hardware version: {}".format(hardware_version))
firmware_version = rb.get_firmware_version()
print("Firmware version: {}".format(firmware_version))
board_temp = rb.get_board_temp()
print("Board temperature: {}°C".format(board_temp))

# Identifying Information
serial_number = rb.get_serial_number()
print("Serial number: {}".format(serial_number))
imei = rb.get_imei()
print("IMEI: {}".format(imei))
iccid = rb.get_iccid()
print("ICCID: {}".format(iccid))

card_present = rb.get_card_present()
sim_connected = rb.get_sim_connected()
if card_present and sim_connected:
    print("Sim card valid")

Connecting via GPIO

To connect to your RockBLOCK via the GPIO pins on your device, you first create a GpioConfig object in which you specify the GPIO pins to use. In the example a single GPIO card is provided for all pins but individual cards can be specified if all pins are not shared.

from rockblock9704 import *

# Set power enabled to pin 1, iridium enabled to pin 2 and booted to pin 3. Default card is provided.
gpio_config = GpioConfig(1, 2, 3, default_card="/dev/gpiochip0")

See the GPIO connect example for more help.

Begin the Serial Connection

Once you have created your GpioConfig object, you can call begin_gpio() to initialise the connection. In the example /dev/tty0 is specified as the port to bind the connection to once successfully begun. The timeout provided is in seconds.

from rockblock9704 import *

# Create your RockBlock object
rb = RockBlock9704()

# Set power enabled to pin 1, iridium enabled to pin 2 and booted to pin 3. Default card is provided.
gpio_config = GpioConfig(1, 2, 3, default_card="/dev/gpiochip0")

# Initialise the serial connection via GPIO
connected = rb.begin_gpio("/dev/tty0", gpio_config, timeout=60)

if connected:
    print("Successful connection!")

Sending and Receiving

After a serial connection has been successfully established, you can start sending and receiving messages with your RockBLOCK.

Send a Message

Data can be transmitted from the RockBLOCK by using the send_message() function. The function will attempt to send your message until it is successful and returns true, or the timout expires (default 30 seconds) in which case it will return false.

# Always check if begin has returned successfully
if connected:

    # Sending message
    sent = rb.send_message(b"Hello, world!")

    if sent:
        print("Message sent!")
    else:
        # If the timeout expires
        print("Sending failed")

A custom timeout can be set if you want the send_message() function to attempt sending for greater or less than 30 seconds.

# Always check if begin has returned successfully
if connected:

    # Attempt to send for 60 seconds before failing
    sent = rb.send_message(b"Hello, world!", timeout=60)

    if sent:
        print("Message sent!")
    else:
        # could not send within 60 seconds
        print("Sending failed")

By default the message will be sent to the raw Cloudloop topic (244) but any topic can be specified by calling send_message(<message>, topic=<topic>).

# Sending message to topic 999
rb.send_message(b"Hello, world!", topic=999)

# Sending messages to the Cloudloop colour topics
rb.send_message(b"Hello, Purple!", topic=rb.PURPLE_TOPIC)
rb.send_message(b"Hello, Pink!", topic=rb.PINK_TOPIC)
rb.send_message(b"Hello, Red!", topic=rb.RED_TOPIC)
rb.send_message(b"Hello, Orange!", topic=rb.ORANGE_TOPIC)
rb.send_message(b"Hello, Yellow!", topic=rb.YELLOW_TOPIC)

See the send message example for more help.

Receive a Message

Data sent to the RockBLOCK can be retrieved using the receive_message() function, this will return None if no messages are available.

# Always check if begin has returned successfully
if connected:

    # Check for a message
    message = rb.receive_message()

    if message is not None:
        print("Message Received!")
        print(message)
    else:
        print("No messages")

A specific topic can be provided to fetch only messages sent to that topic

message = rb.receive_message(topic=rb.ORANGE_TOPIC)

See the receive message example for more help.

Send a Message to the RockBLOCK (Cloudloop)

Cloudloop Data users can use the Cloudloop API to send messages direct to their RockBLOCK(s) very easily. All API calls require a user token, guidance for acquiring a token as well as API usage is found in the Cloudloop Data Knowledgebase.

import requests

USER_TOKEN = "<token>"
THING_ID = "<thing-id>"
MESSAGE = "SGVsbG8sIHdvcmxkIQ=="  # Base64 'Hello, world!'
TOPIC = "IMT_TOPIC_RAW"

payload = {"token": USER_TOKEN, "thing": THING_ID, "message": MESSAGE, "topic": TOPIC}

requests.post("https://api.cloudloop.com/Data/DoSendImtMessage", json=payload)

Alternatively if you have more than one RockBLOCK, they can be put in a Thing Group and a message sent to all with one request.

import requests

USER_TOKEN = "<token>"
GROUP_ID = "<group-id>"
MESSAGE = "SGVsbG8sIHdvcmxkIQ=="  # Base64 'Hello, world!'
TOPIC = "IMT_TOPIC_RAW"

payload = {"token": USER_TOKEN, "thingGroup": GROUP_ID, "message": MESSAGE, "topic": TOPIC}

requests.post("https://api.cloudloop.com/Data/DoSendImtMessageForThingGroup", json=payload)

Check RockBLOCK Signal

You can check the signal strength of the RockBLOCK to the Iridium network using the get_signal() function. Signal strength can vary greatly depending where the satellites are in their orbit, do not be concerned if sometimes the signal goes from 5, max signal, to 0, no signal frequently.

if connected:

    # Check signal (0 - 5)
    signal = rb.get_signal()

    if signal > 0:
        print("We have an active IMT connection")
    else:
        print("Unable to contact satellites")

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

rockblock9704-0.1.26-cp314-cp314t-win_amd64.whl (40.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

rockblock9704-0.1.26-cp314-cp314t-win32.whl (40.5 kB view details)

Uploaded CPython 3.14tWindows x86

rockblock9704-0.1.26-cp314-cp314t-musllinux_1_2_x86_64.whl (58.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rockblock9704-0.1.26-cp314-cp314t-musllinux_1_2_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rockblock9704-0.1.26-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rockblock9704-0.1.26-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

rockblock9704-0.1.26-cp314-cp314t-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rockblock9704-0.1.26-cp314-cp314t-macosx_10_13_x86_64.whl (46.6 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

rockblock9704-0.1.26-cp314-cp314-win_amd64.whl (40.6 kB view details)

Uploaded CPython 3.14Windows x86-64

rockblock9704-0.1.26-cp314-cp314-win32.whl (40.5 kB view details)

Uploaded CPython 3.14Windows x86

rockblock9704-0.1.26-cp314-cp314-musllinux_1_2_x86_64.whl (58.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rockblock9704-0.1.26-cp314-cp314-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rockblock9704-0.1.26-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rockblock9704-0.1.26-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (57.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

rockblock9704-0.1.26-cp314-cp314-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rockblock9704-0.1.26-cp314-cp314-macosx_10_13_x86_64.whl (46.6 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

rockblock9704-0.1.26-cp313-cp313-win_amd64.whl (39.5 kB view details)

Uploaded CPython 3.13Windows x86-64

rockblock9704-0.1.26-cp313-cp313-win32.whl (39.4 kB view details)

Uploaded CPython 3.13Windows x86

rockblock9704-0.1.26-cp313-cp313-musllinux_1_2_x86_64.whl (58.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rockblock9704-0.1.26-cp313-cp313-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rockblock9704-0.1.26-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (57.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rockblock9704-0.1.26-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (57.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

rockblock9704-0.1.26-cp313-cp313-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rockblock9704-0.1.26-cp313-cp313-macosx_10_13_x86_64.whl (46.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

rockblock9704-0.1.26-cp312-cp312-win_amd64.whl (39.5 kB view details)

Uploaded CPython 3.12Windows x86-64

rockblock9704-0.1.26-cp312-cp312-win32.whl (39.4 kB view details)

Uploaded CPython 3.12Windows x86

rockblock9704-0.1.26-cp312-cp312-musllinux_1_2_x86_64.whl (58.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rockblock9704-0.1.26-cp312-cp312-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rockblock9704-0.1.26-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (57.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rockblock9704-0.1.26-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (57.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

rockblock9704-0.1.26-cp312-cp312-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rockblock9704-0.1.26-cp312-cp312-macosx_10_13_x86_64.whl (46.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rockblock9704-0.1.26-cp311-cp311-win_amd64.whl (39.5 kB view details)

Uploaded CPython 3.11Windows x86-64

rockblock9704-0.1.26-cp311-cp311-win32.whl (39.4 kB view details)

Uploaded CPython 3.11Windows x86

rockblock9704-0.1.26-cp311-cp311-musllinux_1_2_x86_64.whl (58.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rockblock9704-0.1.26-cp311-cp311-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rockblock9704-0.1.26-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (57.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rockblock9704-0.1.26-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

rockblock9704-0.1.26-cp311-cp311-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rockblock9704-0.1.26-cp311-cp311-macosx_10_9_x86_64.whl (46.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rockblock9704-0.1.26-cp310-cp310-win_amd64.whl (39.5 kB view details)

Uploaded CPython 3.10Windows x86-64

rockblock9704-0.1.26-cp310-cp310-win32.whl (39.4 kB view details)

Uploaded CPython 3.10Windows x86

rockblock9704-0.1.26-cp310-cp310-musllinux_1_2_x86_64.whl (58.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rockblock9704-0.1.26-cp310-cp310-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rockblock9704-0.1.26-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (57.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rockblock9704-0.1.26-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

rockblock9704-0.1.26-cp310-cp310-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rockblock9704-0.1.26-cp310-cp310-macosx_10_9_x86_64.whl (46.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rockblock9704-0.1.26-cp39-cp39-win_amd64.whl (39.5 kB view details)

Uploaded CPython 3.9Windows x86-64

rockblock9704-0.1.26-cp39-cp39-win32.whl (39.4 kB view details)

Uploaded CPython 3.9Windows x86

rockblock9704-0.1.26-cp39-cp39-musllinux_1_2_x86_64.whl (58.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rockblock9704-0.1.26-cp39-cp39-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rockblock9704-0.1.26-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (57.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rockblock9704-0.1.26-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

rockblock9704-0.1.26-cp39-cp39-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rockblock9704-0.1.26-cp39-cp39-macosx_10_9_x86_64.whl (46.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

rockblock9704-0.1.26-cp38-cp38-win_amd64.whl (39.4 kB view details)

Uploaded CPython 3.8Windows x86-64

rockblock9704-0.1.26-cp38-cp38-win32.whl (39.4 kB view details)

Uploaded CPython 3.8Windows x86

rockblock9704-0.1.26-cp38-cp38-musllinux_1_2_x86_64.whl (58.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rockblock9704-0.1.26-cp38-cp38-musllinux_1_2_aarch64.whl (58.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rockblock9704-0.1.26-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (57.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

rockblock9704-0.1.26-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (57.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

rockblock9704-0.1.26-cp38-cp38-macosx_11_0_arm64.whl (45.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rockblock9704-0.1.26-cp38-cp38-macosx_10_9_x86_64.whl (46.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file rockblock9704-0.1.26-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 82b7da421e3ca1d9d79d8b0abc363ad6b3fe5056c11414546b4e7d387e485ec0
MD5 6c3ed2dd17d36611888b61c02b99da08
BLAKE2b-256 3a4a3a1583961168b08121ebfa437370146e8ceda043fdc0c5457c6854c17021

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 814e0587079f0b6d1b1dbb6c2714f6403fc18e9a00d0b93d4911d5da4ea6ac3c
MD5 45eb92f6898aac758d0ffcffb5049dd4
BLAKE2b-256 c688adbdd4833849078c77ccc949c06aba1a86f80f2bb3551454499583b7704c

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b69e616cc0cdf2417cc7dcd4df79c5a092c827ab3f804f1738c49a5ae6165f35
MD5 e40c27940ebe93d822b0f18bb0113625
BLAKE2b-256 31c087cfcb3f6feb4a84cdf0aab24b3575912bfdf3b4be7a8e6a666d852858fe

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f57311b81befedf9924d540eb6fa751f9b953bf2e3dbfe473fa14eaad96351fc
MD5 c52256a9e5c576827de36b25b682e579
BLAKE2b-256 3e987c5f7783bb890c5bc7ff8cc5fba1e8ce8355b515b268cf092080f9de4568

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed9ad5185c982a78eb9806c3716453478cc7f1f167e51d117eba74068c7b5c0f
MD5 fe6b4d6bc43e91f27e3bcbee9e161452
BLAKE2b-256 e7042f6743a34aa3762f65be9e75e72afc4c1951ac4c5eb83a200f785c956d1d

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2332d418d499414e76d0935f510a376fdfbb12988504ebbf0ed8f26aa2e041a
MD5 1220bfa8f0733e88cebe1526dc9ad578
BLAKE2b-256 2974e2893b1c077eb69ef5c3812239e7dd7ae5fd3dd2f70925b275f9a1fbdace

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a9c23526395b8ddb5f0959f107adf08cd9ddf88f347f81e3e5937cc8c985a9b
MD5 ff56643379e57fd47944f963231f05b0
BLAKE2b-256 c301484d4cfcd34d650e25ba154190d1c281279956ad6ecaf385eb93ef74f3c1

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 669ed7d2ae43330fedee44ea966b5f859ecd6c14ba00d7936e568a8a23d977ed
MD5 bab8374a7540962e174327e0aa491c1f
BLAKE2b-256 e5bfaa27a57bf2500a41117f196ded85bdf10ff9959760f9b80af9542e2f0957

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6ce2e2fbea6d3656a735d1909c7a1abe76f4e7b33e046229f6328addd4e35166
MD5 c13953c13f123090b6cf0b4f49c25645
BLAKE2b-256 b467af7ffd8daf348ee402836b051c7f2bdb7d9f2047ad71df7e79d075716e01

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1e7fc070f3d2a7059dc352b0f15fe55b59b450ebdaa116fb9e6ddad8cb8268e7
MD5 ba57cfd96b8608e48e45bc31a7e7a6dc
BLAKE2b-256 f793aa70a66340074719212c89292245d59b853e9041f4c2df2891ffbcd0d1fa

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a38ff297ec2873509a0f967b4415cb13f8d704e9030969fc0a2198b30aeeaaf
MD5 0eb91d8dbd789d271ac2e903de5e1e32
BLAKE2b-256 b0addd2432a6f747d5747bdff0a4d8231d72ecfb78caf3a2e2db6df708b4167f

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0db569790f44e695fd108eac870f8e74f8fba966ae9a23a3a78cb7df7546617c
MD5 74d3fd25d0793d543ef47d69fc0f6848
BLAKE2b-256 5555e4dd7537f0dd3b2fb8293d05bf90b6e54487cede903b1163a7715c690b84

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3bea5b870857aa2517c9d236f02fcae775ff0c7914d76f5578f794d0160b9f8
MD5 d19ec8d57aafbdfd7b0af188b7b8429e
BLAKE2b-256 601c06ba5b26035cc61006f4a0bb0ea5e3282022dde50c12014e40c5243da9b8

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 71baa3b73f1eba8a9a370bb4f0d1b172feadd768e70528705062025b63d7e879
MD5 c476e9fd3c350bf6d165bda7c89f8c59
BLAKE2b-256 1588682c96fefb03d3530010c43a451d6c9780fc92880f0c34db7586b0d07e0f

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddfcf1b85dea58a6fb1828953d2937557f766e674e3179dc034a198dafa2e43d
MD5 4fb88dbf6a76ec38d25f43fcfb8fcf92
BLAKE2b-256 4fc76104b8feab35ea38b91899d9b9a9f8170dc47239aa6f3ebc77ace453342b

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f19201ab8f7a9f867683273844c7146fdef492ea4c95ab88f971bed13e599b42
MD5 c3631ce63835d60505b9fba3da50a7fe
BLAKE2b-256 9d0347631f5425100b48101aeb59d1173be46463d6520128533c13238ddff8f8

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 be64bf8b3f2f8c312f3459977671b7ab681c23efc989b2022a866355f586c8d0
MD5 8fd6bd5ea5ada4e816fc5f6322105323
BLAKE2b-256 c8cb4144a632b2e5e0311921c5e8224e2d1f51f8af57975eda77e5c761193a11

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 99db471437c0cc664765e64d140dd036a3f76a50758c1cbb831afea26f393e08
MD5 b367e1aa4beefc2b35327dbd2f3b0b55
BLAKE2b-256 9034ebba168401485884f5f15e406db2550da15789d986d3236aba7a4991fb20

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 188f3a4d07c2d05c386eb0cf2959a003ad5d91daeb7629075c328a4ee928cdc5
MD5 f8557061500067c59d85710a211d55f7
BLAKE2b-256 b4341f9ca2de67c0ef665def1b6cc1899b1dcdd748b078bfbae802bd472c1420

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d85c2ce74f22c76e473f13bb2a811fbb54fcf6d66f2dc72322ce7209c9775c96
MD5 11176b188056edb59e40703f1038e822
BLAKE2b-256 9d747174266ed3e523b281328f87ceafc9330c8ce918d9f07bffcba37c8e1565

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1869172716714343a7750265fc0ef1e86611c1301f83efde8857ff25aa69ab56
MD5 c926c104f84b03359a313f368261f7c4
BLAKE2b-256 3200c390b5151c5f17d65a9f344cd5adccd3e0e0a7d82912d777b00e71173bf9

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d285218015d5fe11625642157b3f526518bef9ca83a4807897c610c04144d004
MD5 e6d1d9009bd677d8480b686fabb21a1e
BLAKE2b-256 670dd079a93ff20d8a53d9d1335ef548e3c7f74e2bc648995d6ea1937b6e435e

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 169e7d70f21189b04ba8ef9ea9ee8f75f667d4a32dc94465c1c8e1e9318f0183
MD5 c3d1980380491bc3c074d6b617644089
BLAKE2b-256 23144424221972dae5836d850650729d401e16647558f380276f368bb8058954

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 634715b06562fa71d36e4c1ec55dcc3811e5d059b635631fc4bc4ec643ab0960
MD5 0acf380cf6538ef7c26e8bea836b033a
BLAKE2b-256 fe0b772b3aac637bc10c25458ca04b902ed62916ba43e8ff890d7ec1f8b26803

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 28e7774c0bce2d328f900fe14e54474bf38469a11e7f755ab86e5e380399990b
MD5 6e968a82d9e3e96fd230a6cfdebc148c
BLAKE2b-256 1ccc57569ff83e9a34ba7c80065ee3c9ecfe8646aff7020e376e4005c35a2f1a

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 94ecfa4c022aa53d3690e5578ed854242e35fcd5f3bbff937829c7428779033e
MD5 e335cc700c6c3d18dbb10f7ba9bcb482
BLAKE2b-256 f63c18a6a09475d10e65f67b3f22922633bb6d72ced9741f2fca3a02b0bcde15

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7dd966b827c56af9eab3d83e79605a55f621037ea02c01df0c8a16fc1b0ce43
MD5 a8d287a039e4b352d5c345292ef68fa9
BLAKE2b-256 6e39a369a3856725415f6a541f2e5a41850518e76a8185ea180d7e6b248f5423

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 761a87aafb4543fed32c0ed5c0994ac89fb45b699efa412e95b4c884b6c5904f
MD5 bbb2439a43bb73a8bb8def49a28ec92d
BLAKE2b-256 21c1e96ba4c0ed01838b606aa1d81b76dfedee05e5a47cfa4fa8e1c4adf441db

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8518d9e05a48fd372e2dc2d9ae45b4ba4f21a8eb89d0612d94c4fe8a4824c8d7
MD5 11629e5fe756f209b65e7409aa0d06d1
BLAKE2b-256 21066f416cfef32fdc3b15ce16fa2afcd9f52005cfca68994a7b679a93e2dfd3

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf57337577690c07ace6991059ae7d26ec971398e8853f5b3610c789a5d7f822
MD5 448dd946a871f68e32c50c8604e03737
BLAKE2b-256 0cc8fe0123f70442bca0f022337497bc8ec579ff60f004390695b1cf9a668c5c

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77a8da284802af6fe78347f8687fe2f64a3f7b7251c427de5f0c1a8e4fd6593c
MD5 ced0be6481d47740cce16275112c69b9
BLAKE2b-256 8acc269f8c833e971eb7c89780f97184d94291b7f3c8a3cb54e9def681bcdf1d

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 624e44a8f51eadf84660aecb732dbb0a17a8eb5daf0452234e00f14926bc298f
MD5 3b01702fbcedb508187ecaaf54aa92a5
BLAKE2b-256 82703d5ec97fa5ca3d8d8f1903a59a6f65a613e194e0578704ffcf8f739eaaf2

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6117dbb03dc955eb09b92c02c283edbc4b2d7179cd8333550249e9acd18d75da
MD5 fde79bdba71875fdc48bdc818172e4de
BLAKE2b-256 2a4b26c12d408dee8e64e42e7f1acf58b04e951a5f5ec959c07fa3e0aac197b0

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b023924dd841dbf48258318c899ff05dce253f34a587f772a4b6c5be1ca5da58
MD5 89a11cbb23e8e44bceffc47edeef951b
BLAKE2b-256 9aea34caec55f5b8e3f14ea5c2ace4bcc0a963ab8523b80aece230fe02aac9eb

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f162b8675f5c59a12da43245de6e1d6ad296ccbeffeac45a167891b6eb77c78d
MD5 e4c9a5e4ca2326fac3d36271d4ad2a5b
BLAKE2b-256 4784c651cac7d114ee7685f88c7cf46198aa3754364785ef797d711c1e115124

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f05d5f730dce5fea8b4ee4807b4ab3a060953fa5cf1f4b93b39a870783de456
MD5 10cf90d29e3eea5826bf9e104aad2e91
BLAKE2b-256 fbf6c2eff9a533f363025d0cc5143652f61010de9a55390b709fb9bd6f50dff1

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 120c9fb16b7ffd5aa6f5e20f8a618310fc15dca7937f1e81dd6b7e89d10505c0
MD5 2c0e7d362a8b5dfd8e05ea6311f65715
BLAKE2b-256 2baf2c033478843dab6a9e333c0ab983fda5b269e7b13db2bdd7942d73ab4376

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a8362850c316ac38f699123b23675dc001060f4960152785366d445c1346496
MD5 20d7392a3bc317e910b4ef58644ae01f
BLAKE2b-256 80ab035321ef3ac6507a2fde87843d498a384d3dfbd980ecafcf6f71eb4c5791

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b75fa2661a2b319ac9ccedb654e1c21c49316a6a81f2f5eaef1d74cdcdf0ae18
MD5 c14d1079a0c0fcae75a76dfb7e9bd347
BLAKE2b-256 251f2afc1a859b464d38921491e88b8cf8c739e6361fcb30d767cd083591dcc9

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5dbbc5c4fdb6adcd17e997ae4836b7a094f43af1e0ba460835c562e7ddbae91f
MD5 0348334cf7dcf455d196f845bac61763
BLAKE2b-256 010ea80b98a2bbbf35a3ba7b0a71d0e824a9c6f8e8745e7f1caec41b84fe4784

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9b6582873889248a90dacefd83fa713ba08f452aa868026880c635c670c6be3d
MD5 0d44b3f896e17a0375557733d2dd6ef2
BLAKE2b-256 0851d25bd64b1bcb6f414508313123636cee33a064c8e2780ea4085eeaa0bfe0

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 93b0322c1bfd91e3f8a9cdfde7cd597a65f397d1d56e8b450be5f27ebef953ae
MD5 f505fc314871d6387e31d77d58908f88
BLAKE2b-256 c187c03eb3d1116636efd5ffdd408618009cf65aa83ede364f3c502f7da97213

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e99141e55b4a0feadf8bd05991e39c6e73d95343199b28e4b8b93bf8c7534ef9
MD5 a9b55bce31c3865c61ab0f2f634c7db6
BLAKE2b-256 e4ecb83c87da87d4590d4d7b3309e1a529adef6948b547b56b4fb8391b8033d9

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca65c6bab891e86f4f90fb01029f6c98f382e09f2a3d59f16cd6720ae18224a3
MD5 0a3685381dc3d87803ed9936046102ed
BLAKE2b-256 fdd81e43463853a8a1fb57f7f221e5aadb7473e51ed3ed3acd8c6a0b25a6e10e

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22dd1df684d276865e4b95d686a77ce7101adefe148bcba28f9becf295d418eb
MD5 3b1952b5fc2f169a83131757f4ffcbe4
BLAKE2b-256 38882bab4cf715b0cfbed9e7697ae9e537e183ca7cbbdb6e8b9a1eb4f4690d18

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f62b7e7359abc9e13db9cf2da2a03953b5c640d79c059c850636ac39123cd834
MD5 16fa5f3110898058967db8424093c683
BLAKE2b-256 d9450803ede704c44925d5b60c45c4c0730943f05b1de5efbbac32093e6231f3

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88c08027b301eac799973f6f33c60a43f75d3d36cd14ceb9b14ecd652dbc47d7
MD5 d739d7d5bf0059b4ab2920182d407d99
BLAKE2b-256 7ddd3247a688e6e0ad84012b98d21106179660474dfffa82c33d0aba260b2776

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de70b2477355aac7ae3ca0c46bc59f9cea94fd8a65a7218029fed182a6f76b67
MD5 e4771654a826aa687a85b6088fc70d17
BLAKE2b-256 b6eff92b03e944b12c384a445ffbfcdfa01a7b60650bfff3e92a8c9b0b949a7c

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a62d4267ea72b44533999b0e5b588b65167a27670e526a891e6b9991cbf6bc42
MD5 9f719a822b61eed66e991f5f086ff887
BLAKE2b-256 8cc93c3a3e421e615ec0b9e9fd3b684310317cebc171c444159d2934ca7c501c

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp39-cp39-win32.whl.

File metadata

  • Download URL: rockblock9704-0.1.26-cp39-cp39-win32.whl
  • Upload date:
  • Size: 39.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rockblock9704-0.1.26-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3e763a291a8968676ca439da058dc9f8356b00c953e154239e04cab9139c18b9
MD5 59ec8b8c57fd0bb3c6e4d461dd2660fe
BLAKE2b-256 434f90c1485ab734513f95358ea613ff0ec570655476acea69f814b351bede38

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 798f620c80135d15175d3ff76848ecb86a3bda15950d2d90535c02173dd85400
MD5 14148233cb2f381a700f2c4c9d109282
BLAKE2b-256 478a8bc43175f579307bbc815d503aa937e35545517f33935608e7bc27d28b60

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 99e2a374101818b5f6dc40aeb112b0f7ff9eab82b2fb6dedeb5f014047251d62
MD5 eaa4d76fd67d500ffdc2574c20ce46e0
BLAKE2b-256 a9260c4339d7df932502e7c74dea64f141121afa0192a6561ba1f25fa9bc15f8

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 154e250ce3303671f193a735b1484ae72888187a1c89e2f1b4c85bd97875384a
MD5 78e891a180f6e7373964c00d866992f2
BLAKE2b-256 1c467f7f006ee11f51f7c71f5489181a958fd5b3b00a004b97cac22a0c8fe5ba

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d726ddb12bd7eff89bb50c84b03c26630be46a5c7bc5a9ad52154bf3fd2a2a14
MD5 762093ceffe16b2000b139032907cafd
BLAKE2b-256 32d64117809e3a1da6774729074e5735a3cab257a62bf37868639305686b4c8f

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b50f2cbd56890092d51c98ffe2dcd08c225c06b621b3276afc7253f9b08540f
MD5 5569df886a4a1000d18ce0a0da040841
BLAKE2b-256 0da2f6467ea30e10403cee16accf03b94f3dba6b8804fb5bce427b6f8db4d507

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2fbb6adf8636dcb084502a21a277c038fdf303cb6938da96f1c4a74b5ea383c5
MD5 d814ee93b5ef6cbb15d924a663a3a081
BLAKE2b-256 56eab5a6223fe941793d14a959361bcb1c5c797610c6f827e38ba42fe7e2c543

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 31c1a62d8741701eba22ffb5f06e4b9687c961b1fc6e78894d23ad5ed07f92a8
MD5 0d02d1250ad829781c04951d3c4f66b0
BLAKE2b-256 b72ad97af763168cce8c39c859a67d58fb474906fcce856c83e5aeb6717d9411

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp38-cp38-win32.whl.

File metadata

  • Download URL: rockblock9704-0.1.26-cp38-cp38-win32.whl
  • Upload date:
  • Size: 39.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rockblock9704-0.1.26-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3a6c85fd26e2ea97980f8c1400e394aa1ef7dadabfbf7b5a627220eaa150dd0a
MD5 571e1171a495a734991e0d3c9fad7967
BLAKE2b-256 59a883152a3eec99e295b7026a504db27bf2cf26df89c1d27bdcd32bd04c88ee

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a6fa8d7a3abfe686b4f02cbc9596a45c5a1f27793a7e8b91ec45e46759bb341
MD5 35b70ed5331a1d34679d150afc0ca7d2
BLAKE2b-256 0a50563e8701e35373919a2b71c4e1a44c4495f868160944a1076aa32d4fc404

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01de48d05278df3444468b4d71598b8da06dfa004b53f609edf77516e11b9dad
MD5 ee49e60fcf0caaad7ac4c7a26de5a1da
BLAKE2b-256 5b9d0ea0e6c4f5ba28d3445b440d881e2a89e6d3dfe3dec0e9b3649fbbe2d56c

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c15099fe47b4acb718769a9aa8bc16ce8422cae85de27852be743b18aab9fb9
MD5 8f9071559298bf7b06ef5db1cba60ec4
BLAKE2b-256 ef072734c1b5f4a950ae3dfbd3488f2f54b1c01d6ce00dd9a0d54361f8cb9e50

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 390bdca86fbe1b216d339da22ea471c0b24b264a57dc5f87a91ad3e6c10b7cfc
MD5 d19d37b6f0bf45582710aa89e2f22cde
BLAKE2b-256 b5b7e7636d8114cdc70ca5462da4f17d42ab36eebf5849ecd1ea6d6f69bcf809

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 148ab1f2501470f9b50086bf0041b7c77bc43959bbc44c735254d0f5968cb852
MD5 e4cfce111a1c9a356f65dff79d5808fe
BLAKE2b-256 b770c74c44aec1dd63502cb8e2484aa1fd132f22f5c9a32ab458b8fe7cfe73e3

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.26-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.26-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fa9c0a5470b1af5ec9a135ab78700d7da2e2c719dc82f1025cb2bd48b2ce06a
MD5 f7f2f79c07c622628f4b475177d5726a
BLAKE2b-256 d54298055e07cc20521928c0a571075a7478155f577a38d09d8891a48521f25f

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