Skip to main content

Tools for converting bluetooth data and packets

Project description

Bluetooth Data Tools

CI Status Documentation Status Test coverage percentage CodSpeed Badge

Poetry black pre-commit

PyPI Version Supported Python versions License

Tools for converting bluetooth data and packets

Installation

Install this via pip (or your favourite package manager):

pip install bluetooth-data-tools

Usage

Parsing BLE GAP Advertisement Data

Parse raw BLE advertisement bytes into structured data:

from bluetooth_data_tools import parse_advertisement_data_bytes

# Parse raw GAP advertisement bytes
parsed = parse_advertisement_data_bytes(raw_bytes)
local_name = parsed[0]        # str | None
service_uuids = parsed[1]     # list[str]
service_data = parsed[2]      # dict[str, bytes]
manufacturer_data = parsed[3] # dict[int, bytes]
tx_power = parsed[4]          # int | None

Or use the object-oriented interface:

from bluetooth_data_tools import BLEGAPAdvertisement, parse_advertisement_data

adv = parse_advertisement_data([raw_bytes1, raw_bytes2])
print(adv.local_name)
print(adv.service_uuids)
print(adv.service_data)
print(adv.manufacturer_data)
print(adv.tx_power)

Bluetooth Address Utilities

from bluetooth_data_tools import (
    int_to_bluetooth_address,
    mac_to_int,
    short_address,
    human_readable_name,
)

# Convert integer to MAC address
int_to_bluetooth_address(0x123456789ABC)
# "12:34:56:78:9A:BC"

# Convert MAC address to integer
mac_to_int("FF:FF:FF:FF:FF:FF")
# 281474976710655

# Get short address (last 2 octets)
short_address("AA:BB:CC:DD:EE:FF")
# "EEFF"

# Format a human-readable device name
human_readable_name("My Sensor", "", "AA:BB:CC:DD:EE:FF")
# "My Sensor (EEFF)"

Distance Estimation

Estimate distance from TX power and RSSI:

from bluetooth_data_tools import calculate_distance_meters

distance = calculate_distance_meters(power=-59, rssi=-60)
# ~1.135 meters

Monotonic Time

A fast monotonic clock optimized for Bluetooth event timing. On Linux, uses CLOCK_MONOTONIC_COARSE via Cython for lower overhead:

from bluetooth_data_tools import monotonic_time_coarse

now = monotonic_time_coarse()

Private Address Resolution (RPA)

Resolve Bluetooth Low Energy random private addresses using an Identity Resolving Key:

from bluetooth_data_tools import get_cipher_for_irk, resolve_private_address

cipher = get_cipher_for_irk(irk_bytes)  # 16-byte Identity Resolving Key
is_match = resolve_private_address(cipher, "40:01:02:0A:C4:A6")

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

Credits

This package was created with Cookiecutter and the browniebroke/cookiecutter-pypackage project template.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

