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.25-cp314-cp314t-win_amd64.whl (40.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

rockblock9704-0.1.25-cp314-cp314t-win32.whl (40.6 kB view details)

Uploaded CPython 3.14tWindows x86

rockblock9704-0.1.25-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.25-cp314-cp314t-musllinux_1_2_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rockblock9704-0.1.25-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.25-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.25-cp314-cp314t-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.13+ x86-64

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

Uploaded CPython 3.14Windows x86-64

rockblock9704-0.1.25-cp314-cp314-win32.whl (40.6 kB view details)

Uploaded CPython 3.14Windows x86

rockblock9704-0.1.25-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.25-cp314-cp314-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rockblock9704-0.1.25-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (57.9 kB view details)

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

rockblock9704-0.1.25-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.0 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows x86-64

rockblock9704-0.1.25-cp313-cp313-win32.whl (39.5 kB view details)

Uploaded CPython 3.13Windows x86

rockblock9704-0.1.25-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.25-cp313-cp313-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rockblock9704-0.1.25-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.25-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.0 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

rockblock9704-0.1.25-cp312-cp312-win32.whl (39.5 kB view details)

Uploaded CPython 3.12Windows x86

rockblock9704-0.1.25-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.25-cp312-cp312-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rockblock9704-0.1.25-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.25-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.0 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

rockblock9704-0.1.25-cp311-cp311-win32.whl (39.5 kB view details)

Uploaded CPython 3.11Windows x86

rockblock9704-0.1.25-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.25-cp311-cp311-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rockblock9704-0.1.25-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.25-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.25-cp311-cp311-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

rockblock9704-0.1.25-cp310-cp310-win32.whl (39.5 kB view details)

Uploaded CPython 3.10Windows x86

rockblock9704-0.1.25-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.25-cp310-cp310-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rockblock9704-0.1.25-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.25-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.25-cp310-cp310-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

rockblock9704-0.1.25-cp39-cp39-win32.whl (39.5 kB view details)

Uploaded CPython 3.9Windows x86

rockblock9704-0.1.25-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.25-cp39-cp39-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rockblock9704-0.1.25-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.25-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.25-cp39-cp39-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

rockblock9704-0.1.25-cp38-cp38-win_amd64.whl (39.5 kB view details)

Uploaded CPython 3.8Windows x86-64

rockblock9704-0.1.25-cp38-cp38-win32.whl (39.5 kB view details)

Uploaded CPython 3.8Windows x86

rockblock9704-0.1.25-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.25-cp38-cp38-musllinux_1_2_aarch64.whl (58.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rockblock9704-0.1.25-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.25-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.25-cp38-cp38-macosx_11_0_arm64.whl (45.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rockblock9704-0.1.25-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.25-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 86f0a1cb748080512f5182553e6c2fe6d8049c4718e3eb7a384870220b2eacf7
MD5 886e14699c3b88786ea5b70cd040a44a
BLAKE2b-256 35ae898f2a307872269a6467b4db71351c8e1ff517d34a2e2f4912e385ed85c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 372ab8c774a96a8647a2aa9f841e152aa8469f752bff20345a08bc731f8b332c
MD5 46faa5391e2e9154fab40a1048236e59
BLAKE2b-256 0f7c296cd0cc902bcfe5d4f7eb1dc3e451c760a904b4799fc31479bf31d34432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4a6c370414890ea933fb0cc71141f5630d297fa8c30dc182c6c78e304da118a
MD5 f41d404ac188a5118662aa6b96b8c0e1
BLAKE2b-256 8496ddadcde1943e80bae3405c47805848975ded4f5738da5520751a778edcdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74db35a0a12271d1504657a6ddc57be1431dd1e769613153932240d252081291
MD5 65ea2aa6002dffdab33d8a6ffb2a65a6
BLAKE2b-256 3ba7d7b2fc7d9282e7c46e3b11139341eba5c3518a3e7f2ed0ad6733d94c6d2c

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.25-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.25-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ebf15fd65229543d56e0423de8f548f8e6883247d76fdcdc65bb4558c376dba
MD5 414920d08df29e4981ced9350adcfa7b
BLAKE2b-256 1af8cab6dddaba7f2dfcacd2d33cbd5b5a8fabca0c6a7194b9bebcd5d9b3b6d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5acc75f5866dd10a844d8e1770898193e7cb8b92468f434f37cd6165b488eaa4
MD5 eb6eb8b6ab13b787189c3ae9f96d4b8d
BLAKE2b-256 cb032e424b74484edf9f64498f6c0ab51e2d0c75fc50f30c149b9993423985d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f0218f0c053456a114029e2b3619e9bd4d859ee10a3c44a9775ebb5da1a7536
MD5 90f022073634262f257615a1c61381bd
BLAKE2b-256 3c44eea4766c4c2668b0d57acd0cd568f5aa6cafb8048b08d04ebd102d9c566e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7fc92cf491cab7aadc29b4851b284ae6cf043a3cf23e197bbb651a722403c3d3
MD5 c4d6aa3157812d5e6c94df26fd9e7e36
BLAKE2b-256 6757e5e85ea5eedb2b19169671b4e1773a30562eb53c3b60d4ede91385e66f41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 300980a9d50763bc2708b9d235611d6bc702af64a01b5300337597c299bcb988
MD5 e8cb7d98e7c27cce7af42c49b4f0294e
BLAKE2b-256 f73a44302d68c81ae885e3cfba06b52cf060b95794525796b265080b59ecabcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 82d1e240e3a7e0f18e6fe7390d1854525607b24b1225519d64654114da5ed1a8
MD5 0ffdcea5bb896abdc66814910f7b5404
BLAKE2b-256 f15f314904dff76023d736f5c90f38f5c4d32f82cd2f4dabffe7b07b123a12f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbafe693482c2d7e8219216fa8e408ab389ad3e4327e4ea9f9c1301616071b1e
MD5 ee6c7a14eefb6a5cb8f395c60361d710
BLAKE2b-256 a4b45200be892afa857530f5f8f414c9fb6dcbf253ee510855de8c651b0f2096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46655c0734378eb091f176df7b7336ceeea324d8dc08596779b5b6e45d95b50d
MD5 c9d299fb11184b790d290f9199b87aa1
BLAKE2b-256 af0fee5126bbe3067b32e27558db00ebf7707d907f2d10dca0d30ee5129d0a39

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.25-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.25-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4edcb7dc6936c456dd08d5c8fe6882d399b1b94f7b1d10eb50b624eece757caf
MD5 4c9c457b532c6e8c2cfd462e96eee437
BLAKE2b-256 be6ed64072d27456f40385715d147abcd866ca3c53b225b53567d0ab02f2a586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ddd690317eff833e3e9ebae882349ca66e8d145e5fabd06d8100725e20519309
MD5 73657b397dc66dab3c3b631590092672
BLAKE2b-256 1e4edfca2573d6d507eb6b332d7262416c7630bae1612bb8e8962ef17a6240b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f9bf511f031189fd373ca67472aa3c23f5cd22285efdd8e45f770bed22daaa7
MD5 b6394949e0668740835037e78d4b8b75
BLAKE2b-256 cefaf37329223f0934d90f321c3339feb46cb1ee93ee8a6d285a7f9300228e8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1c90ac86426ad543e5f90885dfe992dbdb25f1a57c8b4dafe6642eb22ad6a09c
MD5 44c67d52f3e649a5130339a7719b2793
BLAKE2b-256 8110cf1f400e059794436cc2336d2b5044c012495c999f40b50783620ae423eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9b4dd669057dc9d28aa89192ceb7e0b1b938a8cc0f9fb782ff13685105e77a70
MD5 4cb8c066a1d19f4402c6ddeb44045cea
BLAKE2b-256 0f0c7a3def34645b9cdc2b1e92fbacd21d0271ba59d786728f600e92262f0652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 be52a9d3b067fdcd4271d173ebb5401b43dafa79b66954ac266ad82d8aca9440
MD5 ff1a42b8afb4ef260dd9a7f046f94919
BLAKE2b-256 4588f55f933a810289aef0e650b3e3798d94c019f9e1e6a720d831b3e05792ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a1a4db963eca99846fedd0fd6d16b2d940500c2b5d95ad5f939b200f9a4eaf9
MD5 d398d6498897ed9c157859279f44d67e
BLAKE2b-256 b5a1cc9cef1937b3b4f97f8945d8bc0b0fdfc21062744b5f87655da382007b69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f50d481c381b59e1b209b2faef53c6afa49e9b20d99fdfba5671afa694b95dbf
MD5 67a6ace9d436ce01ac6d5fa79b99e589
BLAKE2b-256 e62fe0550dafe87596e0a47c57d340970a732663bfb8137d7da2c17073a6a1a9

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.25-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.25-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca8a95e6bfc3946b746f872fdc51495fd0dacfb0921d35a59c2e6108c07e00d9
MD5 04d37fc9f6f047f13b8a03809b7a259c
BLAKE2b-256 7c05de4fa4d739a50b25c50b2e6ebf39caf241105d570fdafecc709d2135ce87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89671864dcababad0a8c0f7c78e58480e3ba04141f4ac0423a76e79b4cf1cc06
MD5 4c629f34464f08e9c546d50538dc3c6d
BLAKE2b-256 948ab247a01303b48436e7c06f74b7be00dda740e038948c862349643c928d31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb02116b523b3b5b557f15d5568c573ef1f18cfbb31babfc6089636b7f0a159b
MD5 c0bf95877973a697fa115a1ac4888fc2
BLAKE2b-256 b1dee8006bd0a56d4b7ecbea06498bf2349ec6738bd0d4ff8f2d614f23158ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0fb8e27ce76c5d2c11df49f8118827a21b06113a2433e650cdfec668339ff261
MD5 723aff8447d94116efa0a0c5e205a98d
BLAKE2b-256 2d218ffb2f37a1ca4d718b8defaae6b175fe7925c741268663effe3337bc6b52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9a9883930409662d3c3bfed407b93cde5de60c728c505f0820f839b3f6304aaf
MD5 a2afccaeb5af271004a7e6e6e2a830ec
BLAKE2b-256 6d611244289c2c3f98e654d026c25f3ee432f62b7d754488e5e7505186a514c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5254616634315abf9e7116194cfee726ea59811e3a8f39c1c910309580445402
MD5 312056bd32ee2ac9cd5349859f0050ab
BLAKE2b-256 8db467ee19d44784cabab0086a44c21e87ae2842536b7495fb6b2435d1fe0739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6706049c9d49155bb41c61cbb8432ee5f0aecd74242cc499225280447855821a
MD5 8d8bedffa93d50a9c5c49eab67c75c1f
BLAKE2b-256 177413082172ebad98a06815aa4dab5ed83ad70d12105b080be89f0db4dbca94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 314d6caf5684afa389da02c39e8645b7dd3f67a7f8af6545609dbeb2125af4eb
MD5 a9919287f9894c01ed92d2488dbc2c29
BLAKE2b-256 8630a1973bea9f1f9abf91ce0cf6187384ddbbe106eac325c4e984bf70e2cfe2

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.25-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.25-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3626c399df9d21e23111408a6da22f7b132f88e53552976147e93527c0fa4a4
MD5 27d08318f4efebf93b7d2cb5ab9670a5
BLAKE2b-256 fd1d660402cd72684362c22ee4b7c631e5d5e5d15d4ae73bd65ce0ed7119653b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aea5c4a20e4cd7140855eff64177ddd581aa9ba4706bc7c776b04e3ee5f3f025
MD5 3d55b7d9c8940b15a64533eb01ce9dc1
BLAKE2b-256 5b670d1da4202e09febe518bd89e2bad7f000d3233a01e20708f34a4b255804e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7e921a15bc315f487f78f0698cba212dab4a9e1d38c5f232019335238abb210
MD5 18453b4397ed7c3d4d4a3888c8f3448e
BLAKE2b-256 fbbb4788d133676f1aac27cfa13bcacda28d056b523414af9f378f1da14a0a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3509c12fa404a91c1ea4d238eb2e9ebe13c8cd75effe834b68cefe998c057e42
MD5 69ee5c3b005f927b0e41e30bdcdc4d32
BLAKE2b-256 3b108b299db4b45f2361a6541106fcb32a65dc93aaf273aeebad9f553a4f63bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 59569263a7ee542aab2b3d752d51a32f057bb0eb1ed8773fdd02aef30e96a457
MD5 0cce658b7a538d5bc421c99dfdf04f91
BLAKE2b-256 4ea1b8169189c8821647fbc60c4d8ecf869c67013622e230b14c0fb1f8b55856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ce0633f174d3f46cec101f5f084d92847241e56255669f90acb02d56b58b595b
MD5 2cc30868f8ae1b599141a1bb293db54b
BLAKE2b-256 84d047dc5151c241b36258bb0c33634b20987109533c33c6126fc862a1edbc5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d370827a074983e2df363a0297922cc4a41ecc5d0f1f9609eea8fbea00c2f92
MD5 315f705643765a1d8f3b08cf760cd841
BLAKE2b-256 a3f3c7ab2ac13a3d3e5456880ba22f538d147285ae28934a3d6185bb1c7b08a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21ae24bd32e7749b006abcf4b8af46febefb4a1982337697480fc1fca6c401e9
MD5 1a006120bca7de8f9e832e283d51441a
BLAKE2b-256 9d1841cf2c9cf46a2ee3dd3138b7c82ca1193af8e00057886f07fd2475de27a6

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.25-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.25-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48db374346ee22cd24cf2edd0443db07285a29d2cd88801323512e8a1d56b219
MD5 aa45e309609f58629d9346b698d481d2
BLAKE2b-256 ebe191f9494f66186ee3a1d9bacd8a0df0bf71ed2e250e0087defdaf19bc2651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18d5c461b96a784a647afe9ec1ce89584458f4891e7ab5968927c3a8249f60fe
MD5 aa547cab07843ac8640f1bee0b4b848e
BLAKE2b-256 4c24633ba41c3b8e3a30dac69f869f36e4db9719435b41dee81f7417f88336ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 989f3ec9a96ae40bc2d40a377e14d77ac06fefc3d2e9d4cafff2d3ac99aa00a9
MD5 aaa04b614160ccce39511b74e4ae1b97
BLAKE2b-256 52db68f5f01368541b93ed0df46811b664f0e370654e9420c0cee05b0b6b48cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e687f609be89c57a20a4e2f794cfe9b36ed484a3df824e0ac5e8d4739592d26
MD5 43a9d487d1d2a5e3c49defff4e6659f2
BLAKE2b-256 fbdc4b631b97be153b4ad5a894f88f1ed175e3b760ae6e7094c448f1cc81bb6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f900f20a8eae84166e5d5ed608e3de071e47a6606d49ee05d070605e9a7878f
MD5 b668bdcd80ea472a9abd2fcae9cc4570
BLAKE2b-256 0b26965612232cf526c8638e3d6e960f01e39fc7277f1be3edf26b8f86ecfcc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b1f3185ef7a0e172ae36d55e681c2c8886ea2cac5efc6b507a63717924f1cb66
MD5 d289dc0047de4ed28146320a545aa38c
BLAKE2b-256 0aebcf67ea593bc3c57317383dea02ebd5332d8d765e00d37c17eef2224f590a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51e7a7c4638667e3b5b3aa376a37b0e18bde3eda57bb469b06aed117006cde71
MD5 41138c6d1160efe94693169757dd7e75
BLAKE2b-256 343ad07d3c3a19b4934d4abc0819c5b05cf49894cae468b2f830cc53b15447e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcf232988bc0252fb986488bd22a50f30da3a371aa32e17b01e51de37cd1066b
MD5 e31494fd2413bd7d094a493b0a277119
BLAKE2b-256 90ab02ecd9ff17e5746104622d3ad17797cf9e75907516bd2a04d09f80666cdb

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.25-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.25-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1eb6a6cf846acd3d04d3ea1ee221b0f736b706258d4ff5e89d8ef6bb699160b1
MD5 8efe88d2a2638a2bb912bfe2c67d80da
BLAKE2b-256 33ae2031c99ef3838bff39eef2f9380264d772004e27140ccf167d1c40245021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77be4737bcfae8c7b92b9dde375f7492bc6fd814b984506c56931652d57dc063
MD5 8a70459d1eb7680c379272077bc82ef7
BLAKE2b-256 d7cef7b77beb3b236a76dd7f9a62e96ce3ecd2e9e5eba7b89c841739df05d2eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52163b48b375e132f8694b88fbe2fb8358fae86e157bc858cf86a09c5da8aca4
MD5 d60c93118a5d32bdaeb118899a6575ea
BLAKE2b-256 0318c978005f8af49477b91f4d1543e92a4499c52337ae74f961dd294a40dc10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 93bc6d0d65df4e60421b5a3a07aa8bb9d9b20cdb6cfbd3c4df15af2fbe5bb205
MD5 6198c2ffe44cf8c1d9f7501067c4afcf
BLAKE2b-256 8a27fd5556bc797a9db0f63f996a5df2b5f6b15e7d8909c5d79f18e9149caf6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 de2dec559950682de97009430eb2551c28627b9a4c6b7766a6683cd9f8ae4c0b
MD5 9c523dcac7cdb38627564df48b3f066b
BLAKE2b-256 f16cb7c2f96a2baf4ddc89107af11096b6a1009f56f6ea63a9292317240433c5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rockblock9704-0.1.25-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8fe6ad451d434e0100518a96d713198dc7201d84a8c121f7561accb7433cb0cf
MD5 f8d7b54ecfc9337260ff8ae0a5300bc5
BLAKE2b-256 19e358a03f437d380937d7090e5b76b49db538d3d6e31709298328c21f1b9ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 447b7c8ef67a9672df03989bb88d85b820ae0600e099a6236b61179ea935c938
MD5 e25b84e88566307b61562f7889b46960
BLAKE2b-256 4972e4724da5e536eb257611602c47b5720254b096362a6d5490ecd93c3f8087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f98513cf8061d3f5a2fecb693fd0b06ec337ec593073cb08288e9fed98c31d81
MD5 30fbf61836e47b6484f3aed734e5efbe
BLAKE2b-256 ce2201a9aeefbc409f187fca7a84274333f864354abb2bd7fc0316915d974eae

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.25-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.25-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07ccbba88321bdffdbe22a9fcd122a475a6c08c6438331117ad7e0ad94ab3da9
MD5 28342ed5a5901fe13070e97b77007849
BLAKE2b-256 49f9a412b578009f6c7a5276731f6d885a6973776537723bc811cbedbf628ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2fa0019755270ff10bf8a2f338565b8ace0cf9bd34a991297fc8406e256e7cb0
MD5 293b597a2d1b4d6083fee8335a8625d8
BLAKE2b-256 47ee54dcd102e1db7e2eeef9b2e884ee93549853805b3ffb3425783f6b60b649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2cc00886552108ef01d25db45d7184dffc647c26f03099a9d391ede06d592d7d
MD5 e44a7e38de923f4db6c203b3e9c6b6d2
BLAKE2b-256 928540bd7e589a67abccf46ade5c6ab75b69e27795db56d1cad6bc2e2c027f5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b892bf785f3206484f65d8b0bc60cd60de2f321921256fb9d75fffcc9f753677
MD5 e3abb120bcd5588c1c3a419199af32ad
BLAKE2b-256 7902f854785a429f670f03cd0355b493b3c5e25eef14018b4f86c75717cdbf5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5375a419bcd810cd75bc0ec53da9d96edbfa5e3d772f75ea58517088e8c08b3f
MD5 bde154bc52d39f76630fc24f52d513f2
BLAKE2b-256 77d0c7d83f391b8b681842458a2e492ee877bb74036a0bb988a6276d6fb2ac91

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rockblock9704-0.1.25-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8b64348ddfca4fffeff3821c6d7704ad8f8d74af5078c6fad6067ee381ebb42d
MD5 d56234a9c1f85ea766a27a399219815c
BLAKE2b-256 7e73a97d88d80827c8cd888fd6caa2f93fd9c3214c8c5d30b88d6d506d6622d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f05245f19eec53425bbcc0b076fe07039ad7d2f84b234cd2f8fe360c7c0b1ff2
MD5 9d63aad2dda286c14d7195ccc64715be
BLAKE2b-256 c12464d1f928f979c56e2fafd52278161ddaa89ad4a89c7a6b09ef0770074dc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8442112888cdbe3d3af3b19f73bf9b7d57ae01f63efca958043ac563a898f309
MD5 4b65d1f14cd5560c07583a62fbd1a743
BLAKE2b-256 3d852d32f4713fd97d35e9af0b2e614d30c64563fbac3dc362f0adc785b76f9d

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.25-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.25-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 100fdaf58fd0740b44b6270421596648b7baf97942d78310ee9d044669d3663d
MD5 8acce1e200feea762df39fefa4ff5626
BLAKE2b-256 0f731758777d0df91e78e60c77ffbbc6759dd4e755c1a3b0fadb671380f9b6dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6eb322a908500c226f150a21fae453f5942a0df9a27744eb83b27a612f2ae850
MD5 52317fd8b324a1fffe67196c5d847059
BLAKE2b-256 18bf0a4d14bd0e16ed1b1eab9ba3f4597d33082272ef55bc7b5052237f94c7c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4af13fb259f19e7676ac379e4c4ab650142d80295f5f0c8b4767a392caa76cca
MD5 27ac9cf6aa81139aa06e83c1a85150d8
BLAKE2b-256 0ae3c39240a1397a0f1e8b984a187496cc7c9486c1dce43d5eae3a6415bedae4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d5d9c6f7e6d18ed6636cfc90a3bd2261540c24657591be54e00a19ef0d2cb962
MD5 8d7b2d6352efdaba86aa838290298fbe
BLAKE2b-256 768ed1cb3614dc14498b2172a1cf422eee5c3a1ae37a77ec4a26bb9910b36476

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