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.6.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.6-cp314-cp314t-win_amd64.whl (490.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

bluetooth_data_tools-1.29.6-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.6-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.6-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.6-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.6-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.6-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.6-cp314-cp314t-macosx_11_0_arm64.whl (508.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

bluetooth_data_tools-1.29.6-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.6-cp314-cp314-win_amd64.whl (388.5 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

bluetooth_data_tools-1.29.6-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.6-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.6-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.6-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.6-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.6-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.6-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.6-cp314-cp314-macosx_11_0_arm64.whl (399.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bluetooth_data_tools-1.29.6-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.6-cp313-cp313-win_amd64.whl (385.4 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

bluetooth_data_tools-1.29.6-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.6-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.6-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.6-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.6-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.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (398.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bluetooth_data_tools-1.29.6-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.6-cp312-cp312-win_amd64.whl (386.3 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

bluetooth_data_tools-1.29.6-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.6-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.6-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.6-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.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (399.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bluetooth_data_tools-1.29.6-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.6-cp311-cp311-win_amd64.whl (386.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

bluetooth_data_tools-1.29.6-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.6-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.6-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.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (424.2 kB view details)

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

bluetooth_data_tools-1.29.6-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.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (399.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bluetooth_data_tools-1.29.6-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.6-cp310-cp310-win_amd64.whl (385.8 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

bluetooth_data_tools-1.29.6-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.6-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.6-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.6-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.6-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.6-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.6-cp310-cp310-macosx_11_0_arm64.whl (117.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bluetooth_data_tools-1.29.6-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.6.tar.gz.

File metadata

  • Download URL: bluetooth_data_tools-1.29.6.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.6.tar.gz
Algorithm Hash digest
SHA256 b512128d5b8896a9bc95bc16ef00bf65961a7cdca99af88c42fa7d4a94d2a6e4
MD5 93e095a0e6088901c7b0112dfbd76ca5
BLAKE2b-256 ce9089bf4a96cc3ffdbe7ae6441be6cd8785fa321187654e3a909eb817ad81ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6.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.6-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0fc9f9920a539a20fcc6504c0674286cb95d17f66cdbf9ee7b3feadf584d04e6
MD5 3de0470f758e06007e1040ba4878ee3e
BLAKE2b-256 89ae025e3c8fd455c6824412bb263adec21aa2b08890f5434c6e3fbdce6f28b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7ecdd00fbbb939ded53c7ddfd7edae70b707f130b920d8f6fa0c992c49fe487e
MD5 faf014e84702a5119e3c2d84daafa20e
BLAKE2b-256 eb7c9ca13360e12fce6774bf85f7c642f94721dd327d09ce12a6cf8e4afca28b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33ba1a846740f7b9a75e867814a9826993fb4417b0ddbab3f94f35f7f9c19b4c
MD5 3b65bf8187d1607f044ea21cabf426b5
BLAKE2b-256 6dc8c1cc1bc9e7fe84fb0b01f74c31564c663c63c3ce60c288c147a3ea677856

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2142b1608c1b3f20bcc26287b31d2a7b695e17faafa520d31a116b7afbd93950
MD5 58c16e84c8b313f6889e112eb9389d64
BLAKE2b-256 2353f93a2f988ed7370502f23e74e8b56801bdd16962bbdaae0881e30f3893ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65554dd6552234567a027a5c19315ceaf05f8f6883ef2e6014f4338de70bb62d
MD5 52c9850520dfca56997863f5148f79fd
BLAKE2b-256 e942ccec62ca050561fed304ef198242e69d7705b018d478a0d919ab1afaeba4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-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.6-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff655863ed9d7f49790464dd00a73a3d411a3f0d5a419ca9d5fb2491dfc8f075
MD5 7329896fe4d412f3ff29d2b8c8ad0130
BLAKE2b-256 7840733c66dbbf248e1ff930d4f39fce1161394a219d2f2eaa23dae8600f927d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0af6d2f61274dccebf974d1d0b1c447a5f14ae093755249a1e1ed74ddcd8a5f2
MD5 2212679ad92d23eaae66a0a47d27723c
BLAKE2b-256 a05c6e207bbef4db37f4612f859f6188289e19be70a0874f8a96659d8449d64d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44bc03637e4f3b7898572c4b87a39d6b163e993940a73f326e8a882e9b47e4d0
MD5 c5bd9712e85a9b26541285b27e7bfda8
BLAKE2b-256 63c64bad0bccbbbfe4e02d00e256e8945640f5d569bc1b8fd6f049603c258354

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf03ee5433dbd75e79ac46d929f219123ff522ccfc7076ae16045db837058d98
MD5 489b801ada493deddf533fabb4128a9f
BLAKE2b-256 0b805afb04f40a8142f44f35a70bb6cd01c623953d793f67eba7d8b88405b2a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8cd3db6f410bca3b3788cf0f23e44ee131cf4d57b319040838e82af49ef79bda
MD5 b8820ff4a0130170882484818e8a34b6
BLAKE2b-256 afd12b89d2c1e4a91cf58b2e01bd4c0e5f097fd880938c3c2beeed801e70ebfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5c428b1207eb8f7310a05a354c6179baa25c1e9ee2f00c063459119d474d840c
MD5 1c937a4ccb8917e64fca238551296e45
BLAKE2b-256 2e5b2a24ec6320c9d7dfd0431f29bda3c2628d78ca68c5b093e920a95b43cf4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c187fff0f3a65eba63dce15bc4028bcb68eade1ad985f978d0740676c4684e15
MD5 783deef379d7041b50cb8225fb0b9b97
BLAKE2b-256 b5274b24983cda46504db87ed70d3a2d4a7bfb7ff866af9c7e30e66c636803c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 001adfb110cd522e9c99d84b45283e55a80baec6f2f479799025a0330b23a6d4
MD5 14fd720635a42d21fa800ddf2eb859a1
BLAKE2b-256 c95667830095686896987483fe06c9c29d7c5cc4dbbef669fbd0cca9cb447407

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1a386580adc253a31e7968a40cd7dd0ce89456e4862a891e37ef230e48eb6f6
MD5 05b0bd2dd72e7ae8ee75e21ce950b6a1
BLAKE2b-256 4ac3fbc9ae62dfca96e8cc4ccb080da5809509458366208343901a14d98e805a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e439da5c02cf1f0c0490e9e3cb91ae51c543a634808a855851e2632018547a0
MD5 9536c399f9d223bfdfee615d6b32b1c1
BLAKE2b-256 f8aa35afcb927496b1e84318530d0c1ed89166c75e59794df06525d08acfff9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314-manylinux_2_41_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 d505b32134787ebc8d80c855e5c8356c38b2163fefd84288bb71465176e94502
MD5 6dde8474dabc8eb26d48be13c7efd1d0
BLAKE2b-256 57f780c3d6055b5821dba4952c739ac0508c959766aa12e0a476fc0d98f3321c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-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.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98da92f8f0e903c32581f7437f7c25d1c3752c0f39d129f4d163821642d1f9b1
MD5 f7811371d55dbd6e2febbcc901025455
BLAKE2b-256 35a27a955df6605f752b32965688067894dbdb259bf28d9072a09a3e75023489

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6ef86905ef803c0f1295db5ef1a33111d0140c185d9dfb46460a0bac8a1cc4f8
MD5 eb6d3b5105191a70091407add0bcd30a
BLAKE2b-256 da525d7469d375a028b5c86f2b97c9bcf106fcebbe706e227aea85734b53fec2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf7d533c68c52014fde807271cdce149b1a25b3f529420d4ad248b04ea5e01b0
MD5 b8acc4e0ab22fd75095e8f4cff2e9286
BLAKE2b-256 25888257903fc32a3ce125ab43265bac7afb9a4ae61f5419b9f43955e0b64eba

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46a0f9cd9dab6f0cc7f8f15b91f58595563080605143f0491ec52d6924adc4d5
MD5 b498c8b5c11416b402c9efea2638f60a
BLAKE2b-256 d9673b0e6542130b44839bdafb2a2cf8264bbb71011b217014c74b29814e446c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 84949db41147836cd5a32d7f5eb4673177cc137c5a39440253c85c2a285968bd
MD5 761a3a059f1d63501bb131594250ad12
BLAKE2b-256 2c48a1a2a2c83da1cbc4084979839785be8c43a98687b5a445b1982c594d8973

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 81e7afb24a418b60405ec8d16dda78c251612c3138c6ec2ba075ffe6f11df44e
MD5 6cb11f11e3bd82b608646a7b547320f0
BLAKE2b-256 79def0bf82a96e29a4579533636f7f12b5d4df1d281bed71b2c7a16bb0ab06cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 926267e26c4f6cceb06065e18733d9ca456f66984f3cd853fe39768ef53b1ad1
MD5 6b7b2dd953f514ce1e1f61c3c6499abe
BLAKE2b-256 9c7de82e8a6a8bfe2698bcc6b444245cbb6b9acfe2ff4961cb10a0772d57cc14

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 267c27c88b9e8fa85900363bc4745ef5f7782f079966365f96273eecc08caf6c
MD5 a80229bcfc3be3c21aef3ca4063f8ca5
BLAKE2b-256 e0444957ebc246c79522e1a22fedd9a53181f5eea7afaf2f327a488d6be21d28

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e30070abba8721bc75e0a59931254242b10ecdddf713020058c665062f13ae6
MD5 f8a3001b4b2a8204ffaffa43436045b4
BLAKE2b-256 6804551f2bd05148f30e62fed01df6ef660a7551cd3610386f87cc2c9202d26f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2f2f0a19f4a8893927747df7637c8f786beac693125598d774799ad5ebbb6a8
MD5 6b758e5efcc9154746fc5e275ea74a3d
BLAKE2b-256 e82aa5e745d47ee8bf2a31aaf38c318e663e91412d416a7c1acb471ceac68d08

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-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.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dadcbeb0df48f126f9ef4e5f747f51b252ab15df98f9321d73e2d8cca7260003
MD5 bd39f7bd7a9a3ded7a5aec347d374004
BLAKE2b-256 f8d758f83bd91f13608759cf3fce31a3d60a81b26d9b2cb4d4e9deae6e6c3256

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 51de91f52b14e341537277683076a9bbec3fa71afe6eae808894837e927fe634
MD5 70ec7c65159538098b14ea73290619a0
BLAKE2b-256 a2cf40476dc6848c1267057643311c11495fbfc8142cefb557b9165b867f089f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 455ae0e8e3a6d91d57afa23eb0ebc39d6d39bdc74c2e0bfebe2b5257df41d423
MD5 d46fecd436e1393dbb82937829e3f9ed
BLAKE2b-256 0eea47b355a98fee775b4317752031bc48eeab9440d2163fb15f63684dae88e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76b2e84d02439ab2b5dfee2cfd5b1e6e61d225b9a0a9d82de11e856ac7484c73
MD5 f605ff8600d79a68c706a4fa676f0769
BLAKE2b-256 8995c257390589035f90e908380189de01752153a20a58c24e38d011d5b891ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e7159168006a0486b424cc6a773d2c68614dde63ad0756c869c20bbc3ccb2cb0
MD5 a71625dbcd1006047b2ef3bd48941d1b
BLAKE2b-256 ef1bb8d82472b8c70dbaf651354fb5cce1b7e9a02788ebdad96fdeebe53124c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d6f3d3d31678d2414743d9a7037a88b80ee4d79b600e9faf4c2036c0224c6b3c
MD5 e986ff0895eab52745e73aa11fcb647c
BLAKE2b-256 728165db2818f6e87c1ca7336d54b1ce116f79dde2d89e6db6f43626281667d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1bb3dc9f0bb35b52467c1f96dda3860fb9fb6d47dd39284317f110afe4b99aa4
MD5 cc76f67d89e8957779d0bb6c918cf37d
BLAKE2b-256 6ee9158473c81fa4021478ad57b4d0574760fd7b4c75cf1a0858d345573ce2a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1038514240905eaa98736ae523be4488445c224bd8416bd9b2970736d68d2d9c
MD5 5f911200131fd74dfe9ef5b3168a2064
BLAKE2b-256 fe945cbc5d836cefaf8795a4dbf601ebd5e445f3c19adab52d3912338a31fd96

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bf706d9df94c5c82dfffc6eb40e2f4dcdf94b815f727745b5eb832107ca2be5
MD5 33edbed3231fb4a40d884ab4174ccdd9
BLAKE2b-256 ec27c45f0ca24b9d4f5e9ea09a43fa8fed35bfdc50d9b63efe5f022b4738e4df

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c58d3fdb6a33d9a0ce7b4d878975a58e776e2dae8a992eea333c7561c7a5e03
MD5 484f67d54dd959dbb9474dbb1bed53fc
BLAKE2b-256 a559685e87ef390c144f75cbb87c63187af6c33fc19ab944cf68ed97884528d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-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.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a50c2c7e8d8cff716f142bb7984c79664c855628859c64f1ef1facbf5892c210
MD5 d4b06ce84faf8847481477ec2a1db853
BLAKE2b-256 335d0530ceb3812ddd9c2265e4696ca0e96a358fe1ead0d9914fa0f80a1d708c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ef7be7e577ab9e871d209b30ed67f31c0d13406afd0e9c64925d12f03d50ee77
MD5 05c67ab7f19ff7e3a326a2339cb26d00
BLAKE2b-256 4ffcaf3e69670910330daf6c3f23bd093d7068fb37c8ef410822b394bb9e8ab7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f868ac0d1e85ae183b6992b4620c52ca7e39deb8f248a6e38d71efd3204b5f4e
MD5 d9a37f78581cd48c06ed83dcad2050dd
BLAKE2b-256 b5a821dadc17265e2a8a9ed8df8782523f393ea5f5254bd049b11448757c7e76

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a30cbc36e338bff163da05124bca5ef07206787902521617b6a6e203d6c7f0c
MD5 271bd23890a3c275449a631504ce50a6
BLAKE2b-256 0b9d87404cf93a22ce2aa91c451557c6b99bb2f3aceddf046bdf0f6587686076

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 68e0093bc963dacb6d839512a8416a1f4f8a5c6e7d832940fdf95257aa10ba04
MD5 4b1a3cbee4198c0d3b2802f7dba7523f
BLAKE2b-256 9ca01bc8965e9789011cacf8dd5b07d37cbdec5662523bff081c87a2b01583c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 45d354bb5efd906e2ba15e25f680c3444c6a440f61298bcc2a2344725f2de898
MD5 c2706db03e622fec17c8a64c2721ccfd
BLAKE2b-256 9b9426aa536a413f793d6c3ee9967face7b1e0e70e86f0f68c3ad327d79dd036

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f34f6ce4b403a9f78e79b63fe9d0af87fb375f4d780f1e12d3e98473de53a978
MD5 4ec2e49a1ebfbf5ca07fcdab3c964027
BLAKE2b-256 ed6aae2143cbfb7a1187ae4103568855d5bab389d166a943c046599117d010e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e1d2b55a95ba8f9e64ea35ed05bec3364b079d3b56ed83d4ff9a07df90c3524
MD5 4a25bc1b95898b40fa986c0de5682787
BLAKE2b-256 2d8b5b8495aa0854c33f1058faa74508a85f73509592d2403ba6090f329b5c89

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16f428a5c75ff24c5f7eb510ddbd7da68e994551e79382d810f430eb63aca06f
MD5 34e438ca64dbfd468c3dbb0f082e4ba5
BLAKE2b-256 a7e80f2465de0d4c4d5968b4685b5c8d45509ce3c73281fc2f7c28aa7deb10d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ccab81de309fc96fe400e791bc0510cf100a7789cf1c0915deb10c351b7551a
MD5 11bbcd00ad27918df9d031612a5839d3
BLAKE2b-256 14dc2958d2d2d41f11324d900f1213580b29a456cbb3d626c82c633b6d1a8b6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-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.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33dd20f4f7bf93508ffcc36d5faf15cf9890c6b8e03f250452206b19e15d0e58
MD5 e7a086c7fa565a284ce75838a6ae229a
BLAKE2b-256 75d30d55b366b34d48513600e1e9c75478e792609716d92c9dbf70f9ec217cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 229ae056f966125ce970bbe989197297d55629b0e0e0a191168e4e16bf8d04b1
MD5 127fd8a70d19264f64630dc3b9512c04
BLAKE2b-256 67730745864cf9bd2302d44c11a3420bfa746f7ebedb47c9c0f02dc6a8c7ca98

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d259770c7cac2ead33730e7a6e83e50c6cc07cdedfc70a47f9249ab18caf07ad
MD5 3e25c2d539f763dfa2af4866e962a092
BLAKE2b-256 d16f9b869a2bc26d6728ac0058c36619f14a990499559868ce7f3cd21e60cf44

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67cd115c50be801bf204ddef041cb7ab0defb85056e8e1dcb1d1f37687c2463a
MD5 52f00ad91ade8f4d97a096a52cae32ef
BLAKE2b-256 5abc6206678911e2e4c182b9f54a526411d762b63b18c4c7e7c15527527ba24a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bafc77689001b7b86aa2efc927b823ba3a26ef797dcf5d5ed1b4c3ee86fb20cd
MD5 0ae6a999b1d70247b03124a4a39c596c
BLAKE2b-256 dbb4d70ef60489dbc49440ff9f2d0d807e7b9682a392cbf40d705c99c42cfd80

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e158c2c272a26d4e6f9e732ee81703afb80b4e6710681f56762f7771545e005b
MD5 cc9e0fa7e2099b5b12588f9a7cdda8b6
BLAKE2b-256 0f10a3fbc02a31bf6a366f61eb03fa477f07f42577057495e9ea2d648ab7037c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 835b36e054864fee1272335c094a3c36f818663609495bb8f7682f3d63843cdc
MD5 2a385a874b77913333af97f86c306515
BLAKE2b-256 13daa4159b859486c327d7ea55434927102cde61174b85285ea4acc539d22b6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9744f17464ae8122b504887109d7a061bb0fe3640a02a8ddbb90cbd718e482e
MD5 decd557ca956ffd6f0e37c6fe3d0a244
BLAKE2b-256 688b3b4e656216c0204cb77f33375a2273cdd16f4f90ad8ae4fbdd051ec8b64c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 acc3dc978559c2407bee4c51fe231e64c804099c7f647f7a3a47a682240d39da
MD5 7ae4ffd766e4de8df0b3002bca4a019d
BLAKE2b-256 7abde01e129ef3d91ce3d14bb9b0c79b83465654c2043b4eb4b2286e20d67334

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93deb9589b4818982120538cf3abd749c242d006f25cf09cd632680c4c650b31
MD5 132a30e8c3679211ecc143f9f3991de4
BLAKE2b-256 aad11eefb4f23d83002a6d6cb2f54d90ef25e6f6ef8da2c22d2f4dbb231255c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-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.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e202c33d1147eaf66f61870191e0d174a62489e6130fb51df9b488c99c7ccd5
MD5 53a7918baeb5540a105437ba0b024e95
BLAKE2b-256 e550c97c23bd3e7cd305eb443978f45830fd68a3523cce567c73bb8682d5eea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 02a3e3432d47a6157b67bb2da1a006d09f30bc2b47fc4e132ed3869d8a866c8a
MD5 bdff719dd03d3a7006b71ecc8dee66ab
BLAKE2b-256 ccd7a8ec2376df6f445b4501de3854e8d514f14b9ee3a667401662d8e8c0ecc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72bc5ef24a5331070da476bb77038065c1ab49fc0c5e6ab64e4d299d87cb039b
MD5 6e501027cb14b94dd534d69f9681902d
BLAKE2b-256 582b4159e7c85481949f707eefe1b0b8865dbec1388bb8832e2c838541299100

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d751854d2f1c49a5a50431d07b2d6047f6cfa67e4912479502eefda78a821e1
MD5 158b763a0f4b08c89e2380eae30815db
BLAKE2b-256 ac345edd50ff78c692af2094a33cf36fea28791ce7a848d2ca4070d45eb2d6ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bluetooth_data_tools-1.29.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ce3e2f09bbd8410a782130f40d6c44017b5edcb79629583b8e51074b8de269a
MD5 08325a543b8f471f7d989f740d2ed365
BLAKE2b-256 021be2d22199d6adf7077ba6817a5b380b35dd0ce3771ad7d0377bd06e5b065c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluetooth_data_tools-1.29.6-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