Skip to main content

RockBLOCK 9704 serial tools

Project description

RockBLOCK 9704

Requirements

  • Python 3.8+

  • A RockBLOCK 9704

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.12-cp313-cp313-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.13Windows x86-64

rockblock9704-0.1.12-cp313-cp313-win32.whl (34.7 kB view details)

Uploaded CPython 3.13Windows x86

rockblock9704-0.1.12-cp313-cp313-musllinux_1_2_x86_64.whl (51.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rockblock9704-0.1.12-cp313-cp313-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rockblock9704-0.1.12-cp313-cp313-musllinux_1_2_aarch64.whl (52.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rockblock9704-0.1.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rockblock9704-0.1.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rockblock9704-0.1.12-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

rockblock9704-0.1.12-cp313-cp313-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rockblock9704-0.1.12-cp313-cp313-macosx_10_13_x86_64.whl (41.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

rockblock9704-0.1.12-cp312-cp312-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.12Windows x86-64

rockblock9704-0.1.12-cp312-cp312-win32.whl (34.7 kB view details)

Uploaded CPython 3.12Windows x86

rockblock9704-0.1.12-cp312-cp312-musllinux_1_2_x86_64.whl (51.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rockblock9704-0.1.12-cp312-cp312-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rockblock9704-0.1.12-cp312-cp312-musllinux_1_2_aarch64.whl (52.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rockblock9704-0.1.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rockblock9704-0.1.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rockblock9704-0.1.12-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

rockblock9704-0.1.12-cp312-cp312-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rockblock9704-0.1.12-cp312-cp312-macosx_10_13_x86_64.whl (41.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rockblock9704-0.1.12-cp311-cp311-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.11Windows x86-64

rockblock9704-0.1.12-cp311-cp311-win32.whl (34.7 kB view details)

Uploaded CPython 3.11Windows x86

rockblock9704-0.1.12-cp311-cp311-musllinux_1_2_x86_64.whl (51.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rockblock9704-0.1.12-cp311-cp311-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rockblock9704-0.1.12-cp311-cp311-musllinux_1_2_aarch64.whl (52.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rockblock9704-0.1.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rockblock9704-0.1.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rockblock9704-0.1.12-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

rockblock9704-0.1.12-cp311-cp311-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rockblock9704-0.1.12-cp311-cp311-macosx_10_9_x86_64.whl (41.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rockblock9704-0.1.12-cp310-cp310-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.10Windows x86-64

rockblock9704-0.1.12-cp310-cp310-win32.whl (34.7 kB view details)

Uploaded CPython 3.10Windows x86

rockblock9704-0.1.12-cp310-cp310-musllinux_1_2_x86_64.whl (51.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rockblock9704-0.1.12-cp310-cp310-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rockblock9704-0.1.12-cp310-cp310-musllinux_1_2_aarch64.whl (52.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rockblock9704-0.1.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rockblock9704-0.1.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rockblock9704-0.1.12-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

rockblock9704-0.1.12-cp310-cp310-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rockblock9704-0.1.12-cp310-cp310-macosx_10_9_x86_64.whl (41.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rockblock9704-0.1.12-cp39-cp39-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.9Windows x86-64

rockblock9704-0.1.12-cp39-cp39-win32.whl (34.7 kB view details)

Uploaded CPython 3.9Windows x86

rockblock9704-0.1.12-cp39-cp39-musllinux_1_2_x86_64.whl (51.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rockblock9704-0.1.12-cp39-cp39-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rockblock9704-0.1.12-cp39-cp39-musllinux_1_2_aarch64.whl (52.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rockblock9704-0.1.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rockblock9704-0.1.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rockblock9704-0.1.12-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

rockblock9704-0.1.12-cp39-cp39-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rockblock9704-0.1.12-cp39-cp39-macosx_10_9_x86_64.whl (41.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

rockblock9704-0.1.12-cp38-cp38-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.8Windows x86-64

rockblock9704-0.1.12-cp38-cp38-win32.whl (34.7 kB view details)

Uploaded CPython 3.8Windows x86

rockblock9704-0.1.12-cp38-cp38-musllinux_1_2_x86_64.whl (51.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rockblock9704-0.1.12-cp38-cp38-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rockblock9704-0.1.12-cp38-cp38-musllinux_1_2_aarch64.whl (52.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rockblock9704-0.1.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rockblock9704-0.1.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

rockblock9704-0.1.12-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

rockblock9704-0.1.12-cp38-cp38-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rockblock9704-0.1.12-cp38-cp38-macosx_10_9_x86_64.whl (41.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ca420cf6eb25fa7f3ef272cbf938ce5b1718dd356d1c1fa7830aea9287c8dfb
MD5 843a880bb120e4a52e4eafddf3164113
BLAKE2b-256 4254f3d22508851fcf10e5296120edc399df76ca64576661facd944cf2a44ea2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rockblock9704-0.1.12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7e15a937db63a5eb6e55c8b483b0042271a9142aac5afc640a44cb22affee98e
MD5 0a8b26e803dd8650c6326634b4d6f430
BLAKE2b-256 a10f9d7aea5b1cfc2419f7745d67c63c7409bb2cf0fd20487edd00e3dd82472b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f2c1fa178bbd53a010aaf35d3d1f6f8538dbcad1d0b4be418e8ca9f09249e09
MD5 cf77e82e121a9d4d2d07248893d318ca
BLAKE2b-256 06090dfe323fa720908ea8397d596119e6ce882d60264efc5f81c4ef660fac78

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94718989eebe8eed308e17e47fc09c8db4eda4b6b9d6d5140cd28816f71aa8c2
MD5 072908fa2659e3719f13588de5f0c4e0
BLAKE2b-256 a8df09a0e8579970f6b7c0a74b3abe9dfde35e03271983fd55d851d822fe36b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 491b5f17c43edf6ea9df80cff76d369f3b894fc52bd64be253e00c8f1b26fd57
MD5 88c887fe4a0e6ce782d10107bf43eb1e
BLAKE2b-256 474912287f6dad45af4e73e0ffa710f3a51e66b28f5ff5aaab74f80f019683e9

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 480fdc7331095b9945abca008a63560cbfdef9f489fa32043cf2662b88d2aeef
MD5 988f149a848d2bfb72bd3c9c2d1d6ead
BLAKE2b-256 0a7b33195722a08bbfdf28fae5f7c6258a164ed6d8c5ab5b49246c46c3c33197

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ca7ba18467c78283aba44f0223d3d301c0837200a25d025d6b11af508d69a2f
MD5 35f8be78c7c7e7b6b5c2114ee9a69b24
BLAKE2b-256 44aa2d87b0263990c9cac04402db254288f674c594651e378db242948ae5ec7e

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e72ea2f1a8d74005a8ec0472c7289d0b392b9f29929854e891b52fb94d947f77
MD5 401a3cc4d2215c61e141101de06f6c00
BLAKE2b-256 cc56ee7b65b4e2feba10bb585fc388d0ee72fd5f02b203c385d7b84c3961f216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b56dad859bc63017fe9b0e78596556e4d91e1f0f86606af567b774d5a02487c2
MD5 766367dc16f44d386ae05e7d92b43733
BLAKE2b-256 55c07d71d69e0495e6dc465b8bce480f4ff9b8ba2e24ce884483c7e8c2a5aeaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ce31383e0a5199482e17967c00d17ab9f6384228292e271d4a2fcb037b10bcac
MD5 4ef46f910f37c2075080db96424b949f
BLAKE2b-256 5c2fc372047656a53b9d58e5be551661d72dbdfeb83f3d3f2f6c1d7f58071cab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f2e68caf5431cd285d95f411ee26faf8c8ec1075ad76c0b301291a60683017d4
MD5 c859520e5a41bf98c7f4b4aa709e7c31
BLAKE2b-256 e41060e7accddfabac03358006e1771d3b6edacbd58c0636f12d0e2b90d34bf8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rockblock9704-0.1.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 629de9a15106dbea9c26a9d9737798aec95edee1470eec2a7198473669cd669d
MD5 b9b971297a4c2033bb04bede252d8356
BLAKE2b-256 2c8286b32b0b5db3901c15b90f2f7a883bbbef486b1da2f68f81d62aaa4d7afc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12fc5f1c92ecdef30a73416d4cd353fc33965c0946bae576cae6523d33c4f415
MD5 0e2b6bcc7670acf0ff3fa43079317680
BLAKE2b-256 945d9ae91abf4bb4a0eb8321016fb33200ace574b5608960e162baf6c8580494

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b3ba5848c37d429a384631a00e18a49e6d9e6cb847e3e17e3df31ce2fb52e20
MD5 5f5c6ad44a7c2fb415abb991ac89cec0
BLAKE2b-256 6bbe74c6a24e40321d12818545dc99de0361ea503042341ed99627c59c89daa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69e8e786a7875e59d2502957059e44ba5a744f3ee9168b7773d6273b788cb8fb
MD5 efcdd49072395ce22d3117807fea9f89
BLAKE2b-256 627774f43aa7e18e7655ffd728572c038b89704eacc395854b79e89837746b32

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a9835e9466f695e8a487392ed1824982c661bf478eadd6b9281cff16fa512b1
MD5 2b5c36e32bfaec0e760d3efbda556a5e
BLAKE2b-256 1b700e363be87d8ca1cbfdca476b19f066fb4408e0871ac572e67be95787f98f

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e989388b7e469022aafa062482795ea9e97d366ef3d6fb6720a47b3ffd2eb65d
MD5 c61d2ea96ec9eab2da49129d9849988b
BLAKE2b-256 f96cc2478b7be7d29289860b3570bfab01cb627c7498803a081f75dacf41f811

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f701c683ff218a1fbe43286739008386c408efcdcf347b62a081c2349db71e2f
MD5 5160956647c8df12108bf706c5de599d
BLAKE2b-256 797f80fd4c1d061e118d364f2ac25b22bab68c2e825f07834088201b82aeb247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb6750955d1c493909739bb364c2459b028c944e769c7110e0c031f13f5bf994
MD5 85fa5dc6f8b54b70fb8a922eebedc4a0
BLAKE2b-256 13c9c2edf1ff2eaaf5cccdccc7f7cdf64a0ba08f79a97378ff60fc243969d990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 92cb13d06fc00b267bd9b90666da1bf5fd310cfce4b1e247974f51a906116a24
MD5 0cb2a8dd43ba51485b7e020dba73842c
BLAKE2b-256 6b4fff555dd7ee255caaaab35fc3c14cd48b90592343d82933fb65ebf9cdac95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f03c1cc8a575c67f831c49b781b51d9f32feaf2ef5da05fd893f69fd73ac6f2f
MD5 4e19d4ee72f98afdc17297f511d35475
BLAKE2b-256 b581dbeac153917d7f6cd7be33a901cbb4d15039e2e0c0dafc7bff1251ace99f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rockblock9704-0.1.12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6e868be5ca1004a5f062be75bcefcb523e2e76f7cc1f24e4797dad363fa7afd2
MD5 891e4e89fd59bb884b73bb930df74bfb
BLAKE2b-256 ca37fab89df903279ca9cf56584f92c4debca56fc091151cad686d109c47fc7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca1f935096507e722d8cb874b57b27c64029ea8f91ef83d1889bcdb2b5dd8019
MD5 e8edb0517f047d7cd8490a9282897f08
BLAKE2b-256 a5b5e677110b2084f304ca1fbcc849c73209f318e17b1fae987dde2f7160d01b

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa90a2a6fabefb3f80dfc9e31dc695b5ea530a3757892ee46cc556c718d43849
MD5 013d159147796acb154d8e39d95f3ef3
BLAKE2b-256 0cb3e0c84ba35dd6643477b7637e203e4bf78ee245415bf2f8ad84f5034cd410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cc63e3286a71d023d00e4bc35c8bcf381c385bfb105227b8f3e0e5ec5095109
MD5 fcced51259424f4b91819e902e608f2e
BLAKE2b-256 8dace33049d18f6ae6e9ca5a0749cd78252832fcd5c6262044626823ce7fa66f

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28855d6e086729dd539eadcd02f068ed262c545221c4298c89858607f93a972a
MD5 5b5bf8290a218d1bababb2cb16bd5bba
BLAKE2b-256 bc1a5144fe96fa91c7b3cb592f8cf1dacc6cb362bdd5f1413b0b90f2a86626b5

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3824773e2adefcf70d7fbd87b949921283091c90f42f60c28f1923bd634c5e5f
MD5 23f11577bfbf15b079c4a6507e04d9bf
BLAKE2b-256 ecc1ca334da405e2d4e7aeda1f0a2a1ae5d85d757924709ca64d9f6e2f70f2e4

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00236aae22c6609bc8428fad02245099758b2e8531a310c69f7e1d3fdb3769c7
MD5 8e3f0e338043ed68c84ae4945163e0a2
BLAKE2b-256 6d7aa4fe028042e36d2d63aeb68976a3cc04d5ad66caac4d0b3a7bb777bb1441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a351fec7b2f0c2bc9f57f21b416fa9de11e55d2780e9e7ddafc4e622a506b22
MD5 d81e76d28fd162b8dd392a57fb0cd845
BLAKE2b-256 f65a62237d952efe583ef7b408d59c7bb711cb003dc31f15994b6f897f25fac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5341aac695a75509eb333bc7e930ada69a407dca72ce29d5aba29f766a050b34
MD5 dda94e2068736f4d6ffe85c7699e3ee9
BLAKE2b-256 591e29e47fb8c8bb85e74dbe0e99e1ed523c2feb975fc66adc976b67a78b43ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5d4d7cc691035b7c29bf641ef226aae4860a02c161392596f5b84881060ffbab
MD5 4d04f245d58258f9085dad22efcfaa9c
BLAKE2b-256 c20aaa248e5104b1acda27ac31469705e63efbf5115d90824062de7242392d48

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rockblock9704-0.1.12-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 72db44a753e9c28f94d45ab546ad0d3cf63c336b3b1c1c8f44f39e519ab351c2
MD5 5582e9947d40f5cbc908dc9c1441e16f
BLAKE2b-256 df23d2fc6e76be5b039ee3f0dd96f671c8d788cb36f626a814e184dbcfde8079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 414cb7759604afcee192f3af489d04bc540796c7aa4139a46fa1137ba7080c67
MD5 f7f9e41b28c901b6648c8f5dc8f5c754
BLAKE2b-256 43900383c0b8683873216386ebe4ca7fd88d76fd96d812548a5e0258f1c60d7b

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df84f3b364dd6dfc50195794ba52f01caf4545a21f7a57f20941ef2e428c89e2
MD5 209dd3276e6ceebe931e26d89e8dae99
BLAKE2b-256 a2c2f7d0faacf9853bee87da8a467cafeacc9b732b1afd4ddabda45af832c1b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea71127bd907852a168b6474afd38ddba9bfc340a079ecae4fc424329fdfba94
MD5 28225ac0892ff7dd38acc0374d1837e5
BLAKE2b-256 f80933298cff978030bcf02fa45d6deb9aa99dcf14c1e39c5a933774a9323fea

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60f61d1a299fb7a28d09a40f95242fe71cf3eaf26f4d7dc9f2db381bc334f2e6
MD5 bbacfeb31563768568e5f6f7776e0c01
BLAKE2b-256 79b5c67742f6f51e7f74ca277680a228c7bb4cd5d13e9d886474fc6f7da81db4

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1f51b5cb2a90cb6ccec50f61f137cd78c13fa9c5591c508a786efb69138c47a
MD5 8884fd49c99a7a1bc02a6f09fdd2be4d
BLAKE2b-256 32837208c1658ff138bb26de4ce9734776ac01edb09373a5553cdbc3113eb536

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77170e20013ad80dc26b68e8a189d13a0af09e8dd9524203b4a37b70b852f55e
MD5 6c02ccaa3a39c29fdba5a15a03e8ba66
BLAKE2b-256 5f6e160e4b3af84033b7bb246cb4d7b1014568fa68f2b16a24d401288e3b88bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72c58860dd4bd141af1d10edb9dd61b4d6f4eaebda494e600b7c0f434ff3d24b
MD5 a52d742fa434b3664c3ad5483430d823
BLAKE2b-256 60ec820270016ca6b34191677dbe5cb5a779523c8fadfceb6f7e1fc1faaade91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc771de7215ddb06f84505f7c95284e57e81957096927420941417c454b21464
MD5 6389e013c2a6425711fc84aa6b703603
BLAKE2b-256 a2e16255b356b6968af96275d129d83cd3ea887bc14b4619d0058d08f97f2704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5d765621bf6e3949c73af71b24a437b709ad9b8623d56bdef289dc908432c8a0
MD5 8e8249fb5ca2c02eab5ed625605f0592
BLAKE2b-256 fe2694345cd6d6c689e98f1f9ae70aac0d1031bf055e70e3f0bb1e844ace3d80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.12-cp39-cp39-win32.whl
  • Upload date:
  • Size: 34.7 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.12-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 96067c973f436c3c12ff7ed9ab9df1b2037917fd7de391a12180eb38602cefd6
MD5 641008e347a4c74e7497c8c3f7e71f28
BLAKE2b-256 954855ff0a97bc503aed90d53dffe93d07beb0640db6ad46f883c11bb59102b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0563c6d0f5c478216163631b10aaace310e84b563b6596f9d887b2640dd87f00
MD5 742c619b3b4bb07802f41d626eaedc9a
BLAKE2b-256 a08e6e4dfdac2b85a2adab0508195a2a9530601b6e4fd970287bfcdf5cba3b06

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aacfec50cbd1b94b725c822e5b58e27a8c2d653eab0bcbce826fc06104f2bd8d
MD5 7a8575b15e561e097613700178cb1aae
BLAKE2b-256 1489489151dca63cf0dbf77a708d662f637a2bb2814b7f0887fcbf9ce33cc198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b00aa73246f13854ecb8dacef0506f9f831d42ff8766c66e09379fe7c3194da9
MD5 8ea642c80724730e2de262bd389ba593
BLAKE2b-256 08e1607e912990475a569317a38c07ff401798c1e13dae9e5206957d04a0530b

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8fea7af237837e3c1968357917c7e2313720feefd40acb93be75669cacd0099
MD5 eb06b3a57995228dcf6b9c2e350cdab1
BLAKE2b-256 caa0a27943e8dc5d66c3f07f0af16651ab47fb848fb40be68f183135fd9cd155

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb099a159841aefe6dc28ac140edd8ee4db92ad93bf630a24e63c703d13de07a
MD5 df93eeaccd077a3d2b8caf6efac5c733
BLAKE2b-256 3d218597eb4c170ca1d557e5266b38e3f09a2c3950573faa4fd2d3feb5509c68

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea5386a5a77dbd88cb7465e26b47e8be9083fcdde293543a388f3ff0feebf4bc
MD5 7749b749ea1679a29417e32974f550b7
BLAKE2b-256 5191a9dd858beb8933ea7a69ac968d5789f239e2fbea143135caa123cb687f0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb66a192987ed06bb7478f74d927a155156b8fce08609daa3ade0a567ce9e4c4
MD5 fe667d03697a7123ae68eb58a0d0e8b4
BLAKE2b-256 e5a17206aec9d27668447e843094dfa02130f0a1d21e71c4d50385bbfcbadb40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9910c2a71b369ab1eaf1c340c06e87f81d282a6a8b769ab0ea87108477e78e1d
MD5 b8d8162106703f44753e6277ba375666
BLAKE2b-256 778ffcba5aaec9211c8892bc99b38094e3c86d1080a24a39e8322feecc7af9fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5073c050203dc43ba226c0fc2b02d73b9b98853c74ca708d1f830401add9c946
MD5 5dc2709aef2adc3e034f18b75cb198e1
BLAKE2b-256 36fa06f8afa41da9f51b981a34206a6cb5c3c7dc96df3decd294268d78537f48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.12-cp38-cp38-win32.whl
  • Upload date:
  • Size: 34.7 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.12-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 83ea3db19e5a5054da640dc67b0d342332fbf3273ced49c9b0144a41ec77a97e
MD5 e7e6d93dcf32c94884ab03ee92813381
BLAKE2b-256 025cace049d833cc8468b9a7b5643dd588e5b2e8fac87f71847c31b9e6fb7b3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24f82d67a438a0520eb32eb735272c7de40eb60d18238c828eef80af7c2de711
MD5 07f182ba574c0514e71aada596bd87bd
BLAKE2b-256 22dfec2de7583d317723b2df9d673d171e87ed2aacb919f436373ad921c1e532

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 095252377190e82e32b8689aa609c084502355d0a1d71b0e2e2e0ca5aea40325
MD5 8fef435853482773249ab651c92f6505
BLAKE2b-256 32e00f7845cce571e02d3d2a68ae78af6b6affb0eb1f905a3c5fe4aeeaf480d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11d53b28ceef86a37ffc1d1d0f88165965b78f0e32daaf954e04d90ce51cd5a2
MD5 45d456c5bf2b31522d803836e86320d8
BLAKE2b-256 d812fe3544d84e08cd6ce28b77154eb4ebdf79c5d64d448b9a6735073305cb43

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42cf4d6824685855ce61c42ee1d1a1e3b151f15e8862ca38cbbf69c658328510
MD5 bee0d3be20b1215a919ef94122107456
BLAKE2b-256 f78c2bf04b955dba0dc780a0c8846c1edc9287e9b716d2e26369218e2e263017

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eeb9f86c60b435adff63a12d6844985e5b56358a3bdb89585c1efd2c0735d56a
MD5 f092d107924a2fc69c6c50b6240acffe
BLAKE2b-256 8388a7c1abb8e076ef1d1773bcd3c9d1629ade3a6b8292e76eb3045037929133

See more details on using hashes here.

File details

Details for the file rockblock9704-0.1.12-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e44cf95d78e8ecdf2f55ed795eeeb4accde7374c7b9ddec969b350d29ab28a1
MD5 27a4f9d466330f6ca4148ce677c59ae4
BLAKE2b-256 7ab17aaa93ba63a143a36da43847e61f500cf45db03fef81c672f707b69888ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc494ac6ffb5c6278b57ef0d4d48352638ed98257d2133db260dcc85c2daf090
MD5 20d91c723eb0fd0280efb1ad59b63170
BLAKE2b-256 f60aac2dd095212d63e1972637dcf3f160591d7dd591a9761812d361f84e1e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.12-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5cbca3e664828ff0ad00b31a43b0b301063a47d19ce61fbe309c58a08a7c9647
MD5 1e1c4e3200e313b3d737d8c3e69911f1
BLAKE2b-256 4214fce7161116b89ae602ab5d6324a5bc1a45b8f980d09be5cabb4f42286c93

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