Skip to main content

A python package wrapping the nRF24 C++ libraries.

Project description

piwheels Documentation Status PyPI Downloads Build CI

Introduction

This is the official home of the python wrappers for the RF24 stack. It is meant for Linux-based SoC boards like the Raspberry Pi. Documentation is hosted at http://pyrf24.rtfd.io/.

Pinout

https://lastminuteengineers.com/wp-content/uploads/2018/07/Pinout-nRF24L01-Wireless-Transceiver-Module.png

The nRF24L01’s CE and IRQ pins can be connected to other GPIO pins on the SoC. The MISO, MOSI, SCK are limited to the corresponding counterparts on the SoC’s SPI bus. The CSN pin is limited to the chosen SPI bus’s “Chip Select” options (also labeled as “CE” pins on many Raspberry Pi pinout diagrams). The following table shows the default pins used in all the examples for this package.

nRF24L01

Raspberry Pi

GND

GND

VCC

3V

CE

GPIO22

CSN

GPIO8 (CE0)

SCK

GPIO11 (SCK)

MOSI

GPIO10 (MOSI)

MISO

GPIO9 (MISO)

IRQ

GPIO24

The IRQ pin is not typically connected, and it is only used in the interrupt_configure example.

Installing from PyPI

Simply use:

python -m pip install pyrf24

We have distributed binary wheels to pypi.org for easy installation and automated dependency. These wheels specifically target any Linux platform on aarch64 architecture. If you’re using Raspberry Pi OS (32 bit), then the above command will fetch armv7l binary wheels from the piwheels index (which is already configured for use in the Raspberry Pi OS).

Installing from Github

Installing from source will require CMake and CPython headers:

sudo apt install python3-dev cmake

To build this python package locally, you need to have cloned this library’s repository with its submodules.

git clone --recurse-submodules https://github.com/nRF24/pyRF24.git
cd pyRF24
python -m pip install . -v

Building a wheel

Building a somewhat portable binary distribution for python packages involves building a .whl file known as a wheel. This wheel can be used to install the pyrf24 package on systems using the same version of CPython, CPU architecture, and C standard lib.

  1. If building wheels is not done in an isolated build environment, it is advised that some build-time dependencies be installed manually to ensure up-to-date stable releases are used. Execute the following from the root directory of this repo:

    python -m pip install -r requirements-build.txt
  2. Using the same directory that you cloned the pyrf24 library into:

    python -m pip wheel -w dist .
  3. To install a built wheel, simply pass the wheel’s path and file name to pip install:

    python -m pip install dist/pyrf24-MAJOR.MINOR.PATCH-cp3X-cp3X-linux_ARCH.whl

    Where the following would be replaced accordingly:

    • MAJOR.MINOR.PATCH is the current version of the pyrf24 package.

      • If not building a tagged commit, then the version will describe the commit relative to the number of commits since the latest tag. For example, 0.1.1.post1.dev3 is the third commit (dev3) since the first “post release” (post1) after the tagged version 0.1.1. This adhere’s to PEP440.

    • cp3X is the version of python used to build the wheel (ie cp39 for CPython 3.9) The second occurrence of cp3X describes the CPython ABI compatibility.

    • ARCH is the architecture type of the CPU. This corresponds to the compiler used. On Raspberry Pi OS (32 bit), this will be armv7l.

Using a specific RF24 driver

By default, this package is built using the RF24 driver SPIDEV. If you want to build the package using a different RF24 driver (like RPi, MRAA, wiringPi, or pigpio), then it is necessary to use an environment variable containing additional arguments for CMake:

export CMAKE_ARGS="-DRF24_DRIVER=RPi"

Then just build and install the package from source as usual.

python -m pip install . -v

Differences in API

This package intentionally adheres to PEP8 standards as much as possible. This means that class members’ names use snake casing (eg. get_dynamic_payload_size()) instead of using the C++ conventional camel casing (eg. getDynamicPayloadSize()). However, the older python wrappers provided with each C++ library (RF24, RF24Network, & RF24Mesh) had used camel casing. So, the API provided by this package exposes both snake cased and camel cased versions of the API. The camel cased API is not documented to avoid duplicate and complicated documentation.

radio.print_details()  # documented
# can also be invoked as
radio.printDetails()  # not documented

Some of the C++ functions that do not accept arguments are wrapped as a class property. But, the C++ style functions are still exposed. For example:

