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

Uploaded CPython 3.14tWindows x86-64

rockblock9704-0.1.27-cp314-cp314t-win32.whl (40.8 kB view details)

Uploaded CPython 3.14tWindows x86

rockblock9704-0.1.27-cp314-cp314t-musllinux_1_2_x86_64.whl (59.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rockblock9704-0.1.27-cp314-cp314t-musllinux_1_2_aarch64.whl (59.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rockblock9704-0.1.27-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.6 kB view details)

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

rockblock9704-0.1.27-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.8 kB view details)

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

rockblock9704-0.1.27-cp314-cp314t-macosx_11_0_arm64.whl (46.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rockblock9704-0.1.27-cp314-cp314t-macosx_10_13_x86_64.whl (47.0 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

rockblock9704-0.1.27-cp314-cp314-win_amd64.whl (40.8 kB view details)

Uploaded CPython 3.14Windows x86-64

rockblock9704-0.1.27-cp314-cp314-win32.whl (40.8 kB view details)

Uploaded CPython 3.14Windows x86

rockblock9704-0.1.27-cp314-cp314-musllinux_1_2_x86_64.whl (59.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rockblock9704-0.1.27-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.5 kB view details)

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

rockblock9704-0.1.27-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.3 kB view details)

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

rockblock9704-0.1.27-cp314-cp314-macosx_11_0_arm64.whl (46.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rockblock9704-0.1.27-cp314-cp314-macosx_10_13_x86_64.whl (47.0 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

rockblock9704-0.1.27-cp313-cp313-win_amd64.whl (39.7 kB view details)

Uploaded CPython 3.13Windows x86-64

rockblock9704-0.1.27-cp313-cp313-win32.whl (39.7 kB view details)

Uploaded CPython 3.13Windows x86

rockblock9704-0.1.27-cp313-cp313-musllinux_1_2_x86_64.whl (59.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rockblock9704-0.1.27-cp313-cp313-musllinux_1_2_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rockblock9704-0.1.27-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.4 kB view details)

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

rockblock9704-0.1.27-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.3 kB view details)

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

rockblock9704-0.1.27-cp313-cp313-macosx_11_0_arm64.whl (46.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rockblock9704-0.1.27-cp313-cp313-macosx_10_13_x86_64.whl (47.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

rockblock9704-0.1.27-cp312-cp312-win_amd64.whl (39.7 kB view details)

Uploaded CPython 3.12Windows x86-64

rockblock9704-0.1.27-cp312-cp312-win32.whl (39.7 kB view details)

Uploaded CPython 3.12Windows x86

rockblock9704-0.1.27-cp312-cp312-musllinux_1_2_x86_64.whl (59.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rockblock9704-0.1.27-cp312-cp312-musllinux_1_2_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rockblock9704-0.1.27-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.4 kB view details)

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

rockblock9704-0.1.27-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.3 kB view details)

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

rockblock9704-0.1.27-cp312-cp312-macosx_11_0_arm64.whl (46.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rockblock9704-0.1.27-cp312-cp312-macosx_10_13_x86_64.whl (47.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rockblock9704-0.1.27-cp311-cp311-win_amd64.whl (39.7 kB view details)

Uploaded CPython 3.11Windows x86-64

rockblock9704-0.1.27-cp311-cp311-win32.whl (39.7 kB view details)

Uploaded CPython 3.11Windows x86

rockblock9704-0.1.27-cp311-cp311-musllinux_1_2_x86_64.whl (59.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rockblock9704-0.1.27-cp311-cp311-musllinux_1_2_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rockblock9704-0.1.27-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.4 kB view details)

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

rockblock9704-0.1.27-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.3 kB view details)

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

rockblock9704-0.1.27-cp311-cp311-macosx_11_0_arm64.whl (46.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rockblock9704-0.1.27-cp311-cp311-macosx_10_9_x86_64.whl (47.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rockblock9704-0.1.27-cp310-cp310-win_amd64.whl (39.7 kB view details)

Uploaded CPython 3.10Windows x86-64

rockblock9704-0.1.27-cp310-cp310-win32.whl (39.7 kB view details)

Uploaded CPython 3.10Windows x86

rockblock9704-0.1.27-cp310-cp310-musllinux_1_2_x86_64.whl (59.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rockblock9704-0.1.27-cp310-cp310-musllinux_1_2_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rockblock9704-0.1.27-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.4 kB view details)

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

rockblock9704-0.1.27-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.3 kB view details)

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

rockblock9704-0.1.27-cp310-cp310-macosx_11_0_arm64.whl (46.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rockblock9704-0.1.27-cp310-cp310-macosx_10_9_x86_64.whl (47.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rockblock9704-0.1.27-cp39-cp39-win_amd64.whl (39.7 kB view details)

Uploaded CPython 3.9Windows x86-64

rockblock9704-0.1.27-cp39-cp39-win32.whl (39.7 kB view details)

Uploaded CPython 3.9Windows x86

rockblock9704-0.1.27-cp39-cp39-musllinux_1_2_x86_64.whl (59.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rockblock9704-0.1.27-cp39-cp39-musllinux_1_2_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rockblock9704-0.1.27-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.4 kB view details)

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

rockblock9704-0.1.27-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.3 kB view details)

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

rockblock9704-0.1.27-cp39-cp39-macosx_11_0_arm64.whl (46.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rockblock9704-0.1.27-cp39-cp39-macosx_10_9_x86_64.whl (47.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

rockblock9704-0.1.27-cp38-cp38-win_amd64.whl (39.7 kB view details)

Uploaded CPython 3.8Windows x86-64

rockblock9704-0.1.27-cp38-cp38-win32.whl (39.7 kB view details)

Uploaded CPython 3.8Windows x86

rockblock9704-0.1.27-cp38-cp38-musllinux_1_2_x86_64.whl (58.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rockblock9704-0.1.27-cp38-cp38-musllinux_1_2_aarch64.whl (59.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rockblock9704-0.1.27-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.2 kB view details)

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

rockblock9704-0.1.27-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.1 kB view details)

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

rockblock9704-0.1.27-cp38-cp38-macosx_11_0_arm64.whl (46.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rockblock9704-0.1.27-cp38-cp38-macosx_10_9_x86_64.whl (46.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4655d560f8029f597c2e1f87c27ba4d82cceca0f4316af5d71d78705467933cf
MD5 9d1f28c114738d8ce64ca6ee1a6cec2c
BLAKE2b-256 604ff4cf7caecc0e42a38021282b3e02abe5d8915e84aa561e1de2687bb8c79f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c4fa4db87b40e56cac8aa32eb154f1f3ef5045cad15e5768763e28cf37ff156a
MD5 c03f8df3caecc665b683771daa56a2d8
BLAKE2b-256 4ad3dab7f616caaef34632d9333e5d6d1d59ab764a8b46737c055885714d71d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48e8b67f27fe91348e62784c775e2b4f40bc4698f847b99819944f437d1822bc
MD5 c0e3698bd3b9978fc2d43c7a04c77b43
BLAKE2b-256 de29eb1307d8bf762c1967f720e14c310a8f09a0f555a678a375740d7933e77f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6ab4cdf2f26611b8e58e5470fd3e8864ef5f026cda435c6431be8f9036f4940
MD5 899d1a2f8aad63aecc0426a82a89572b
BLAKE2b-256 8098064e93f56aef69d9a6b054362fd8ee6818fdbdfcad0a8030b19ea9e550d1

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.27-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.27-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50d442600286f04c99a9db2011d46c24ffc576b00230de7a0a52a4542b43c11e
MD5 9936dfd2ff102234c8f59cfc1ef13d38
BLAKE2b-256 9200f3adde808352901051d9ad663fa605687a188279d11695e23e63c8a1a4f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 940fe1470052db2cc3411d38357fef448c42332996500ba8b3ae049e4bf08a02
MD5 956103a424348a928df77a1912c83450
BLAKE2b-256 af223cfeb9f75ea451638607e3f3547706bbb07f68f70efd9142a4ab7e61808d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 133f1ba2769bf3c37c3e4b0eef328caf0f4c193db18bea91b6dcb02666bd2970
MD5 0593d2994eaada38e6b61a5e9f194838
BLAKE2b-256 389cd6476cbd296ac42244cc7a288a00180d999e017609cb444538f07654cc2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 42c200ebc1c8ec4d07da1dc8180d689d7848c49cb1b19097b01cba2cb8d315d3
MD5 34f045cff1b02fee699e7fd3314d337d
BLAKE2b-256 69bb28e16d708d9ade849ff5e8021dea028edfd1f048cc958b808e3d67ac99c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 57462a5dac6ea88adaff1f42cb40e0a8fd58264ac6cbf21ae84b9a5ad44e8a10
MD5 fc833a9b3cd5f25f2582423a0c21ff6a
BLAKE2b-256 1f358bbf02c6dfe98c123f36653c55239cf5198bc5fc256778541594e66961ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.27-cp314-cp314-win32.whl
  • Upload date:
  • Size: 40.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 63be9920db390d83c88d260dbf2f8992c495cc8b3eaf2465f0b4beb7c016be2e
MD5 dcab6c427e0ea851c9584b1e28637d60
BLAKE2b-256 72e676e6a53c6adad74408fca7427d64ce76c55f5737e7839cd92eede6810f77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67c01c134cfecf3134133a4315358f7690d4772c2bb7967905e846ac258b06da
MD5 4765e2a9bc24e1f008fad17a3f956f94
BLAKE2b-256 6847c62a87e3dd5cd2ea86862e48713d75995046b60ff776710142b5f29bf5e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fda142820fa4dd5280982b39b4fb1c5b5bea2ad4be83620573569e116f7ab07d
MD5 35494ccd8a0243f79541beb3425083fd
BLAKE2b-256 1b57954348c8aa364d0b88ed3f2e040447f391f9e025f0e24a5c294b0982b623

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.27-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.27-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 47538dc46601c37ecb33179f077c59c0871ca8ff182aa7b80b285100f0db5081
MD5 8224993477540f4cbd3764970272ed8b
BLAKE2b-256 defddc3b4ffe797a026db0d696c719c2a4171e7188244b0b223d614e878488f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ecfe691d74a70a28396d5fdfd9fa0b2c64d143b0fdd5069dffec9dfd85e80f47
MD5 6b146465174a8d43f41d854bf3edc84b
BLAKE2b-256 ce1e1703411c77b98c76efe19c3749f95993851ae94eeaa6beb5424d2f450dd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1992434537c6d405ee65159b5a5066589e06ea62289bae96ea8fe895774f4a0
MD5 212d78ebd16e35b30713ee12338850d4
BLAKE2b-256 e39b96353070f71e6485bfe33fed9ba51876c764fa26492430e2d24db55abef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c08a423190a7fea147da96ee7d440fd33a765dc57f327a0d30fcfdec2c7d65c7
MD5 c99a3dd16b899bb950fc0d5f93fe3900
BLAKE2b-256 9cfa903c95d9f528bf139048af6ea3792e844779161b4f8574c9597eb30c132a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 da1d72682a575bf54c072b8ab08c7aa99382c312f088cb55e7a2ecb1e5f6f9d5
MD5 ccb2f53461039666668b4c5600a231ff
BLAKE2b-256 e242cfb03326c95f6abb23d0aff168ccddbaea9a028ef9235916e114426c8edf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.27-cp313-cp313-win32.whl
  • Upload date:
  • Size: 39.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rockblock9704-0.1.27-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5497085751a3e953d8315bcc28bb90c89069f1399e393be8debb4375f7e6b14b
MD5 2e836445ef208e3df49716c89ab9e0a9
BLAKE2b-256 30f47e43c425340e2d220a3005dc7aedd4b5992a782b56a447383a45580795ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3103fb978db0050154643dab5cc4eed3f07cbefd2a99545c92bdcb5a610511bf
MD5 1e6ca30c64ad9ff7fd1fb5f5959c0936
BLAKE2b-256 e9149f0d4f758cb159149f0b3c1bc06bf4fc06816484a66c2d7b1d9165542ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 022950688edb6257ee04c6330fe5a997c73f0e389ba952b6574d7c0350000392
MD5 426dcae18e7a5027dec5da701389558a
BLAKE2b-256 4b4d03fd7d484603f5a1c4e49a8ac0d4a8b27e1b8c5102645ff763572f75c825

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.27-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.27-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0708760614e5f4dc9a087951f6ce672276302367e9d3fa2feb8ea735e9262197
MD5 ad96b43fbc5cb776a28b37c0c672a02e
BLAKE2b-256 b4cf54d4be8286226cdace244b60a1794082212600c613682a4d1296191dda37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26578a30de255d754aa3fbaf7883be82a84f8cc8f25936d4a7c7b5e0cfcd7a11
MD5 3522481a2d74eeec03eb6ac9be69fe65
BLAKE2b-256 192a3b8abb1aea20593e06b61fe3c7f0ffb7a4e8bf7a592c5bf26f8aabf108c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e14eaf6246a5280175ddc31fe882a778b86c2be6e9adc95e510a05dcb592e4f
MD5 8824d29c3bf6d3c5cedb5c07f2706e1e
BLAKE2b-256 8a7cbac38066faa8de79697a07021e9424a691e5801d5c60f1da74ecb995a7d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c14c7667f5908263562974652d36a21843c2f76e8830d9e4e71d2a803ed9a542
MD5 1f50968b7f6a7d8d65bb518bf9971613
BLAKE2b-256 f0268e539303ae24d3459f5237f561d93c12e452b3c09892ffb61371ba7122b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 90c647773b0094e6bc02f699c23983da21e85ca8e0fbfd734a1d4b59867df218
MD5 a9d2d70ad49e846eb939616296735ad1
BLAKE2b-256 310ff213745735dc8f124709087f5895e07b0017c5710702f24da4dc45f02a29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.27-cp312-cp312-win32.whl
  • Upload date:
  • Size: 39.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rockblock9704-0.1.27-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 06e5fe3be5b6cd4d6be6506c87bf683b6c674a6570eef60c830aef4cde241b1c
MD5 a5e934981ab72b9d8c1aa5295958dd3c
BLAKE2b-256 e11b94d57beaee76a42217a6f5f66e28413d65a0fa12a3b8a629824ea3ec59d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71e6f10e96e8a43dd770fb3bf4293cf46a696792f57f107c7c713b789455cefe
MD5 b8a8b12f18064b101a22f15b8b046413
BLAKE2b-256 f47c9052e2748a6a9bd7dd9605db2cd05ca3ed5a10fb6dca7f1f27ed6bcef522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24afe62650f78dd365f349a90dfd2a9d3ecbf53e288db04874a64740af44b81e
MD5 193c3200104f9db4b82237a9921a284d
BLAKE2b-256 911d7727464eea88161e6446fef90a9a2b008d72d2d909ba732e657101318697

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.27-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.27-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01c35ac2c167572dbdcbe8d3cc233755e142a0d8d92722166a968758d0b7b4ec
MD5 32d561053327f9bd2051f3b490718b13
BLAKE2b-256 2fe490e634fe42f9fb5b6fabd35246c63c302fd909bc76e643c560ade28413fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad08c9d5036e7763e15649e5bf707fa51638734a87ee0f03dd2e698c6a0fb8ab
MD5 f326e07a7f2a35fbc66b7a1a0e9e7484
BLAKE2b-256 ca84378da4246705d6062baa38e778b9a0a3a846fae5df70a6ea7b649fb5443c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bccf36a5b645db955354ae5ba0ec60bf2ec45f0e398fa15b38673c5e3b9378eb
MD5 e3f7e8b9385da84582a413996876a2ff
BLAKE2b-256 ec8625d000593bfefea3ee3048a22a4a4ca5f9787f0a80ca1d8f1acc85a672f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ec82e533844f468e2128eb33b1e1c7291bae8abff36892bc4e73a6f8fb1e479a
MD5 da6d1be9d706185e0e61cb97fba696cf
BLAKE2b-256 e81cbfb10828f35ebdfa27d3312adad3fa4d09d0f4823fc115580bffbe34beb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5ad39a951637ec434b5a9b3c0a3f8ec7aeef2ee2f6cd5984406c8d0fbc1f4324
MD5 60ee9448ee820af4fd00e0d15d4e7ad6
BLAKE2b-256 ce1e1829746fd51fbfb19131a11b1f2e28fbe6cb418ba31e5163bd916717e791

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.27-cp311-cp311-win32.whl
  • Upload date:
  • Size: 39.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rockblock9704-0.1.27-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 49c5f2dd143aff783d3a5671d8bd3115059ca96fd00f37e46480280cb79c8721
MD5 99b97086857b8b8f6ba881c208e1fade
BLAKE2b-256 ad5ec9075998a577355389f9aad485cf8329e955501b2d6d0d8f4c8dbf854677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06d39fcb50564c0736e7eafe273575f85eea78afe4106c304b4f5e6f6ff8fa16
MD5 f51f2c424fc80c1200daf3052990411e
BLAKE2b-256 05fa3a9c9fbada10e721fe4b80e03d8486e4986ec262d4b49fc5d7de4373d1a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ab7098a497753770d6d06d21280b48c50260e3113276db3ddd3ec2e87ac45df
MD5 1e657bb1799a7664b76c66c33e69d264
BLAKE2b-256 bcb080a82e46c23426629a059e9b3fc6b1204eb1167cc320fe7feec8e6766945

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.27-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.27-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 064d14e9d12a5645e85ce7493f68f18a89fd304ee6c9a5b6baca479a05a44425
MD5 2fdac963f2e1094cbb3b942fe57d9f4d
BLAKE2b-256 ce1091f9181418d9f2f7c029e8f99e530125924d8cbb5bb66cfc8b590bf479f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 95a4936fa778ab8d344ba68dde4a0c15629e46fd880f263ea74ebb89d198b550
MD5 9dbf9542e2bf04eacb71caa6c7c17a71
BLAKE2b-256 0828fbae77d3ce9289b24278074bc87ef4d1a1f69b4d4db06ba8c3efc8562b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86fd96f2990f94bf10411d8733f08a43c1cc8eb45c8abc5ca5e1292e59051aba
MD5 00c8d15fb706bbd605c85eaa221b9d83
BLAKE2b-256 b79704f7ef9d580d6d805be30f9626fda0dfb8c52cbc295bdba06add6c841819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ddae3c956c52b096944f8240038d9e8f02c3fde1d86aac070c668e494d80c8e
MD5 50c1a8b142ad0a6e9c2455880b849d7f
BLAKE2b-256 4a453f965e82a7a2e97f9a8ad7106e99d4413ae54dce4d4018aa93a101d1bd3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4823b2b0fe7674b1e1b2c15fb387fa956f0163c8dd4130953160e4a3d18e78e7
MD5 cc23632f7191b089bee50905be482dd2
BLAKE2b-256 b57770f4da450625329623d248f302170b5ce91de8310bc87f342f997f50ddac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.27-cp310-cp310-win32.whl
  • Upload date:
  • Size: 39.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rockblock9704-0.1.27-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 48b83172c3a5bbad3955ce5d0c315a7450c20203f10c31fbc44a12fffc0fef28
MD5 880407b63fea6cdcb9a929eb923e6493
BLAKE2b-256 dad0f756633f2a5787f71cad1b1ee424fe8095403ca71e2c83f45f257e82f2d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08f7af3bded27f737098236c03303f78131e79bb7eed9931327f62785e6d40d9
MD5 8496e68b57abcc4a1656f82d260056a6
BLAKE2b-256 b2af5b3908996816efb758b624e2fa62121524e83f79391697a030a5eae42f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52abedd55725e2389847e768809d8a3dfa97b23d334606ffced761ade92a3083
MD5 4fb011a9b299ec2ef7ad4957a11087ee
BLAKE2b-256 9a6d33233fd3c8f8c0569230460cc7645a1f4aef07b7c346b94edcaeaeadf6f6

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.27-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.27-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce83e9ed436a2100a21789ac144f2266d371768e175700af26f2e0080001318a
MD5 841f51d051475915c84bad3d8d806c5b
BLAKE2b-256 f1a09fb1d8b3409a767f85c47a5c01540f17e740d184545af8ee6fbec65193f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be1a2ff8afc45ec2c2d49d7d9f91a1bb1fd080a677e073bfc8282a41be877c25
MD5 30da8892575c3d139ecce1401a698da8
BLAKE2b-256 f89e3d1b7faad3b12d49fd758eed12cbea4a774f560a7ba53e3ba7d0458b0407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c65476d4db772eeae61f229db754b942be89590b438d1e726a37b03b12822b72
MD5 d2938d90dcd5b5ad07667aec1340da13
BLAKE2b-256 60121f809ff47dd07aa83ac5f3481db3ff02d552300ca47790843f7d33b2ad7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9272cdd1c76dff9cf5a780bf7ae2588fc1f6b3c3397b45995b459fcb33cf431
MD5 137b52550d4b85978f635dcd1dde7885
BLAKE2b-256 a39203a003ccf2ca3911fd57696b4835bddca094281274ffbe2d96469bdcec52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6683dd9d175084a26ef7b605c1838074ddbd4c2108c4c98f11ad24d2c5c1f151
MD5 0a1bd9333baf06befe88fd8676696346
BLAKE2b-256 3293bb69c7339e82c9dedcc41788b4118aedd20b6e6a6cd52c5d12eaa74782cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.27-cp39-cp39-win32.whl
  • Upload date:
  • Size: 39.7 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.27-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 507c276fe4132c368c63580ba90aef9fc145be717bdef8daa7f2ff53931c95af
MD5 df25acc1f635077a466ba2a4b6e16de6
BLAKE2b-256 cbfd98f107e293464c7eac04ece96a4c8671312812ac4787a5174fe8f9b3bbac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47213de3a96f8d7beee1d98fd1faa197d9c7bdc9e7837131870f6c20f2561c9a
MD5 394ce74e2a3caa7339cbe859826ca0ee
BLAKE2b-256 577763122a365aa19058aa9e2b9c07063625726b5d0bf9d5a4e99b370d1f13fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9664d3b6c24c27a8c6ea565313018dc1a15edac99c88ad77a29c1bc9e6bcdfe
MD5 4709d716ae46c0c501959dd0b0275728
BLAKE2b-256 4b48ea05faefd431ea1250ae4843c905cd16681dd6661e0054eb825a147e847e

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.27-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.27-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf37ba04326a2ad898f41f4b44323783a0f4f911204db5f46b6e48ca3fd628ef
MD5 8ba8579b39a21c3c44f876748b1e5b2c
BLAKE2b-256 63d8a975c17ac24d8967add685d2133f24e2f54abfe03714d6fa6b43a8a90493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7703926f382956432b9e471f9be16dd5806e26ca7bcb03474c87fc04db9e2ed6
MD5 0a28738ed52425c2dba65f6bac8ddd3e
BLAKE2b-256 79d76f761b9b0ef92a078dac62c86f4deb6668ff53d1a8bde07b0165d145bcfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd2ef937fed0cb237f497bef06b9054e07c0b977d623c9c84cbd6b3aff046083
MD5 47182d3151040b8ba9b03b49b9e36220
BLAKE2b-256 ba221d92aa89b887292f97047fec67d083dea2a954213ea0188e5d27adc63583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3cd1f09d0b1eea4ea72327382c0e3d82b01e7abc164113496c3fbdf13a72864
MD5 b133bbcb4a9ca540149d97764cffa01a
BLAKE2b-256 f9830bb7b74f373aa993a0f4455509c96917145563a8cbf4ee0dad42449a2394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3ad5b422377437b6cb570ccd865018dc9bc3e51cd3ee3ceb066d53c6ff60178d
MD5 719315bf1860ea69eed01a09ffa6f82c
BLAKE2b-256 2681eeb447aa40cc3c67d39a10fc7f9b0ac8cf919fbcbc75512bf8803e61ddba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.27-cp38-cp38-win32.whl
  • Upload date:
  • Size: 39.7 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.27-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c3a8d4227842722dc6797c5e0742f6bc1f6322c7072508015c80b3b84b8c17dd
MD5 a96036c9371aa43edf15af62cbe783a3
BLAKE2b-256 2c8c0e4fb3b3290a428b792895b54f5ce72660f59c1e7c600d1eab8ed964e50f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88a1c56f7bd88a94ed686079dcda0c57eacd7443cdd349874646e77ab6be69cb
MD5 542ad1452d20a43ac5b963547f65720b
BLAKE2b-256 02620b3686d99c7c2c2882dfb04dd2fb0024d19f0348b7d6ee1e1a884ab0d6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa2c5aeefc27ffeeb817a955fcc3d9d79722d60135d591675313e86037452b4f
MD5 17f186c4e11508c47c58723d4bafb016
BLAKE2b-256 8fdf4612ac67ccdd9dbdfd055c86b952149e2139addf2ff8c9cba14e897ae9de

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.27-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.27-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a892dc3bd4c3306c438a2a16c8677a482c8bf9a76bc2b5626254d197cf59e04a
MD5 2b37382166cbf8401e21cf5f1bf1bdf9
BLAKE2b-256 35cd7bd239d2cb1bc924fe7566ea50988e92021ed3d82d4961007551c6d14889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97e5e238399eabf356e796374fe1b74155635f8e109959c4ab025146d801e3e3
MD5 267b3e48787bdcf54a7e8b12959a8115
BLAKE2b-256 2244713a68c80d53a65d34b5517cd28ad2087a320418ae3699fbb36d2c92de5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10bb29f5c0665373ad29a2ef23e94c5ac7c926ab4079ca0e259d59fbfad64155
MD5 9098d40724f15ee857c42cd94e196862
BLAKE2b-256 cdc117b38252c4c0610f1e658739dbc63c44959a3059406653d7a4100820ea23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.27-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b84ab0fac328a8903b80c372350d76a3f180e530acea50ef2dbb8983bb074a73
MD5 b733af43a97f2f86918c5d1a63afa931
BLAKE2b-256 26bbe5ebbd381e387474d46c94b4a7b328df9bdc6b574f108ade662a7315934a

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