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

Uploaded CPython 3.13Windows x86-64

rockblock9704-0.1.13-cp313-cp313-win32.whl (35.6 kB view details)

Uploaded CPython 3.13Windows x86

rockblock9704-0.1.13-cp313-cp313-musllinux_1_2_x86_64.whl (52.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rockblock9704-0.1.13-cp313-cp313-musllinux_1_2_i686.whl (56.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rockblock9704-0.1.13-cp313-cp313-musllinux_1_2_aarch64.whl (53.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rockblock9704-0.1.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rockblock9704-0.1.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (52.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rockblock9704-0.1.13-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.3 kB view details)

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

rockblock9704-0.1.13-cp313-cp313-macosx_11_0_arm64.whl (40.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rockblock9704-0.1.13-cp313-cp313-macosx_10_13_x86_64.whl (42.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

rockblock9704-0.1.13-cp312-cp312-win_amd64.whl (35.6 kB view details)

Uploaded CPython 3.12Windows x86-64

rockblock9704-0.1.13-cp312-cp312-win32.whl (35.6 kB view details)

Uploaded CPython 3.12Windows x86

rockblock9704-0.1.13-cp312-cp312-musllinux_1_2_x86_64.whl (52.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rockblock9704-0.1.13-cp312-cp312-musllinux_1_2_i686.whl (56.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rockblock9704-0.1.13-cp312-cp312-musllinux_1_2_aarch64.whl (53.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rockblock9704-0.1.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rockblock9704-0.1.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (52.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rockblock9704-0.1.13-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.3 kB view details)

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

rockblock9704-0.1.13-cp312-cp312-macosx_11_0_arm64.whl (40.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rockblock9704-0.1.13-cp312-cp312-macosx_10_13_x86_64.whl (42.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rockblock9704-0.1.13-cp311-cp311-win_amd64.whl (35.6 kB view details)

Uploaded CPython 3.11Windows x86-64

rockblock9704-0.1.13-cp311-cp311-win32.whl (35.6 kB view details)

Uploaded CPython 3.11Windows x86

rockblock9704-0.1.13-cp311-cp311-musllinux_1_2_x86_64.whl (52.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rockblock9704-0.1.13-cp311-cp311-musllinux_1_2_i686.whl (56.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rockblock9704-0.1.13-cp311-cp311-musllinux_1_2_aarch64.whl (53.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rockblock9704-0.1.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rockblock9704-0.1.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (52.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rockblock9704-0.1.13-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.3 kB view details)

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

rockblock9704-0.1.13-cp311-cp311-macosx_11_0_arm64.whl (40.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rockblock9704-0.1.13-cp311-cp311-macosx_10_9_x86_64.whl (42.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rockblock9704-0.1.13-cp310-cp310-win_amd64.whl (35.6 kB view details)

Uploaded CPython 3.10Windows x86-64

rockblock9704-0.1.13-cp310-cp310-win32.whl (35.6 kB view details)

Uploaded CPython 3.10Windows x86

rockblock9704-0.1.13-cp310-cp310-musllinux_1_2_x86_64.whl (52.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rockblock9704-0.1.13-cp310-cp310-musllinux_1_2_i686.whl (56.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rockblock9704-0.1.13-cp310-cp310-musllinux_1_2_aarch64.whl (53.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rockblock9704-0.1.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rockblock9704-0.1.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (52.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rockblock9704-0.1.13-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.3 kB view details)

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

rockblock9704-0.1.13-cp310-cp310-macosx_11_0_arm64.whl (40.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rockblock9704-0.1.13-cp310-cp310-macosx_10_9_x86_64.whl (42.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rockblock9704-0.1.13-cp39-cp39-win_amd64.whl (35.6 kB view details)

Uploaded CPython 3.9Windows x86-64

rockblock9704-0.1.13-cp39-cp39-win32.whl (35.5 kB view details)

Uploaded CPython 3.9Windows x86

rockblock9704-0.1.13-cp39-cp39-musllinux_1_2_x86_64.whl (52.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rockblock9704-0.1.13-cp39-cp39-musllinux_1_2_i686.whl (56.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rockblock9704-0.1.13-cp39-cp39-musllinux_1_2_aarch64.whl (53.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rockblock9704-0.1.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rockblock9704-0.1.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (52.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rockblock9704-0.1.13-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.3 kB view details)

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

rockblock9704-0.1.13-cp39-cp39-macosx_11_0_arm64.whl (40.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rockblock9704-0.1.13-cp39-cp39-macosx_10_9_x86_64.whl (42.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

rockblock9704-0.1.13-cp38-cp38-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.8Windows x86-64

rockblock9704-0.1.13-cp38-cp38-win32.whl (35.5 kB view details)

Uploaded CPython 3.8Windows x86

rockblock9704-0.1.13-cp38-cp38-musllinux_1_2_x86_64.whl (52.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rockblock9704-0.1.13-cp38-cp38-musllinux_1_2_i686.whl (56.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rockblock9704-0.1.13-cp38-cp38-musllinux_1_2_aarch64.whl (52.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rockblock9704-0.1.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rockblock9704-0.1.13-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (51.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

rockblock9704-0.1.13-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.1 kB view details)

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

rockblock9704-0.1.13-cp38-cp38-macosx_11_0_arm64.whl (40.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rockblock9704-0.1.13-cp38-cp38-macosx_10_9_x86_64.whl (42.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6eb149c4c5d68d7f8f2b510b9499e557ec521b642975857a43e0875ae2836258
MD5 c9606f9dc9ced44b5a470345c0ca1ce2
BLAKE2b-256 317b82172403ae5078a4cdcbaeb2abd8e7fb6f0a39bffeb7f74e41f8e38679e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.13-cp313-cp313-win32.whl
  • Upload date:
  • Size: 35.6 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.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c6004a8d4913df9e41d6f0ebebd3050d43fbc347ae2f8ffb35a32f60ce3571a4
MD5 d92c2c0f384357e9ddd30def34d88f2a
BLAKE2b-256 587fd05567379150adbe065f2cb1d81e038ce8d94bca6428be69c4f61380b886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97bd7c9771c6cb8bacf31eaa489b873ead4e94b2ef55752369c9c3ea7ff41cec
MD5 4b403f8af6430ba3906d6348ca410e12
BLAKE2b-256 aa6eb646538f2d60516b7cdc953dfb4b35f0ce4b7fd1222ca2577cc0d04073a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb033c134aa276ff222a19db727532853d10ed9d2e3f489cead1399294b8c1ff
MD5 148b7978446aa43aa7a7aedaf25b9a62
BLAKE2b-256 8fc7e58a2730127be1ec5bdfb1a3cd55b562d139df5c7eba552ac2bcbdb403ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71192c6fb102a1fbb234804a9c2715632f319190ab6abbedf453a915333cf6d1
MD5 dcc02a61aece46d1a4c8fbf346ec77bf
BLAKE2b-256 2eff43e3057c022f5d2b32bc5f8fa2ee6705a9f6f62481a207d09df7fefd5b88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b06e3ed4a98628477fc0efa1c2fe7bc8274b8f8bff02ab797e2ab8a0d2bd670c
MD5 0fe80f97f609ecd2dd1e5d82495cb4c5
BLAKE2b-256 9ed5c71533f2163996a2d89815f79f8f1cb40b5973046ee5798ae05e557690e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cf8346e2bc9cbb331a0bb1df79fb4c72129abc72faddc5e43b3eedc0d4b4800
MD5 7db8a44fbedf34e7926c018748f4337f
BLAKE2b-256 e936197df8115cb3e0f66fb65c2c4f5a89c7986cdd5ac75f7c9ebc0932f84e96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e46d4c806c1102bfbc1ca7c2551addefc71b767f6e02fab6b84ac589246397d
MD5 0c5ba3330d8f53ba3d83696d1d4e3ea5
BLAKE2b-256 e361e7b4931833946f22409bdb242a3c2b9d6e590a96ac8e9776918f9af0b366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50769a04e698c0dc253c4ecb9c39cbb98007684b678c4444f4e010d5032ef565
MD5 83f6f9d514f6dea2ba974a24c83d0cf6
BLAKE2b-256 205375621094dbe0361328e1a59c7f2b649f74623987a3ee425d5bbcb06a0d58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 06f9ac72315e823f986e06445f3be8149183b85e00e19deb1ea43d8305e7df61
MD5 52e6c073ef3e202a492af4dc7e6d08e3
BLAKE2b-256 6596810cb81bfcaa793845e21bf276227d1b570b84867a904588cbfcbecd9cc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f9ed482cc1c3643d72f71fc30cde89d30c98126e2725034b9317997542291d06
MD5 748d634c705b012724365e8171fdbeee
BLAKE2b-256 623f11b62e7b99eaf6d7c69b3d4fd6af98c9de098ca74b6c98572970df54ee20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.13-cp312-cp312-win32.whl
  • Upload date:
  • Size: 35.6 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.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 448cd0d4d7eee1025acde8b85900fcf199af2b139bdfb0ae0f87cb0227033b1b
MD5 4c93a23bd5da5a9be3a04b6221df565e
BLAKE2b-256 3801e7d5baf850603e70e45f4107ec0131c2c7c74630ae5bdd450de20297fce5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb53568b14540f4e674f5baee01f2f529d023b5117e44fa8ebefd76bd73a7943
MD5 cc7265ff8cefdb473b179622b19cfe1f
BLAKE2b-256 a9ec8ea6b0e5409c2b30c3a6ca7a13b1b1178d63935a40a3a1e2df575c5f57e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85056720ea024aae5e8e31eadd5fe34798bacc270799913fef397982fbaffea4
MD5 f889c89d55b9a09c277f055d6c8d2810
BLAKE2b-256 caf40f41125fe36e5a760afc1478f6fafc71f3c4e96ccdb3fb86a6a1545b3ee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d97ec3f55d3003ad02d43ed8c6aeb181a30fd4cd8d914ec55a48f3a41e212fa
MD5 f279d423324b8e12cead2bf27911ce80
BLAKE2b-256 605d89c90db8528dabb94ebaaa97ed73db34a26784401301ce556220cda773a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a97bb8a96256415af01be4f9372544d09f0f776ac0739228e19156669aa185d
MD5 a69677ae8434a8c82a431a4a362a55b6
BLAKE2b-256 731909b1329ae575b02af9ba156dc3ca8747b901c1c8581648723d9967c3955a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fd459283f78a16c09e83ac491c4441c334272c3a5bff09277a793438b3d130a
MD5 1a1ef92122e4ca8435626ec23903db51
BLAKE2b-256 7ab3d625a3b844bcd7bd5192fbe255a2f0d7c8e64fb02c86b7943241598abb67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dfeacfcc920b91fe6c557c7af73906a4c8ff7445c11653ea844d64d0f3775b10
MD5 7f0916b992c45752a012e5ab6b4b0805
BLAKE2b-256 c4afd4a3d58e55a02fc5d3516c3f506ff6fe182d034e6fc1b6130a1d629b2b89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4dd8857635872c6e8b02d1a86c59cf5d0e66fe129a3a7c1c4b98d131e464326f
MD5 612e40b636f41f8b9e3944fc89083eb2
BLAKE2b-256 b34ed76992c3def2791c1f337f3295bfc6ad2c57e7171b485cb925c32d52d9d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 442d66a8a3388346b4f05cdd16053fc93571c52ff2a42842d49422a50df9472e
MD5 252ccf6b3ddeab6863b6c69338fcd3cb
BLAKE2b-256 af0b28a7b1c61ed0a62a8fb084b84f4272f79d0236539c5f04d33885f25ad551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca62e5cb7c1adfa1fec7cdc3bfcbd299b4bec15d1b4298257f47e4943d715b64
MD5 b064d418a34a15cef297dddfe10b0179
BLAKE2b-256 033726be817d435933c906f22d5db47cce547f004397f94c244a053feaa5ccb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.13-cp311-cp311-win32.whl
  • Upload date:
  • Size: 35.6 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.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 67d88c5e17d70dddf37e341c115091766f0b0bf553d44336942457ba6d399cfc
MD5 c0576be8584fac24bb80ee6fe785b6b5
BLAKE2b-256 7713bcba0a3697af5bdb0fa691b844ab14e54ad48daaa516f6278f57b448062d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fc02cfb1e4ffa82463d0a4ede7f78c1b5061fd23306d85800b88f752918b42a
MD5 cd4982c02a4c425b17beaea1762d65ce
BLAKE2b-256 a7f9dc2501342317d9dfaeb1d9b05872c7adfceb194540c8068a47dc56bedf3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63ecacf6684ea05aaa04b6abbfc87e6cd97ef722ceb60f5662197bffa28081eb
MD5 0aa61143a483d4d6fcffefc43074fd6a
BLAKE2b-256 4de2630ebdc03104821f3c65fadbec3850290d0ca4fc26efd52f42a584b7d8ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0deb7f5cde1697597bfe22dce14626f9a1237ee2ea1486b0c70091ca184efa4f
MD5 3f5b6f6da46f56df4ca02545aae0bf6e
BLAKE2b-256 a88e16d86e7e2d39b9fd3645eb07cdd8d4c860de6babad84bf5438c76a5915c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfd57a3ec50c73d53a2985e6385f163fb19e20fe6bafdefd3bbbfed2b7c98f03
MD5 fd16450fb987f8523ec0886069506358
BLAKE2b-256 a0f92e43f445d1187760360625099f06d3e71924ae3775d254481413a871c969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83a966c79596c4ba4f109c60f14d34788417312380a7a8c9ea9e51d4d558f4bd
MD5 ec706ff244a4892173067e280764547f
BLAKE2b-256 48233cdb109f59094413ff9697c59db253d0fe072d6e6be11b539745f5b23aab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 153e4c2f4cd8a68bb764e7ab8e9e54a93ace25b8f5fba00968006b604952c7ee
MD5 2badca5c54fe6007a0b888c9dbb4da07
BLAKE2b-256 2acfcfc98a13f13cae6b3005224014ba805e684ba005a224230f14ea8aa56762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d66bd5fa93736489f7baf47d87ecca2e6721c76debe8f9636a00f18bbf950b3
MD5 a3ae20d74eeed6a3f41c6a9c19420d8b
BLAKE2b-256 c092fcfd80062b2ff0eec0f7bf73ab47f83870405177bdc9bd15dfd91c106468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d1717686a7c459798b2e039be687499597120714a105a9fc4e0ae0195610e4c
MD5 c98a9865e373e1a7a2ba85764027322f
BLAKE2b-256 7538282d9581cb6441478951f6ed6379375ef2e4c1a322d97c0dacddef025bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2fef9d61be3ceefa24df9bc2055d6b9da954d1e57f16572413117899bafe2334
MD5 bc305dcb82e1f36414b5b9f51cb717c3
BLAKE2b-256 cb220f4fc8673e534303263e058807f223d0e2ab2f529a845f3f7692e138fd34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rockblock9704-0.1.13-cp310-cp310-win32.whl
  • Upload date:
  • Size: 35.6 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.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e80687987d08c9f2897cd25835944d47dd1df995fb5b0ee77b4d543a25d97c54
MD5 158793a3768aef7aa5aca69fbe5d2ac4
BLAKE2b-256 7ca36e32e30881c04a57d3ba4cd78a94fd9cd2afd16f22b3a6e02a32a2d3c061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 680ddbd6f4ac56efd760077d3139b8e26451dadac038c1599078f53b9ff4fedb
MD5 1fbd0b28a71ecedae562dbadf72e87aa
BLAKE2b-256 4ef242f7b36064842e29ff1d9b6c13bec3e31909f7c4fdda9b4184efcdfd5724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cdf940bb53e001ecfe62eb161d159dcef8c6d9de5c66b05bc3765bff3114e346
MD5 169076820a1cf76475bb7ea4359a77e7
BLAKE2b-256 14716039eafb104b56b28995c6c0cd2c07baef5448c55d9386e03164f5063f3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dca6653219541e6372dc878de69f8ec51560aed6a53bdb755471a74910ae6420
MD5 e6d23fca61dd3072e5cde1404e44ea89
BLAKE2b-256 f689036a8cc743386092ed53c516f3bf384499a0ae7666fff2fb9be438180853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d31d257dab9c9f94a629dd57a8b9cc2496994e349f64c136221ffc80716009d
MD5 e79d1499aa29e9e1ac5e9f688a24fb83
BLAKE2b-256 0f8b646b22be399fba9bbe0057c0d5cead387974407ea3216b4c0ea2529efe6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84fc27460c5b6b62853ade19d45defc200c0c92e2a1b0839f49ab8b25ccef91b
MD5 83f4d7e46829edb0f5e4f7381ce673eb
BLAKE2b-256 f75670e75897c5987dc465b4f123b6d5a9d3d5735ab738af91969b7a8ca22f6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d999100c80750890f5b1537847d2f252e3f0f1661d7a3f21307445240df94056
MD5 a2b3001e74ec9605c2be08a82c5aa1c4
BLAKE2b-256 818dd43457fff6a3c4e3ca6159f3e1120f6f452ba36a82072ebd368bcc966211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f82381043a5f8284fa2c28e042cf1030508895dc0089a18a9afb75f74448493
MD5 eb062692e9e7f2fdbe7c8be278bc1c7a
BLAKE2b-256 70257dffab993887f121f46f6f9845fd4335df4188c3f2cd6b72a04bbfa48c30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0552c816ff91226613f98b4e4c1d9c1139d237840388d3c3b2e9dcd25367bf9f
MD5 dc7da1a10133c1c9de90cf8cd88439ee
BLAKE2b-256 7db598480a866fee89838c562df4abfd1e7263c8971e2eec607443d969f3f746

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2e0e6b1f5fcc7b45fc3ad88870e236d5a7cf27c5a9b1ec5d4878be8aea9115cd
MD5 15b83c90436daac8b3c27ff2f9bb4b0a
BLAKE2b-256 0675ba131e337e64e69b69dccf04f009932b994a8a3cd97e641d24f5304deeb8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rockblock9704-0.1.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0125e46377e63bf4d39c9c48498e894c1d2023f317ffe0127a2850252a669f62
MD5 a470be33bb1628d2fd63ec49ec05dede
BLAKE2b-256 74144649eb06047686f72fc66f06d1d7533dae27f840ad9c144f75b42901639e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5f7e56c235c0238dbd962a410e33afca901bb404a3e73f5b8610e22c2cab20a
MD5 9b4625701b21428fde46eaa53019f8e1
BLAKE2b-256 64390dc689441f13300e0bf9ec80666c16f14290afd2a708a0236a20ca470554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 45876d30cb94770521b231d58f09d09630ee5f530a112e4ae4f137152cebc272
MD5 c8b424f0ccb89d3f21dd619388275d0e
BLAKE2b-256 4200d0b72a8657b5658e7587ac1ebe16f7c7cb64f5d9771b7a079b48c4362c3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30797aabf66a1606f6294eb42a1d3d6ce36cf5a0022419a4bc9cdc8d4fc90ab4
MD5 5d6a5dc555f7086ab94c8646eb235721
BLAKE2b-256 c4d02c37fe7153509963e51e1dd6d93a0c35deddcf891dfec9fa52be759f420b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7521144a5463af8e52fc71b22e3d05e07044afe86bf1cc0aad1f1e9b5262a52b
MD5 4267474ed3854511bc017bd9ab5cc9aa
BLAKE2b-256 972583a01565d56c40271a68be95f52bb7dec06ad9627a669bfb34e3dfdb9933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d433327468aebc4624d8885a34c8467c60b42648d8d82cbfb52d31a8e6caf72a
MD5 ad0a3a038a2d903fd3a512cfd5eebc39
BLAKE2b-256 75da98f4c328a3a3daf93d94bd4f2e6fbbe2d1e1d1567740635ca2cf1be8a527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6cb1805fcea4966ab24c12dc2bb80b2304aa66a151c28e1409040b2234a44a3f
MD5 a7502758b3906bf0b55fd5a95f9d61d1
BLAKE2b-256 dfdd66f1c6562a48aa4c92cf6d7bcc32df32d5489287db3c4a012be1aaf2a49f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05e0a4ac6a3947d07098996ca76a4e6f36114c17dd38c38ff325449a94ba0cb3
MD5 2d8b4870ffa16a3a6c9536326026304d
BLAKE2b-256 69dac1ff67512a38969360dd5c4c6932a7ecd7853edb32f45ab60c3fde4177a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4557f92f288d771049b4b0115269409cc6f9b4320d48d07083730ed0d508e7b7
MD5 5ec3e392b7e63edae03a7f3d642738d5
BLAKE2b-256 2f2dc00acfcaad47b2b526a687527184f02d5c58ed868b38633166b3e3790446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 44716becf73f718d6ad592b63a38bc73ba244c1b15a6022f07e79f954aade81a
MD5 b67c2c2dbdd10e8a38cc7511b98d6741
BLAKE2b-256 a2998b93b3237326806874677cd1376409e2b718caa77fd3e91736b05ead4a60

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rockblock9704-0.1.13-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2f47ce46d2e8a99f6472a03a4558b9484540ddea22dcf46a2a14f11ee261bb25
MD5 9864c5c0b91df93134a6ff733da2b3e2
BLAKE2b-256 75b0fa72a855ec4e8b710bfcbad82851c9c72e128037626458c4dca91bd45de4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 351a4e666570d2461f4f25c036516c118b31b95669b8440531f586e59649a6c4
MD5 bdf9c19613c15a8427df6d75f16e1247
BLAKE2b-256 6cce962f9434fd8a9134359dcbd4ae94483bf4e573dda20adf2f6ec2a236e8fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb7c54c48873d456ae2ba74a8fd151c9f35ea1a679580e1ac34d7db91f407497
MD5 57618019f1adc46527f2ea0006c2a908
BLAKE2b-256 d93377ea79fc813ac517f747f7648c2c360d2f6a6911ace4524755dee4537d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 875c531da302929b157111d2a05398e49ee8c6c7ba6b8c3fea9d504724564ba8
MD5 383876db47ddbf10efe1872ab0b27b3c
BLAKE2b-256 8d6193f680e8197c1eb8d3eac51b0282a05d862d40f88b00bf2772ef3db244a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d60cf5314e8730ebdcb42e85103fa715ce55aa8810a57038e9d96029b189311c
MD5 1c2c7a2e8475d96dcfd4bf90cc81cda0
BLAKE2b-256 72bf936328399640757353663b293ce226415f37dc9518ceff21408e989c4692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03e7910e94d4a4953d85fdb26f270178153d5a8104fb9dd34f5d90f40981e336
MD5 341bc8c9a4d6a863c99fadfa13dade57
BLAKE2b-256 47a5c9d5a5dba03abc8d802512a70c2fbcf46948136c29cf532ecc899ee7b3b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf4d899f500f52afc16accfd4ed98e91d196d60671cf70bf2ae69080db58eabe
MD5 41cee1e279e34e3c7f25784390b2c925
BLAKE2b-256 385b37c59f98f7f852788ece10976d9e7bcf88cd5c041df50160d6e2ea0c2e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aab01a8df05c6233adc922f17561f5ea44fa6b5615fd57bbdc2377537f3b1dd0
MD5 2b5aa4a2df23b214cbfdae89dd175ba9
BLAKE2b-256 5a7ffa65ec62dd0d804ba38b0abdfab2613b203d61ad6ba18161c5cc9f4d1938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rockblock9704-0.1.13-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ab12f280890335fcc3c5dd9012fd92fcfd2e4cf65319f4ccd9dbd70941bf87f
MD5 8b501e239ea925fd0441da704385c591
BLAKE2b-256 006483eb021cb55218697be1c604fb1eaae4bafc30d26497f4f0fe25e9bff470

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