radio.listen = False
# is equivalent to
radio.stopListening()  # not documented

radio.listen = True
# is equivalent to
radio.startListening()  # not documented

Migrating to pyrf24

If you have a project that uses code from the older individually installed wrappers, then you can use this package as a drop-in replacement. You only need to change the import statements in your project’s source. Everything from the old individual wrappers is exposed through the pyrf24 package.

Using the old individual wrappers

Using the pyrf24 package

from RF24 import RF24, RF24_PA_LOW
from pyrf24 import RF24, RF24_PA_LOW
from RF24 import RF24
from RF24Network import RF24Network, RF24NetworkHeader
from pyrf24 import RF24, RF24Network, RF24NetworkHeader
from RF24 import RF24
from RF24Network import RF24Network
from RF24Mesh import RF24Mesh
from pyrf24 import RF24, RF24Network, RF24Mesh

Python Type Hints

This package is designed to only function on Linux devices. But, it is possible to install this package on non-Linux devices to get the stub files which help auto-completion and type checking in various development environments.

Documentation

Each release has corresponding documentation hosted at http://pyrf24.rtfd.io/.

Before submitting contributions, you should make sure that any documentation changes build successfully. This can be done locally but on Linux only. The documentation of API requires this package (& all its latest changes) be installed.

This package’s documentation is built with the python package Sphinx and the sphinx-immaterial theme. It also uses the dot tool provided by the graphviz software to generate graphs.

  1. Install Graphviz

    sudo apt-get install graphviz
  2. Installing Sphinx necessities

    python -m pip install -r docs/requirements.txt
  3. Building the Documentation

    To build the documentation locally, the pyrf24 package needs to be installed first. Then run:

    cd docs
    sphinx-build -E -W . _build

    The docs/_build folder should now contain the html files that would be hosted on deployment. Direct your internet browser to the html files in this folder to make sure your changes have been rendered correctly.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyrf24-0.4.5.tar.gz (468.0 kB view details)

Uploaded Source

Built Distributions

pyrf24-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pyrf24-0.4.5-cp313-cp313-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

pyrf24-0.4.5-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