bluetooth_data_tools-1.29.5.tar.gz (18.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

bluetooth_data_tools-1.29.5-cp314-cp314t-win_amd64.whl (490.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

bluetooth_data_tools-1.29.5-cp314-cp314t-win32.whl (467.6 kB view details)

Uploaded CPython 3.14tWindows x86

bluetooth_data_tools-1.29.5-cp314-cp314t-musllinux_1_2_x86_64.whl (560.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

bluetooth_data_tools-1.29.5-cp314-cp314t-musllinux_1_2_armv7l.whl (541.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

bluetooth_data_tools-1.29.5-cp314-cp314t-musllinux_1_2_aarch64.whl (556.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bluetooth_data_tools-1.29.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (556.5 kB view details)

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

bluetooth_data_tools-1.29.5-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (533.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

bluetooth_data_tools-1.29.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (557.1 kB view details)

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

bluetooth_data_tools-1.29.5-cp314-cp314t-macosx_11_0_arm64.whl (508.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

bluetooth_data_tools-1.29.5-cp314-cp314t-macosx_10_15_x86_64.whl (506.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

bluetooth_data_tools-1.29.5-cp314-cp314-win_amd64.whl (388.5 kB view details)

Uploaded CPython 3.14Windows x86-64

bluetooth_data_tools-1.29.5-cp314-cp314-win32.whl (378.4 kB view details)

Uploaded CPython 3.14Windows x86

bluetooth_data_tools-1.29.5-cp314-cp314-musllinux_1_2_x86_64.whl (425.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

bluetooth_data_tools-1.29.5-cp314-cp314-musllinux_1_2_armv7l.whl (129.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

bluetooth_data_tools-1.29.5-cp314-cp314-musllinux_1_2_aarch64.whl (423.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bluetooth_data_tools-1.29.5-cp314-cp314-manylinux_2_41_x86_64.whl (139.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

bluetooth_data_tools-1.29.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (424.1 kB view details)

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

bluetooth_data_tools-1.29.5-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (127.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

bluetooth_data_tools-1.29.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (423.3 kB view details)

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

bluetooth_data_tools-1.29.5-cp314-cp314-macosx_11_0_arm64.whl (399.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bluetooth_data_tools-1.29.5-cp314-cp314-macosx_10_15_x86_64.whl (399.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

bluetooth_data_tools-1.29.5-cp313-cp313-win_amd64.whl (385.4 kB view details)

Uploaded CPython 3.13Windows x86-64

bluetooth_data_tools-1.29.5-cp313-cp313-win32.whl (376.6 kB view details)

Uploaded CPython 3.13Windows x86

bluetooth_data_tools-1.29.5-cp313-cp313-musllinux_1_2_x86_64.whl (425.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bluetooth_data_tools-1.29.5-cp313-cp313-musllinux_1_2_armv7l.whl (131.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

bluetooth_data_tools-1.29.5-cp313-cp313-musllinux_1_2_aarch64.whl (422.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bluetooth_data_tools-1.29.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (423.2 kB view details)

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

bluetooth_data_tools-1.29.5-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (127.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

bluetooth_data_tools-1.29.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (422.3 kB view details)

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

bluetooth_data_tools-1.29.5-cp313-cp313-macosx_11_0_arm64.whl (398.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bluetooth_data_tools-1.29.5-cp313-cp313-macosx_10_13_x86_64.whl (399.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

bluetooth_data_tools-1.29.5-cp312-cp312-win_amd64.whl (386.4 kB view details)

Uploaded CPython 3.12Windows x86-64

bluetooth_data_tools-1.29.5-cp312-cp312-win32.whl (377.4 kB view details)

Uploaded CPython 3.12Windows x86

bluetooth_data_tools-1.29.5-cp312-cp312-musllinux_1_2_x86_64.whl (426.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bluetooth_data_tools-1.29.5-cp312-cp312-musllinux_1_2_armv7l.whl (132.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

bluetooth_data_tools-1.29.5-cp312-cp312-musllinux_1_2_aarch64.whl (423.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bluetooth_data_tools-1.29.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (424.6 kB view details)

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

bluetooth_data_tools-1.29.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (129.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

bluetooth_data_tools-1.29.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (424.5 kB view details)

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

bluetooth_data_tools-1.29.5-cp312-cp312-macosx_11_0_arm64.whl (399.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bluetooth_data_tools-1.29.5-cp312-cp312-macosx_10_13_x86_64.whl (400.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

bluetooth_data_tools-1.29.5-cp311-cp311-win_amd64.whl (386.1 kB view details)

Uploaded CPython 3.11Windows x86-64

bluetooth_data_tools-1.29.5-cp311-cp311-win32.whl (378.2 kB view details)

Uploaded CPython 3.11Windows x86

bluetooth_data_tools-1.29.5-cp311-cp311-musllinux_1_2_x86_64.whl (426.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bluetooth_data_tools-1.29.5-cp311-cp311-musllinux_1_2_armv7l.whl (130.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

bluetooth_data_tools-1.29.5-cp311-cp311-musllinux_1_2_aarch64.whl (422.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bluetooth_data_tools-1.29.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (424.1 kB view details)

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

bluetooth_data_tools-1.29.5-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (126.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

bluetooth_data_tools-1.29.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (422.9 kB view details)

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

bluetooth_data_tools-1.29.5-cp311-cp311-macosx_11_0_arm64.whl (399.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bluetooth_data_tools-1.29.5-cp311-cp311-macosx_10_9_x86_64.whl (400.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

bluetooth_data_tools-1.29.5-cp310-cp310-win_amd64.whl (385.8 kB view details)

Uploaded CPython 3.10Windows x86-64

bluetooth_data_tools-1.29.5-cp310-cp310-win32.whl (94.1 kB view details)

Uploaded CPython 3.10Windows x86

bluetooth_data_tools-1.29.5-cp310-cp310-musllinux_1_2_x86_64.whl (143.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bluetooth_data_tools-1.29.5-cp310-cp310-musllinux_1_2_armv7l.whl (131.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

bluetooth_data_tools-1.29.5-cp310-cp310-musllinux_1_2_aarch64.whl (140.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bluetooth_data_tools-1.29.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (142.0 kB view details)

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

bluetooth_data_tools-1.29.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (127.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

bluetooth_data_tools-1.29.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (140.4 kB view details)

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

bluetooth_data_tools-1.29.5-cp310-cp310-macosx_11_0_arm64.whl (117.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bluetooth_data_tools-1.29.5-cp310-cp310-macosx_10_9_x86_64.whl (117.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file bluetooth_data_tools-1.29.5.tar.gz.

File metadata

  • Download URL: bluetooth_data_tools-1.29.5.tar.gz
  • Upload date:
  • Size: 18.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for bluetooth_data_tools-1.29.5.tar.gz
Algorithm Hash digest
SHA256 a28eba92f5df502aad96024b93bb79e21ed12fedd704e7d5ec92729a3460ca3d
MD5 eb27eba6832a16c6a3c3b752d3301947
BLAKE2b-256 95a2208fc1574839f465ecf1763e4409c8c8fa56c54820998c29e68576d8b5d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5.tar.gz:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7c800834baf6891a9b359a0c9cc1aaf2e5cc631976e35452d463ea9e89f574fa
MD5 c0920b164a2dae18dffb72e6cf342e66
BLAKE2b-256 d5aed594c47ebb7ef45c72cf67d9301d2c4f717418fb97cf763bf04cdffb429a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314t-win_amd64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b5f08dd0e16dc76026bb76daf229f8030fd8098b9646e5836e669607c6ea1b03
MD5 4c0698d5a2e902424b1ecb997ee41a32
BLAKE2b-256 acd760f04ed98bd39c4e52f72e22d913547106d848799e4080551e765d3149f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314t-win32.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b13fdf6c72279ef77b60518118817ba7a9e644711f48cacf859b49478ce3fef4
MD5 7aeccd66bb3e8c35be2ba67d0a7f409a
BLAKE2b-256 bc53ae25cedc4541655562cd5a6951c6dec53b24d9fa17156d3817915a138b4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9959babe5ac9fc052bf3876b326bf78b920071813afe4100f4edaa6c2602786e
MD5 d817ff3d5bc97989acd627043bcbc7f9
BLAKE2b-256 b7141e81651eff2ae8d9bb113fdae9d920a72f63a8ed7220eb9e285d2abf65e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f45ef6189064c47b31dfac4d52fbf18c959d8600554e690fcc1be5a085ccb1a2
MD5 cc31fd802b5d11022d6d9b58b8eabafb
BLAKE2b-256 cf2f07a1fd96b33f7c8d9515eab7322a2c051b47da80ef0f4b75570121428d8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a52cac5e41dfc34352e95874e7a4b76554df3cb5c772885cec7c27fc3a578cf
MD5 59bdf328521abdaeab6cc83b4c1ea929
BLAKE2b-256 2c84cd98616c60c8140009502cffdb7001bc4346be0531dbf581bb22c0834a6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 db7e4e2fb1e6d72405d69bbec8ec1d1777fe2a6f5deaf71f93570c730b402df9
MD5 a4a2db7ef8b16ad6e6b7c01927cb4a24
BLAKE2b-256 963af7056be62f539734ce79a2d09df483980f001d80745e4f3812dadece8a47

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62d49d6cf6e428be1358d65a5d2c6b27f4dafb6bd3fc5f1fc43ec56988754b23
MD5 8f703fbaf49c5f4115e9659380e4d557
BLAKE2b-256 31239b23b2cf9545e2aa2e74a49dddc42f389c83949bdf58fc537ef9c3cf731a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 272606f26ad1d22d6837d0dad2e7955b7f4f42aeec8907f97a3db12816381b0d
MD5 19a0e451889d41064e427761ff953d1b
BLAKE2b-256 07cfc3ca78c9069ad8fa10eb90b30ff931d0c5c057303c538e9ab990d8620a1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 580ea57eecd8d5700d5a0527fb2de6294ad1f96d3b95114451ba9c5f1e14b9d2
MD5 d2b25d9540630af31ec38bd40ee1064d
BLAKE2b-256 3038d36153152581cccf339cbf97daa8f03d51106247237a9c4e8f1341afdd95

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 346391b3bfdf8e070b16a721af0ff12569ce2d113999f6750b56a8b567412bf6
MD5 59933d85730306409cb88da1045fae7c
BLAKE2b-256 ebb6e0227dcf8e017d671755fdce212e9ab232b531fd4e1869cdb6432bdd9bc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c3a8cbb26c7a510c2cdea3da0901e33b54aa298db8fb0890f9567e23e777cce7
MD5 241caadba00125efee8fc2ade4341edf
BLAKE2b-256 ed3ed341bffb151cdb5207b515a1bed69ea58a2140a4dc9a91354c4ce0f06635

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314-win32.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43a7d3f4a3fd9f672590ea53d43d4dc964eed0379874b47fc6636fb26bd64658
MD5 fe6fb471cc5b872a213c8d94ad04d697
BLAKE2b-256 b62fe07f96620cc142d72fdcc3a0ef8ad0abcaa93c11ced113ed8daee33b9b8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 991b1cdbf71d92b75dd88b7adeaa18a081903e09c1d473a2e957147188512fe5
MD5 87e4614e9cd99fa62ec8b79702e6bff1
BLAKE2b-256 768dd269846a4d22054638e57f17667b70a1b6b6d73d99b2ae5e42998a646d7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c2547796c0b0d3a04b0d7f055c1f842af77966bb34247038ef72647596a1fc8
MD5 3c738b76b6a43955c3bca22cf39c3d85
BLAKE2b-256 1f63d75cfc0c21b500fd523e609ee44f8e6750f836f9ec56daa5641cf0590351

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314-manylinux_2_41_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 df9939f482ba969d24b301f27ea8510983dda89bf4d3c9c4d1ddae53f7f9f09d
MD5 2e6a17b00397b28fd0bf90aa15d87886
BLAKE2b-256 6608405c5d0313570c322dc03f0317fca2d8bf37f6e6dd6ddfba6e7c292e4db4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314-manylinux_2_41_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 570d12db7de4ba2a5d5e546a6416bd789bbffcbce07829f0301b86c0980c80ea
MD5 595f1a72e23ecf4cf491bacee3070981
BLAKE2b-256 dda6506a094b71ce296a5cf0914c7481a785e2de44b649f68731369994e8e311

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4c300d91b946bb3a58775cd003c34f4a8b648189e8e2502c800e14c8b3f2faa2
MD5 353e739aecd1b4352db052adb74ac446
BLAKE2b-256 d65c06d32dc2ab8004191eb3d24c48c2bd74d8ce26e4f1f9e7680a5c8c9caae0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 51e8d0946efa8b639227b9ecf348cd26b045e8f175b6fe71de6274566610ff75
MD5 0305932ca0cdec681029e918c605a671
BLAKE2b-256 3e172c5ac3587edff88c3ebc1f0c28d4384239cd680d8e1508b0654b241c1636

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dbc743b18ba0b4e710d87f7ac635b1ae66f17673913d8b7020c72a0a53b61f6
MD5 51c1b48ff016eb6785a0942943a7c7aa
BLAKE2b-256 43f556891bc0ff5df13f359029446622f2dfe47eadf630290df9a42d44cf6c1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aa0fc83c396e26ac5d4b00982cdf7ff6b955ea6c242f21fd4e5ed7acdaac64a8
MD5 5c7a04a9069179c45e9dc31ca3de623f
BLAKE2b-256 609b6cfdbc032fb2fddcea08e4730bddbcb1fefadd189f6f89ec1b176f60c309

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 007074ff7382e215dff352decb0ac5798466937ed80a5acfe1bf16a22e00c2a0
MD5 27af188c02bb46199a40fec97980c15f
BLAKE2b-256 d9254099284d6de1b0144333cbae06178f362b2705d571bef49b8f0890053b57

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3229c20c69916ef370ba3320cdf2fba34c189c15246666a12c4d45e0acbb6086
MD5 8ee4c9add321fa5d7c1ee5036e473884
BLAKE2b-256 20446473a73d13c4fb8fe8312c59a2a5b9df70041e8568a71c008a04630abf2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp313-cp313-win32.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dff2efecf92dfcb73eba41c2a2a14996abf71516ed2a6e7d7e9aa78b9f62a0fb
MD5 3ef4b26b9bbdcf34767c50d8fe71d709
BLAKE2b-256 231eb0963646078431bb714fc2d93c6a2ff00c8eb857f86d5094f9880d9dce92

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5c10ef871d44097dc5a85b4ce20fb59390ef74356888c7d038aa644b668efae3
MD5 a71998dd7327d482c5b030a831905f5e
BLAKE2b-256 eaa986646c4bf4809259e2334245acc5fb474ae1c435b71909dbad34c9b905b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6fe2973e3069a0b7fbea718ccc5b9514a32e6068d21757799f93d7814a729af
MD5 8aeca2748e9480976d4a960fdd6b316c
BLAKE2b-256 6971097f3452b048e00c8f838b698ee19fda6ba9d94b285b7ae8fe0650842dab

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79f3ec657124842633b9ee9b777492e32bec3088d10b1278c15b8e749dcb697e
MD5 6a3f341b4a9ffa004f4c4f718c22df1c
BLAKE2b-256 c7f4a8b8873661b19f686babde40bb6131f1632068809657cbe9e090b728753c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0ec3e6fbe68c4acab9190116ef8106705e1a3086fc9dba9c850369c69870c626
MD5 642e4318a396b40d023b56a51acd79e0
BLAKE2b-256 c3c042e80619befa3fc57bd90ea6a9b64049ab681d707dbf8044ca1bf05c6538

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22f500518baf42ab365ca1e822f5ce305d39138fde7923998a89cf8c802a4413
MD5 4e70c3885f194a38d11ac4257eb4821e
BLAKE2b-256 4e57a1e600e36ae6f2d5eb8429e1985ce1155872644535ca498a8ecdc8175172

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2cad534e914360b081b28df2dff2ac0cfd1d69f5e2581ead99456ae9940eeb6
MD5 7b5ed1354d7cebaab8d1c6be24cd435f
BLAKE2b-256 8300e01f1f61a767d9e0c77fba7abe78912d104b538a147ff7463f57b04f95e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 29b4dbf0bc47ed44fdcb1f2a656793c2c182a1d0354ce19296e58905ad518a9d
MD5 89573d1479595ff93d0db47fbb06825a
BLAKE2b-256 b6219a98360087c3ff365d0892357ffbb2af3c47ed8281e0a33afb87fa1784d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ca4fb93d56b1131bd074d209ac07531fd081d8cc84c99124adff5ca1cea67531
MD5 e5365b3b82de99e45a40203d3afa8fed
BLAKE2b-256 a4f42c81d75590ed01729fbe6e4f5a9e640381da225b954ca73962f61d0d484f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 500a873ea7274d443562a1e421663f7e4557ab3ac3647a8360cb2a30079530d6
MD5 cd26809d91273c1ffebe4223d3ddbb2f
BLAKE2b-256 faf8b00a8142b688e0777861d1cdf5572a8abd6661e3fd8faf13d64f72a47ce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp312-cp312-win32.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ada31dabd63fee03b57975128ad832793a22ea560426b5ad5a18fe1a7de10d2
MD5 4f97cb5950c28c76ae2b414ce2b4df40
BLAKE2b-256 8cbe7fd420dc42a83e618827796c5178fe0ad0aa7084a8343ef9357ace2e2eef

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3e0f61d60747f8a957b3d2ad364fe7ade66a552335f7930c88a597776b8d485
MD5 6ce31f29f5a4930c9f2ee53a7e536bce
BLAKE2b-256 025d1136aa87d80e51d9709b64351863fcfdd16bde131e84aea90fdeb860e804

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b55e66ca67243a5edd4eb784d1bbb4f64f1373d946fa97a7f03314f72bed71d4
MD5 d083e1f86fea711fa8dcfbada3392f75
BLAKE2b-256 c4d53a44e6c7f32fb17f6cc8a5713f41ad7efbf8cbe8c85e220dda85eae41983

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32c9fca7a8b7fd2cdb95bfc5afe01182212fa0883b1934015c62f2476af1e43c
MD5 413c9d3449eb1c96359972325e440a25
BLAKE2b-256 e1ddc8c583dfc82c36420bb0fda132eb6e0dfcb1e7be45a05d5f0dbc74cfc692

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4e6502d6fd251d623a914fa6394115cca968a6ae51034bba7877bd56cf95cb78
MD5 e16681953a373e38e461ef40d9b7ffaf
BLAKE2b-256 3da27ddadf4cbeea15c6c3b1e546d9990fe42e5c27e416c3d3c027cd3db3e9e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a0987616df13406cbaa67a8c7592b4fc0ae1d9924efc7528307d25a949f51b7
MD5 37404d3065feccdbe7e03761e68462a2
BLAKE2b-256 2797221ac13a08703d0da70b2357920cb86d1e1ca73caaf03760af949eec48f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 795698bd3f82668cb3f81a488cf9cb721a1e37f01620308e61f7bbd018de3834
MD5 e7e909745754ee3b814ed9233a83091a
BLAKE2b-256 8d21a9b76f3e5424cfa678f9652e48050b6ce8759d689ff4f765f19d5ec2b632

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 eb9cc5a83eb1abc23ffab6c3af8fb209797164d63efa4720907beff3a2df4053
MD5 659cb5a68a6775735a4d99d3477c9051
BLAKE2b-256 26c68c417fcee7d8a8122524e63aca50d43f333489fdc20cb71f66d7630d334e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1390da476c4da2cfd1b0ccc30abc6e8398a0479114989b394741e9d258cb7338
MD5 36e8a4354749c5cedb2a0a96785cd952
BLAKE2b-256 1b1f6553ec46587a9395d93d400e0e7b85cb211d83c67b130bbcd9249dcadc3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a6fc79b1213e9da65cf751f3ead7ccd1e77cb9c1d9eb83a14f900186649bf417
MD5 93c0a0886e9268ac4e700207c3253df5
BLAKE2b-256 c4b8bd7bec66fd340a8ed3dd1a091c4bff96ca1657702ce6e012f0993179c0e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp311-cp311-win32.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71ac60fb1ebb4da05d094c4e8937fbc256c38bc37028f58e230209fc01bd2315
MD5 0c7ec4d1c87cc1f443618b99286d8600
BLAKE2b-256 bb10d98d265779009c6da2f96afc0fe8985ab0da2fcead38af1f158259dcafe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce8c6b6ca2606ecc571908b03f9a3359f5559505c65f16b4aca11506598bc83c
MD5 ddfb341441f3abc0822b2357808a3285
BLAKE2b-256 fa2d83baf551335f188aa5cadedaba7e750c0f1513322a9d7ea9ca83d53ebe5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e8c062522dd0baa65b69297a4692f4fb6542b29847c66d5cfaa28bfa1c6e03d
MD5 22dd7f568206194597990dda21d497ce
BLAKE2b-256 2127b24f5d2aea13eaeb9aef08df2674feacb69e82e23b6b6384edbd08b63a1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cffd601cee0c75069f8d510fd3ffbe9f07126c3229b82081116f06877e1db3cf
MD5 1c367d882c61e26ab733ce59a6a22789
BLAKE2b-256 54493e94d5db21d70320f954da3823c7254f5abe42d3fa3d3664fd190a2da42b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b92889e4dcff838ad830df59843bc5d5a28a70010bc040b4149a74a23018081d
MD5 9f9913e86bd2d07eb3fda6ad448608b6
BLAKE2b-256 177f9179712ab53a0e84afcc5fa09b5ee9745fba7b180e0a696cbb4781593012

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52ce0f86ef50d19dc861e97b1da79c8a78cb805f88bc823bf1c381c1ad6f6996
MD5 a5d659f4cc5f6aad76000fa655913080
BLAKE2b-256 5cd49eebb269206948ce746c802d0f3b3d092dfa841511728e5a21e2446641de

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50098f07466ee371b8a9a1c8728faadd4bf10eed789e4cd12042189b0b707793
MD5 52553f85eea154389874621e3952c5a5
BLAKE2b-256 a780f8b0bed9dd95686298f5f4c48cdc76c956471f5f04081cebc29360246479

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cade628cf7a553844fb269071b0396329e389faacc4f08594f2c1d959812e41b
MD5 b24a97cbabf557376fa939b29311e61f
BLAKE2b-256 030bb1b61521fcd5aedcad309a90f926e142a6a61300be101496c95c0e7da14f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a141fd74489f9628bab3e496c6338e26761ae499b3660d55116d6bf8fdf5f68c
MD5 d1b2034dd79e739be0290400c425628f
BLAKE2b-256 6f5b585faee792660a0c515181f9a93e23c270f03b3878f065e712797629615c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 252d6faaa2a300927873fe095668945b6e817b935ff087e54b6a4605bb7b3a47
MD5 1880b646983b90db005e186bc2d58c57
BLAKE2b-256 121a2b11c3cf45766775a5bee61bf2a1adc39b465eb9f7ef7814b10082b1c6b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp310-cp310-win32.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 487395c01ac87cba217a7c5aaa4cb99db81b28e3393f2fe046fd47ebce841232
MD5 d9f6d63c8905fc3657a4ffba66e5e05a
BLAKE2b-256 e03f097459f7cc42b1cd3624657ec105638cd7ab0d8fb92068117418da65da1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc16074fe077bed57be10d062aff0a916774e442d9cf7d474092f5bfd767c962
MD5 c3bf8d77a92e05d2f2e6db1b59535444
BLAKE2b-256 24c88b8a0ddba8f1ca8a4335908a0573162eb6561f6f8111d2cff6febe8db0c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b9087b9a66ec6f2f67ba0da2b1339962c2b5004145404620436dfbf958bedde
MD5 a8d7a8baa59d0beceb7a01e2a37a9eea
BLAKE2b-256 51383898a816ea71b2ddfcacfe6ef079187d06dd9a3323877124d61244b7938d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23a975350818844f279b95f1b13c8d5f25c93ed07f0b7eff8bdbac52a1c40cc1
MD5 a66b5962e031f6612e1b43ff968da257
BLAKE2b-256 cebaeeb736447e06d4e5017e2cadcb42c6809e7682579f3529088472ef433ca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 894ae402af6feda5ef82d6b6d2dbce08627a6438bab98d96256b275711fbb8c5
MD5 7d9f5d9097116b34c42e591d51534af5
BLAKE2b-256 e869fe89d0e31aa350071e9c084f47188654d47fae2062cc2cce74a9dde49f0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee6076a50a107fa52e022238b6a1a91b7026fae7c5a856a2ffeead2412a0c365
MD5 24ccf5cfc333edcec1a412a3c31431f9
BLAKE2b-256 9944cf75299088c9d056565344df25d0687e07328337da489f6c3f56abbf3440

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52c89eba48ec9f9321fefa71cd2b4d0f19a8b8fc6cc625827471ab39f81d9dc6
MD5 b7f6d493a9088aafb078490b9065a664
BLAKE2b-256 1d511c6b6db0a86b5e497178c8730bdea439d98d8535f0194712ac0ed4b905e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

File details

Details for the file bluetooth_data_tools-1.29.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 251711dffbaa94fc5cb9c7233140eeb70e1db70bc446eff0900cbaa0ab6ddd8a
MD5 7cb2c87dbbe34ef416f7f761e932a94d
BLAKE2b-256 b4561a9641d8c65e5a7f48a86ed65bbfb3263402eb86b7d72b62e98ec357b97f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.5-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/bluetooth-data-tools

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

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