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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

rockblock9704-0.1.11-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.11-cp313-cp313-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rockblock9704-0.1.11-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.11-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.11-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.11-cp313-cp313-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

rockblock9704-0.1.11-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.11-cp312-cp312-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rockblock9704-0.1.11-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.11-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.11-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.11-cp312-cp312-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

rockblock9704-0.1.11-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.11-cp311-cp311-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rockblock9704-0.1.11-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.11-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.11-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.11-cp311-cp311-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

rockblock9704-0.1.11-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.11-cp310-cp310-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rockblock9704-0.1.11-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.11-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.11-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.11-cp310-cp310-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

rockblock9704-0.1.11-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.11-cp39-cp39-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rockblock9704-0.1.11-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.11-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.11-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.11-cp39-cp39-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

rockblock9704-0.1.11-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.11-cp38-cp38-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rockblock9704-0.1.11-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.11-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.11-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.11-cp38-cp38-macosx_11_0_arm64.whl (39.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rockblock9704-0.1.11-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.11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9e2ad2859b54d3bd9e2fb50c92cc6e9e0034df411832e62f53d96e41f8009e37
MD5 81eceef7e2f181da2f830722f501e746
BLAKE2b-256 0de539a3205cc5a486e680d64f41bab1e77b73530e2ee18f318e22eb2633df2b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rockblock9704-0.1.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a23b92879067d3618f0e277f8e18e9a6b503acc76873fad9e7c07ac8a12c31ed
MD5 0e3ecda1e97125e04bd7c3fa4599bc69
BLAKE2b-256 6f902f54fe5dcc5950436269774d10367aa12020ca4176e2b18504308d68d6f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 341fd8cd0329c0be005d27568bd02b393284394eee2fd72b5d9499f8c6a03c27
MD5 137d0d1cc89b2b7d1b1a4f065ecff8be
BLAKE2b-256 c559705854d476b28253d056676aeef37d0078ecf7120048d73a52f6d66151c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3918d95860bf962a510d9f0398a87c15ca6ce76b5c7973694260bf50d2a4063
MD5 024bdc7c27b6c98d63d1c432a968aa3b
BLAKE2b-256 312725e1e629ebc01c62366bcfea0e05f2d032af8a059ef62e41cbdbf702f21d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abc82b982ae572055ee36a8468307f0c3db7686cd250bbf660dfc7367663bfb8
MD5 df84adff438dc9448fad286ff51573c7
BLAKE2b-256 bce622d1c1d43f4d4be16ecb8b1df9ebccf8b8a3d74b9a2c8280970e9069e927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6420b5f04e8db930e12783fbb8823618740f53a9edded0bf59f020a000ab7d9e
MD5 050a1a4dc61b116eeafff4b96e6d9cc9
BLAKE2b-256 d833e25b73e4f2934750de7ccb797bab140a227f3f7450bc19365a25013c9540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8ca525becdff4a2ec1081f169ff22102da4b4f86efff84b02244ee913a039d6
MD5 cc9af885bf4697587795c0ff66805056
BLAKE2b-256 86dfba3c6e0bb455edc90b599288cf2633784b37e105f71e5c18477d800d6e76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e58dffade6ee0e563d626445a1377ce194f4c6316ac16506a5e655bac64f44d
MD5 34e038717ed96ac14e400dbf1794dc58
BLAKE2b-256 29dea5cc487d26f84eb03521920d41fa9d9ebd35324b3530fd6fc384e61c736b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffacea912e3136589f8ecd07d2b3f0a2e783c7f4cd68f7853d456f24cb5f739d
MD5 564349faafae61847699fdc19564b18b
BLAKE2b-256 82b20459a952b651e468c54d246e81d293ba96c5b280689bfd00414740edc5ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 11727800e008abe01e83bde3fb102174a582cd4e0f841e564bcdf1b1a22e4135
MD5 830eb137016df747e6ed7f550aa6be21
BLAKE2b-256 9b27d64012e30df97bdc35f14287132b78ee47ffc1e5fddd83213e598f4d4369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d3d4ea2a2bd3d746216865b11cb10af39e4a5067877aad4a68b57a8730f3c110
MD5 252225241017d8a2a164938568f1f3eb
BLAKE2b-256 69403c6f776bdc73e2964f86ac57ff1a5ef91735f113000f8f15e8b208374267

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rockblock9704-0.1.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7978dbce096ec903856c8afd9045e042feb10ef18a0d07604978e2b94ba7e649
MD5 f2792ed87b9c59ad3ec1bac490c188c6
BLAKE2b-256 c47be53ce51510eb3da2295435a3e15fc63606022f0afdce0320cabdc81ebaa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a4b00c4047208a44f0dd31e72a090db4029def822b918b33eb71c415ac1ab2f
MD5 0c2ba8c7a04a63414c99f685138d4e0b
BLAKE2b-256 ccacc961b6e3b0de366e13c8e62896c01c2599fa16bc975e3351ad285f15ab98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00066ebe035b76704cebec51cf252189315bff690a5025976e564a33088ea2df
MD5 ef8934b78ee9a9abe1b8b5e7b1aff094
BLAKE2b-256 bd4da4a86193f54a3166d458afbf9e4e3191312b3059d87c96d990e29766a831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d542914ee7b4aa6439d9a9f73e60db1aab168381bdd1cf19e2394d33d02aa623
MD5 41ab18367e01b6bcc549e417b26d238b
BLAKE2b-256 840c6631135b5859dfd05acc36c7d041ccb3e04f684214d3cb45634e40e419bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba8d392283cf3aac30ec76236146a047706db44eed7f47b3d18fa1321f32e8df
MD5 4237206cc9c8df7f6f8e000707ae7b36
BLAKE2b-256 07fb37423ac9cde4ba57064dbb46c2a527d828975b675206459af51dde3a082b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74b206c8716a4452f18992765013a99f9570b13177c37d937706e076680b99a7
MD5 2befb71c3d6369c2dce2f72665ccdbe5
BLAKE2b-256 709e959fb639973d15ea5779284f295fb79da7fc211588b3fd14d384466a313a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 51fdccbbe219b3cf0384cf2c85975f948a7101c9b7cb09550de9dd4e4db1e4ae
MD5 9be5858e0317ce82e7e51d5df82dc571
BLAKE2b-256 1b0399d3c8d3bb8dfe9b4832b8f2d0c0f62b67aa239ee93f5ae04f7554698f7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8939bf45fcf31248ea49e9dd82e9e543252c3ba7cf448f6b156af14d4dd5505d
MD5 7140207736ed7266fc38f8f57310d056
BLAKE2b-256 f948bfcfe3a56fafe46f5af8cdc17cadf389473e4681e21a0a17a7204877980f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8580ef5c616f4d6c57059fa78f1135e7e069e3b25fd4c450973dc55ce45fa0dd
MD5 74d953fa58225d5950a86e7fbbbb681f
BLAKE2b-256 65ac8e574b73c11b2ab398dcfcb8dcc1d54548177685ce09d57460ad9df9eba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 58ed6f7e44aae5998861814af5727147ae19024af64d08a4085cca745db10ffe
MD5 7f1bbc6e66ce88001f6580fea1b1522d
BLAKE2b-256 0b4edd630aa0b8ecc174f52f87414fdc34d2e53222d7ac105bb14673ffd3459d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rockblock9704-0.1.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 64234eda62e8d76eeba441f5885299c49fb51999d28c65a15241a4708ba27233
MD5 ead5d5e873376a36e39b3ccaaf96e587
BLAKE2b-256 ee1fdcc4a7d11bc6c7ee4e33c22b2f4754889d72907aa2304e2ffe53bdca8159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d075a4957e72437a826a31f3565884e2c4da5acf560f617cde42d614b1d32ab
MD5 4a09318a64b577cf4b96c8b32d41f2d3
BLAKE2b-256 2b8bcda3697ac08a581cab5986fca4ca0d301190278881d5030ba8e3174dcf62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ac0180ed0ead6926f7e2d3292c21b6bbd7b57cde11c5e59481b0715ac12029e
MD5 63dc7ccee0c547635c58bcd12760c36b
BLAKE2b-256 dde22f96d933678cd7010024881bd6104a5be6829fb07e6363309825408f0acb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52ad8e549af2f6a5442227d360e3ecc2d201abf1458c7d65abe764508f827095
MD5 85442fd8010518f0552a21c6f78bccf9
BLAKE2b-256 54880e068d89922e2e86db284241edb72130d12315ac380addb6f54f54b2816d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e30aa3dc6ed3a990d6beddb653351404742a76b9c05568546d5a7598583843f4
MD5 1ef506faa172571f383de1a0f62d7da5
BLAKE2b-256 b049964164e9f5605b647edb71c63f9babd2e85929108174d7adc9ae3fca3bf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e091dd014067e79170862db6454084a81568ff22bd07a31d8b925b66e43ca518
MD5 0773d33dd57b06db3eecb165e2395edf
BLAKE2b-256 a9a53be98ee659edd4e104bd169b537b8d7971465b5210ca9b8303f68e30b416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50c5788085abf292023a3a8031e1971f339d28704d00585edc9acac2499d27e0
MD5 ed0cbdcfaac745db8a6712d338a327ca
BLAKE2b-256 e5866a5df5196c41a913dacc76c83eb7149e83e93bb370ef5561be9304a2ae4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93933c53bd236464d470e2eb63fcd83c36430467f9c0224d7ff2e5fd1a27f685
MD5 88379894d18d11445873db4fe967ccd0
BLAKE2b-256 ab619a2b5e3be756c24c370425837dddc169eca0f6a4db6ec96c622ad55dbdc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8616b604aa97a022385102da8ca221d024f2bcaf289c5b35d7a59021d566921
MD5 8a871816ca0d99d2c1d1bb789e955bba
BLAKE2b-256 68bff4295d489b6100af1678d9a48a0e28495f68dfce0d40638e458c4a3f59b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 10b97438aa225c91818be832756a11f9f58d165c32336f864437f5141e8d1108
MD5 201e08c9702ce0fe2767134bdf09258d
BLAKE2b-256 eeb9adf90f21e3d08f6d46e566bc770bf14292e2acbb3c9691f7df30d5f2c090

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rockblock9704-0.1.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3968f3a640428141b65f2d8616419912c7ff3d88092651466c6e2a9229dd802b
MD5 e7efc804a9dc9d425cebbf2a02399ddc
BLAKE2b-256 03f5818e9b36727d784798cbf9b5810ba75400a3d9916975309d446c6ba213fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26eb4bb387b8cecebe20e79cb7eaaca3ef43465a6ba5115d3a47e042506f5e44
MD5 1c1de79c32dd91e6266597d7055bccb9
BLAKE2b-256 d6204bc86a2c0cfe0f2d2d6c66d0c0a68fa7f12d24efba14a48e79f2fdc7dd5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09694d1bda88e143d57d225f02a8946ac4772a6b2719501af60278de0f26d400
MD5 67db3217fb5e3f11350c4a659fcef33a
BLAKE2b-256 03e9d61707ff1af03983c523ef2301e88a52073e1a2afc5603b8dcbe56722687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df88ad39e1956eceaa5a2a867ccb5e78a3e4bdeb10bf5010863605ab83d65fe4
MD5 b019b50aed91439f3230d70591ee96b0
BLAKE2b-256 a8f4e49ddbb3a3f98305002dbd2025f4697d92d36f7a213fec41de3c2c4f8106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 687d72c42dda35242fd7b15f81fe17a7aaab5efb84e17e77e3535a1dcf2d7136
MD5 8ce79bca2ed54ad88679c7984046f659
BLAKE2b-256 45c9f2d537895dbcbbce1ccabd215cab0bf42fac4eb764ab429ffe8251cf9086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2aa3ded719b851173342e7d71ced94ac560c32a3d52d5595a8f5487f6d8ced3b
MD5 47fcde45a2d24d821a4106c05b6e9d2b
BLAKE2b-256 b7a02acfdaab844b0f02703175112a1ee45a6dc445881e4bea46fb437453438d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6db620f385e0e576afc0a71258c949661e3ba3bd15292931cd59b535cd8d3e7
MD5 11073ae8de9c22719512060b842886bf
BLAKE2b-256 bdbb483f63d1b282d727369b6ac230c9f294a7ef3d827d9ed70b68a645ea793f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 962282cce97a16b15e9493f40b8e57e408c70356108ab043c02f8b0f0616644d
MD5 4eae306fce0e0de3173bc528623eca88
BLAKE2b-256 6e28c0ea740675f5f40efe737a40e8055b44c56945b7c69c34878bd33851eec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19091cb4b0a9539810ef15e8e08f787249cbe57dee17f01e77a472f4d261631f
MD5 71d25e350cfcf073990e271e2cf7a74e
BLAKE2b-256 214210ee2a27af1e28ea031ca33d1254d95d8118abf8bbf92181df6660d77ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 509a39f0627d92e81ecc08bba247ba08e6c309be9c346a2e1d13a6f72ca2e9b8
MD5 2e7fc3126da1a27f6b106d1fb9bfcab9
BLAKE2b-256 415d12f0f846e03641a07df0b64f27bcb7f0e95066f721f26f9430885e6c14ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.11-cp39-cp39-win32.whl
  • Upload date:
  • Size: 34.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for rockblock9704-0.1.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c1986d24ae8cd78c133084b040d673f6b8d64932c317253243bfedb8bb40c4c6
MD5 65bc7e5559094b6d7dadc2ff6fd5782e
BLAKE2b-256 a1f46e338ee1713280358cccf5fc78d085490bfa5c3be97134e96fcbaadd10a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15a281aa8687d43857c99cf75754db8c90482f094de4b9152432e226184cc8e3
MD5 33afc3fe1ee148c4a17f464f913cca97
BLAKE2b-256 f57d75d8e3336c5129094241e33f0b12069d6f1c01520628d6bb3a6c902763db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a31cf385eca0b05420c44c598f86ad32086df838c25e2bb14125626764e7d3e
MD5 7d082f4a343c556e49613763aaedeb97
BLAKE2b-256 c039fb793030fd5751d3fc100e5decf99d67b1b5e5d0d5eb3a827fb6207150c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a418dae6e1ee67f8fa92d9992c52bfccab2582ac4f6d4909eedd6192c0079943
MD5 83d11d37ae8523b233edc5aa72d1737d
BLAKE2b-256 391783c2964c511a3e46b2c486c44452abe4417870d774d89d22494cf496b7da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b153dcfa33fe49b04a2a8d0103cd208f95eee5ebff5d9f4f7deb848f00293c72
MD5 c7f1356d595c5dd8aa67234f5aecc00c
BLAKE2b-256 433c864e996dc08aa5429eb0efce28eb9fd6f6921e4b82f28e8447f520d80c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afd7e319cb944571805fe0aebcab1067ead87aa63b3a99332253e8f7e3d46104
MD5 d6c944475c5770267ec58280b106bc54
BLAKE2b-256 3902dfd602a42d4b31b1df09da73dc2d0c415a6cc1e6d1c424bda4ab25ddd1f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8ecec7c082a1095aee29251f9f44fe63d7187d6822600e33cf27298794f0223
MD5 23572321279b679b14eae1c1bd8c21b9
BLAKE2b-256 f78c777887d36541c424775d45eaaca44f03736f84c6ed9a03db85983d463083

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f76f61b0a8f2ee9e2cc0c318c5a13c6929d3d7156a1e574ca4a351b71963463
MD5 f8deff98a73164bb3af8470ce6799b3e
BLAKE2b-256 0707597b2b0f4012b6bd20dd133aef2fc63336eac72cdd4bf2f674a3cdc8ce36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0f56a4076ec18dee4222675fb4af3b6c184d35ff75ed7dc8cbceee541ca8a3c
MD5 71c4d4cc34b7baa786ee648e1dc27596
BLAKE2b-256 96d2cf219dbfa8f721f9a75c66bc44915f585eea99a3a6c9abe9614dc580ff5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e5063586773084430f442d0c18f28c36d6c280a92cdd60ee5dccf53a6ea33069
MD5 77832058e1710caace602650e1131a97
BLAKE2b-256 4b552b44c33cf079295bc820f778ea26784205fdef4d4dee3e0c83d17d086abd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.11-cp38-cp38-win32.whl
  • Upload date:
  • Size: 34.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for rockblock9704-0.1.11-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 780c885da48d332ac1624baea707024d517ac6c8dc4bac3cd24d240bbeda1ddb
MD5 58d36ec5dc938e6b526248a5bdfc6273
BLAKE2b-256 82d33182833a4c0a8141d77f8093a2e574c152a966cc2dafad3dfd5600d0bccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ee20606040f899dbfa1733d4cd5392420e6d427d42441e24bd21eb15c6464d7
MD5 b0cd2cfb04acdbc7766a31423236f913
BLAKE2b-256 f1c3b92f5358036e31482c15722fa12baeb91d9eb813e0db9ca17080f3e16cb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46827a1f7098f0004abe746669c13f4d00df84b3e5036bc15b32cba6c7f277f6
MD5 f9ab538fbcc9718d18014cdae1ccfef3
BLAKE2b-256 7036f3087ec0797d405a6fc2dd54cf4e32d747b7ccde13941e4cbf8d0b3918fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45f2cc6c05857da59158ce5ff988d5f32f6ae6de2d40bbc270d0a554817c625b
MD5 00d857333233bed65142a0f321b06270
BLAKE2b-256 1d6ffdf9c7bf1759136263a10f4d20516224e06eea06a2070150d385eb5043a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e9063a52b2224a9a0deb9c21d23b44cf98a1b9b23d94c42e62cef23e20187b6
MD5 63a27fdde8d9e4ca014e6194cb813033
BLAKE2b-256 5c6e4b232c208e192675de2af753867707a5d11c40dd9c841fdd3adccd65834b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4205fbcdcb51d1a0a8553bcecd721285c0c40ccedcf6057da053d20e7cdb3af2
MD5 796f8a1ae88b9053a56a9593a2205f9c
BLAKE2b-256 7ba2c8d9ef01da86567d38a370f8b5699d38329781567cc62a20d4b9388d859b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e60b5409ff3c8291b09c276dfcf3c2339fd29da9d88acdbcd7e35a86fff890c
MD5 d1448c0f95db94a0f0f7f17f26bcaceb
BLAKE2b-256 0f0bf9fd4a073b9616eeae0a911820ac5476eeffaeab8dc4205f0c89e492af7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9275617b98f33a739eade3f37220a0fe77f53c4b08dcbe3f53a8b698d5a782cc
MD5 c2d27eaa6030901089ec113e76c69b6b
BLAKE2b-256 2b19bb973ba25936ce6408600297ce43017dbf2896d686fc3dcff9b2797a99af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.11-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 caa0970c5c60a536abd355049696a231285b8790498a0b9a1c719f23816b771e
MD5 06509e486d2298903ed6a8ebae5bd3db
BLAKE2b-256 f581d98f6e66b739031f299ef92a44df078ced0c9720185f887b00efe20fe8fd

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