pyrf24-0.4.5-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (208.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.24+ ARMv7l manylinux: glibc 2.31+ ARMv7l

pyrf24-0.4.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (265.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pyrf24-0.4.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (239.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pyrf24-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pyrf24-0.4.5-cp312-cp312-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

pyrf24-0.4.5-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pyrf24-0.4.5-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (208.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.24+ ARMv7l manylinux: glibc 2.31+ ARMv7l

pyrf24-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (265.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyrf24-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (239.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyrf24-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pyrf24-0.4.5-cp311-cp311-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

pyrf24-0.4.5-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pyrf24-0.4.5-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (210.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ ARMv7l manylinux: glibc 2.31+ ARMv7l

pyrf24-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (266.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyrf24-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyrf24-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pyrf24-0.4.5-cp310-cp310-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

pyrf24-0.4.5-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pyrf24-0.4.5-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (209.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ ARMv7l manylinux: glibc 2.31+ ARMv7l

pyrf24-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyrf24-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyrf24-0.4.5-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pyrf24-0.4.5-cp39-cp39-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

pyrf24-0.4.5-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pyrf24-0.4.5-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (209.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ ARMv7l manylinux: glibc 2.31+ ARMv7l

pyrf24-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (265.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyrf24-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyrf24-0.4.5-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pyrf24-0.4.5-cp38-cp38-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

pyrf24-0.4.5-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

pyrf24-0.4.5-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (209.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ ARMv7l manylinux: glibc 2.31+ ARMv7l

pyrf24-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyrf24-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (240.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyrf24-0.4.5-cp37-cp37m-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

pyrf24-0.4.5-cp37-cp37m-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARMv7l

pyrf24-0.4.5-cp37-cp37m-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

pyrf24-0.4.5-cp37-cp37m-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (220.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.24+ ARMv7l manylinux: glibc 2.31+ ARMv7l

pyrf24-0.4.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pyrf24-0.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (247.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

File details

Details for the file pyrf24-0.4.5.tar.gz.

File metadata

  • Download URL: pyrf24-0.4.5.tar.gz
  • Upload date:
  • Size: 468.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pyrf24-0.4.5.tar.gz
Algorithm Hash digest
SHA256 4bbb7ad152af9b5961267cb2ae62be172e8b97a008f4448da5c514a9463bc681
MD5 75ddc53f9ef75b4f40199e0bc217f772
BLAKE2b-256 110a8643d5917f8b3392ea0ae90fe37cf78078a9a8b6db46fb6b81ad7455be81

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5.tar.gz:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c4426494aa5083f94a8faf95737b3202269856cb0f973d11b77da85612a525f
MD5 8bc17177bde79359795a7ee2918fbd91
BLAKE2b-256 c6b05aa7ce73fbc76e9bf62d120f755204ad8ce780b54146545444c94d4b1ead

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c964c50f722abe94a81050d7971941c37226c608d2781ca93235dfe0edf0502d
MD5 bf35556d31f7206686d8c59a8b3b8e03
BLAKE2b-256 352ad0326b60b42117dac1aee49fc0a34758a41c6be255f86584c04d3e32ef58

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca99889171d695138cee43c988829f6beaf2592620d1b21b15ccd8222e0bcdca
MD5 32baddcc61767a7d26c4f8c8ff6d9efd
BLAKE2b-256 dcdc7a58c259dc1c3a75bc927efe9e49410566849218c3680ee0716ee5043d5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 031a5fc725c668e172958d79dd5fab53ee9eca06df9c03330102398e3508721d
MD5 42012808bd8e19edb131113bd1a35a93
BLAKE2b-256 789f693eb0c3ca72c6215549ca2b682f913a9e7ad507b4cc757e1fd499936a52

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5183e86d8f395df4ff56d5d4f6ec2322ee96f979409f6107e56c0e09dc02453f
MD5 ce35f53858e69428ecbb6aac4db40237
BLAKE2b-256 9f7281aedfeb23402481696d67a751c2f2fa6b1e773a8032fcd6b709a3b52c79

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5e3ac75de32f436161ab6e9d4683062d441c758a6146a3fe5414f6daf12d969
MD5 4d4335aa39579879bad1ce8c0c205ae9
BLAKE2b-256 81e586ece83599b28eb6783b6fe3b8b45eb974ea0137caa0231d70965c6febff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 703e42099d0f3be8e56fc4e22bea94812e0fe80398518376036ca3311d3f84fa
MD5 683ff38cee4c5ff46f2537b47a1529dd
BLAKE2b-256 6f3cba47d432ca4ea00b63e647c006616a8e17fa17419156ec82161942ea574e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 853fb2f489700f664af553dc1b17bc49be309c2205349a782fa028f8232dfc1c
MD5 1eab13e1377936cb08f7b6618265825d
BLAKE2b-256 f43ce673dfa3fd3f9fe84f67127c71ab0290844978eb4c44ce237cdd3f983b9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c4d9b47a2f866246142c937a6cb8ec3a8d9beed8afe53ad6864d52e6c64d211
MD5 e13f657bb390b4ba8a25faaaf5b23736
BLAKE2b-256 f5115aaa36a20f141286387b239e0cf65d8470dec6aa44d61e8e2a35e9437d70

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 44ea9d6758f5e01dea680eef9880e87b47b957265058e764297ae09462c0d6ad
MD5 5e144b4cc31d48db81a0d3f6e1992f22
BLAKE2b-256 ccaa3963795e42e47d25068491b596cbe0ce0975676b7c2fbd621a66bd1b53ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d2069785ca9363130dc3e21cda4637f7d470579b8d04981d93a55e174578384
MD5 617431a7bd4f18dcf9bc1d799c69b10d
BLAKE2b-256 4341110f8fa47fdccf0755d8318ca593526d42dc47bfe4872a8d1d3d2bc5010c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d48de7501670bc2fa9ba9e9e5918d5e1fbe66e3cda404f59773a78983bc4ca1
MD5 be9a74185a2930e1370bc9c0f0850ef4
BLAKE2b-256 84d1315f91b3c29d702ad05afc6563fd305f92b110dd1f3070ce71dc89fcd89e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f44c9f0514aa001491b2be86f47bf75fcfd1430edeb16ef1d53f57cd40df059e
MD5 d4e7008fd5ffa0bd45e50956b0e2ff27
BLAKE2b-256 03557241b3004a7241bd2dcf769919a17b29b4383837307fc3b0a46be3a43f3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 141c4e2cc82d54b8966853429c30925d48872c64201d1864320068a303c986a4
MD5 eb4cdf38aa846152cacebf940b55fbc9
BLAKE2b-256 6773e45aa54363f397f4eb9c8f4fdfdae6f9d6c6d9a29cb89919abc467622528

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f911ecdbb3a513610dd68bcc4235563e4c5de5250efcfe02c3adafe26d5c1f2b
MD5 223b10e6b65a0d3fd6f02753f38ddcb0
BLAKE2b-256 efd1a8707ecb09b6eae578a7743abc1b0a32a60b4f302e5fb90c8fc7b2e1a4e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cc646e8c603f91bf10d5af7cd6ab76c2ce19c1b205ff11df4e00555016027768
MD5 6c2499a73759c46cc8b1ec7077b3430c
BLAKE2b-256 9303b4114689fa29b9f83735220658208224c316b0ec82fb4a020644b91181e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 caee423832daa94a3201ddf09a595d67dac62615922e6aaf93d4d57fd99f43f7
MD5 2fc3a554bc6a175f4ba2b0696efc3c9f
BLAKE2b-256 60ff323002fcc417bcd4a98fb1d1c6c772c475f190524d93edc2e9165cabdafa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2cbea66324e5b90605601393bf1de7a61d17fa0fa7eeaf210420c10449f1ccd
MD5 b6190ea293bb28a6465c60222b2bf0c5
BLAKE2b-256 2074ce136f625d58b464535008374a931902eec41263c86a7d60030900a67b1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 553238988eec897cd12251aec8227ce38f6cb456e7aec48303f4b42977a294c9
MD5 7222c95cb5cf33498f2dd0cef307a44e
BLAKE2b-256 e6c6778cc3275a1a46673f8892422e9482857ecedb8d1afeb2cf19df07b424fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2220c29061c0171c9a59d333aae39fd5f0053565435e2e662bb31c1dbee18e75
MD5 4de7972e4abe7b71f9f43810bdb117b3
BLAKE2b-256 efa3537868c5dc866bcf53260478cba2937b5f32aad47e2421438eb1e409294a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a82a9aea24068a4fd39cfb950cfcef3ad5ae935735ab320428b59c7918c03370
MD5 9f0f9f64383f093ff1703c4a266dd292
BLAKE2b-256 3c9a86a800c29ebc7d739f197e699ac8ed1ad849be8b1d11ff171b9ab4b103fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8c81d274c8cd4bd26d9bb94b40ad4595c22ea768028f74af5ab87d9adcc7e773
MD5 c990046c5c0fa4e729a671e2eee3176a
BLAKE2b-256 e6e14637976e7d4e39f9e1dd6d19007029a4ec4521b17d0907e68205188e501b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba5163259c0f43a9d3c3590164665c804338df2d3a23b78e0e09dbdd549036c5
MD5 69c780bf04b2b69369891936341c6580
BLAKE2b-256 7868c0e3a401c93388c0f9113a8d2c1a4d3aac648441fbb6020cd2ca13c03457

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f34d0ee555d1195b2eb2a11cfa14cabca613c21e014653e73b9a46c6d2b3fdc4
MD5 403bb1609fc4602002ce0fc082140fdd
BLAKE2b-256 0ce6312b5a26bae9fe559a2b24bc7f3fa120218203fc660f4c22be1186cb57c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8393a64c6f06aeedc92de3611108b168e929243ceb60d9d49b411a68d946635
MD5 a816a6b1c6788f55460a66119a39fece
BLAKE2b-256 086d2dca85eecfc5045c88d0ff7009bc6550f4da6397e7c298c0cbe18dd9e1af

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d003cf1ff314802392114fb726ce30ab861049a93507541c9badad0822dc5bb
MD5 a115b58f52d3492dbbd4e9d5ef7477ef
BLAKE2b-256 9c3f336a400b535d789ffcb7993aa3aebc3ece8c5a66e9729cee92cc7a3a1c42

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d43d654c8c347464d0899102d16b96fdad2af1660cea2a81820bdcd6b28feda
MD5 3a11e820ced0ab42afe9a2b1e6a4f3d3
BLAKE2b-256 05761ced40f0c039e41e06bf60311c18fefb0f3ed99de2724f17296a2a32999d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d9b9a74af811aea9798e98c808f9b258f0356dd7bb42346196972676ea00cb75
MD5 a8ae2f668e8ddaf5bbd60a7116781625
BLAKE2b-256 40e28f0f3f1ef3af263444a310a5ca2b62ce59c28bd34a7cdc4465371e8b430b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1955f2458ab99cb7911e15775b9139e5a26755ba353f2c237bcd5f98ed1529f
MD5 b26b19717040ec4144248190ef1ef13a
BLAKE2b-256 954a92c6a2bca9dd7de260e05e56b7df322e1f4b010c150626a6f9b05eb95bf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39e2a443346be64a8e4fafae72e92d00ff19829d20dd7c59d2b5b7f12f08c6ec
MD5 621bd23df7cb6c19ef0cfc7fc5082f42
BLAKE2b-256 4fd274ea20636235eae293c73c4859bee46afd4b4d720ea2b81e3255705dea0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 610c11d46fc5e2ed3613e0a444447d3cddfb314a1d7016db1132fc3d1cdd2180
MD5 8761caf93d22bd2a358d92568f5f3b94
BLAKE2b-256 c35a8a4ec8633b48a21b62bd49ebb624f7816b084e62a66017c6abc5d69d7e9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 54a82de0d1832c6dc6469756680edb02e10bc8733f39685dac7b922acdf5ac9d
MD5 58af55fd955e661f86d779e373efb843
BLAKE2b-256 60fb1f6f7b6fe10989cfb0797174878f5edd9be464613438515b590ddf35e7b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8018adf16539dc9de6564d136481a0b363eb6a3a73b1edf6c843eff0343030d4
MD5 27c0df895e1e5089bcef369a03fbf97d
BLAKE2b-256 90f241c42e9cafa5295553143ddeb611543084999ff8defaf981105c39a1e4d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e3368016f08624b800e8f1eb7013ccb0bb1cc8e622ef20e2d905831c9c5970e3
MD5 d1e16afb5b04e62cbdb60d0312600f65
BLAKE2b-256 45c118e578813330ba17204a9570a133e553dcb2993b2a4ccd291f08b0b4b209

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f233cac472284a23eec1043846568426e19e3c9f46536649ef92de513ad38fd0
MD5 691370941b4d8b36784e7547d3ed6977
BLAKE2b-256 b07eec44d72eb313a681729453c980f32f29cd8a0a01ec3c0f44058d5fecf903

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d13328d344f8fb3aab3d30c896feb765576cc8737d2ab6dd395829ed685a5ac8
MD5 3c9254aaed07458253024eeeeb3ec196
BLAKE2b-256 21634f8a2da077908f2bd01a7df79bf9db5d25273aeff141d0c0e90a2dc529e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe56d470e2a91fa6f73d703d1289f7569204dd33af3f7b202065fd832e78df0d
MD5 97318bff64b32e13b38d0cbcd1393b16
BLAKE2b-256 008858785566ea77f187636c3d8fd1e77d35f2790ac0af8575f5c87c69311feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 193cda5490c5dd06f07dd9c5df6066acfea55fa0a38986dffbd4c301d523889b
MD5 1a09b739459c59ceb810cf622da67436
BLAKE2b-256 c2410443afcc13f360213c4a13e6873ec8646d85ce51ffcb3cd485a73fbe46a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp37-cp37m-musllinux_1_2_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd8be88db177756146e8732c325569833822f945f0c9cef5ff60f550ff25d471
MD5 abc2d5e96b6b77eb3a4379d66c1d8b75
BLAKE2b-256 a0c34055d9dbf4c66ca8364d8503bfe0a34b18d3af1cddc3e2e4a873b508638d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp37-cp37m-musllinux_1_2_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp37-cp37m-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp37-cp37m-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e4362c624ee15256b9b4f3123a53c19f332299c4c6fc92018e5354fc865d11df
MD5 95c9005ac1012b8cfab3a97adbe6f3a4
BLAKE2b-256 7f5ed78f08e113ff2cfb87aa1da95a2716cd2dd25c5e1271145211c16d4d9d7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp37-cp37m-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c1a34aa589a09d4e7492f3881e516ff9461262a39fd6d10486d425356e0f31f
MD5 e780bd6fdec582a4457c49f54b16178a
BLAKE2b-256 1c6abaa8f251cdf119819f6bcd3509db0eb2cb8c3a5002c574598386e03c9613

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrf24-0.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrf24-0.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e5e8bdc53b209575add3ab00834bc21352751f3385ddda28b91f1eaf9ee9bd9
MD5 aa440bed692ce726741e7edeba046eaa
BLAKE2b-256 b8d12698dae78469248585febdf1876ec91e761bd498edefa9bcdc7d4e1eb12d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrf24-0.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on nRF24/pyRF24

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page