Skip to main content

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.

Release files for bluetooth-data-tools 1.29.24

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for bluetooth-data-tools 1.29.24
File Size Uploaded
bluetooth_data_tools-1.29.24.tar.gz 22.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for bluetooth-data-tools 1.29.24
File
bluetooth_data_tools-1.29.24-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
bluetooth_data_tools-1.29.24-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
bluetooth_data_tools-1.29.24-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
bluetooth_data_tools-1.29.24-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.24-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.24-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
bluetooth_data_tools-1.29.24-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
bluetooth_data_tools-1.29.24-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
bluetooth_data_tools-1.29.24-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.24-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
bluetooth_data_tools-1.29.24-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
bluetooth_data_tools-1.29.24-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
bluetooth_data_tools-1.29.24-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
bluetooth_data_tools-1.29.24-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.24-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.24-cp314-cp314-manylinux_2_41_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.41+ x86-64 Details
bluetooth_data_tools-1.29.24-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
bluetooth_data_tools-1.29.24-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
bluetooth_data_tools-1.29.24-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
bluetooth_data_tools-1.29.24-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.24-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
bluetooth_data_tools-1.29.24-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
bluetooth_data_tools-1.29.24-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
bluetooth_data_tools-1.29.24-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
bluetooth_data_tools-1.29.24-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.24-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.24-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
bluetooth_data_tools-1.29.24-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
bluetooth_data_tools-1.29.24-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
bluetooth_data_tools-1.29.24-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.24-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
bluetooth_data_tools-1.29.24-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
bluetooth_data_tools-1.29.24-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
bluetooth_data_tools-1.29.24-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
bluetooth_data_tools-1.29.24-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.24-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.24-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
bluetooth_data_tools-1.29.24-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
bluetooth_data_tools-1.29.24-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
bluetooth_data_tools-1.29.24-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.24-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
bluetooth_data_tools-1.29.24-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
bluetooth_data_tools-1.29.24-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
bluetooth_data_tools-1.29.24-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
bluetooth_data_tools-1.29.24-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.24-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.24-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
bluetooth_data_tools-1.29.24-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
bluetooth_data_tools-1.29.24-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
bluetooth_data_tools-1.29.24-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.24-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
bluetooth_data_tools-1.29.24-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
bluetooth_data_tools-1.29.24-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
bluetooth_data_tools-1.29.24-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
bluetooth_data_tools-1.29.24-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.24-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.24-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
bluetooth_data_tools-1.29.24-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l, Linux glibc 2.31+ ARMv7l Details
bluetooth_data_tools-1.29.24-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
bluetooth_data_tools-1.29.24-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.24-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size: 24.0 MB

Release files / bluetooth_data_tools-1.29.24.tar.gz

Download URL bluetooth_data_tools-1.29.24.tar.gz
Size 22.2 kB
Tags Source
SHA-256 checksum
How to use checksums
0d9e7b1e26cd4ebe733490cffeed18340bb4ee8c1a2c0a0e8119b656f49700e7
BLAKE2b-256 checksum
How to use checksums
4cb5bc29fcc1a3e8fbb065be4c117f6ed3b21b5e0c493f4c8011dac323270b9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314t-win_amd64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314t-win_amd64.whl
Size 510.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
12e5ac9d5a5e669466bd21cdf1809c9c3a7364dd07d7dd10ff96ab0b00ad0355
BLAKE2b-256 checksum
How to use checksums
8b156357220c04b736bad611fd1e621ed2973597e9f7546d4d9b9ea5a942dcff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314t-win32.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314t-win32.whl
Size 484.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
701205fffbc3390d5a3a945836d566de97255210e0d485904c4a8d4be4c467c9
BLAKE2b-256 checksum
How to use checksums
058cee74315138010d1941ef8ab0dcb0e9ee5db29b1c5a0df690e9cfa2a5ec49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 653.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
820a8fad8dec8fcd955cf1e9d2f2b7c0d4b675f1b65fb52caa4481d0a2f30369
BLAKE2b-256 checksum
How to use checksums
a955930ec04de8b195e02e19ab519301dd580b1667f776f85d5e30d507f42566
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 621.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
2f957d1338d8a9389ea6f098d716298febee49b0d77f2e313c82de30ae950eae
BLAKE2b-256 checksum
How to use checksums
f1657b9c2cd0b0ad3de07f1c040b74c07555d81b0cd6833805eb7d7f82ec3b8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 648.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
58e9cc8dbef9562cb5c3cd3a3b41530c1f3c3745a08d65a3d12dd743144ca75a
BLAKE2b-256 checksum
How to use checksums
1d358403dc708771e0122e314cf8cdfff1895c7a8b2f30a06d49bc6f8be6b38a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 649.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
90e8ef38a8de370395e7526c7a79da20782180b7a220d5c2eea591faa8b55d3e
BLAKE2b-256 checksum
How to use checksums
ec4f37dc994558d9c154db84079d569f90c7d479e3a55ef5cae8ea47563c8906
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 615.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
66b03ee8e6e17efa9283e3b0657b585f21104bf605ec00533b016538095865bd
BLAKE2b-256 checksum
How to use checksums
f9d15ff4a1fc85f5a04e3310cf584c61b467a317d13006111fba5d3905a691dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 646.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
712a61b0398c49ee6ac7d34e23553ea0685624b6bd760aaea2e77252609aa5d0
BLAKE2b-256 checksum
How to use checksums
7baabbb4dbf53accc5ece4d1f94d18a81d67015a490b89364ea1f8ee91f96af7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314t-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314t-macosx_11_0_arm64.whl
Size 595.1 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ed6fa9db443f95c30c1f8b11f8cae9afadc8bf722d252477250f8b5749fc3757
BLAKE2b-256 checksum
How to use checksums
e8fd6375d4805fb35d0e1c5bbd9816daec7647dc5d39ec852b66f53f53adbe8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314t-macosx_10_15_x86_64.whl
Size 595.2 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
ce11b88742863273b4972b556cbb04a9285fbafdb2afebe8f4467709715f74f0
BLAKE2b-256 checksum
How to use checksums
91134ee1067e6914ae863099d1dec0ed1692bbf1a90d5941a2c559bd2b3db99b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314-win_amd64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314-win_amd64.whl
Size 396.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
9b338174292b1b91521349d99b6d8821f3df16de595152b396c3cf9faa229b7e
BLAKE2b-256 checksum
How to use checksums
ed8d834f38ab37ff98e4a250e19cbca7b19e06260c63aaf2b83b036e656becf7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314-win32.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314-win32.whl
Size 384.0 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
c89a98a8b49b0fa1a06b3fae86ad3b7788ae59a31c0993107b336564e3d1d62b
BLAKE2b-256 checksum
How to use checksums
c93310074ef4e8c3156efe4ab88574ecc90eb8cade942be58d0f9b7be6aae671
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314-musllinux_1_2_x86_64.whl
Size 496.4 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3c353d121733754f283a2a2666c852ecb01542040c4eb1060e2ded234cd7657f
BLAKE2b-256 checksum
How to use checksums
491294c8e7f25bfdc03a53ebd04b2368efe2483928d77d494344ccbb5016b8bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314-musllinux_1_2_armv7l.whl
Size 158.8 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
31e52b2c448cdbd31ebb12a333cbbe08f32a59aa05290f48a08c2bd8f494de77
BLAKE2b-256 checksum
How to use checksums
ccd2400a98eec8f159e990e70fd0b89939dbf43ed46697d4d33b7d4f15742276
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314-musllinux_1_2_aarch64.whl
Size 492.8 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f54ef148ad751eaf1686380b48847fec7f95c7a12c1593b8b062d92f38619e3d
BLAKE2b-256 checksum
How to use checksums
9ead435d4e0152a17ef01ecfd4a08cb0bd2e6f07a6838302348e561943936674
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314-manylinux_2_41_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314-manylinux_2_41_x86_64.whl
Size 171.3 kB
Tags CPython 3.14 Linux glibc 2.41+ x86-64
SHA-256 checksum
How to use checksums
594afe1dac691f570de1f73737d959d294877f802ef1b6ec7b1d0eaf94ac12b5
BLAKE2b-256 checksum
How to use checksums
abf4f82d360119f486e29baf03432977b065ac424d583175752b794c24a2e2a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 494.2 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
324b1225bcb3ae125cb60218581577c11f20a0463dec163157947c8c54b5b800
BLAKE2b-256 checksum
How to use checksums
1db52f15189705c115e8cb42836da902221bd9fc511ce52352d15fe8d692f56b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 157.4 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
ccfc8bdf98d21069f1ddf55ee4a2e67a911bab98c27909a631876097d3fd398d
BLAKE2b-256 checksum
How to use checksums
f675e93f534f6cb51633e75976653169e625b79dbb3bdaeaf1ca5257b44e54a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 491.5 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
58ae45d678a6c0b06d5be25bf17a3238806d8fda1fc62a4708b45c3816d2ffaa
BLAKE2b-256 checksum
How to use checksums
7ccec7c81b9d8c9ad402c769ec57d1dd76238db0b2c19cdffd36818c6586cef9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314-macosx_11_0_arm64.whl
Size 463.6 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
707694da88fb67d063decaa93866e231632d7b1187fb5cf3558f0233fd1a8862
BLAKE2b-256 checksum
How to use checksums
0f946f26f0e8c49f21439e43e1fc26751d5cae26bed1b275df253bf1f70a2401
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp314-cp314-macosx_10_15_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp314-cp314-macosx_10_15_x86_64.whl
Size 464.6 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
2ff738867f0f5849d20d160493a52ed407852b53231208d107549f663b851d03
BLAKE2b-256 checksum
How to use checksums
a55805d470f746996fa79d25b385b1ff86f449a76e92c76aa0842f626592ce7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp313-cp313-win_amd64.whl

Download URL bluetooth_data_tools-1.29.24-cp313-cp313-win_amd64.whl
Size 394.4 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
9e8e056015df0c7e40c8366b1aed34a348b21e783c03b5c35c7e6aa692277fbe
BLAKE2b-256 checksum
How to use checksums
b6422137444bffede6e56cf013795cc0dc18d20f3b71c02d0a949c8f690f8269
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp313-cp313-win32.whl

Download URL bluetooth_data_tools-1.29.24-cp313-cp313-win32.whl
Size 382.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
c8e6db974b762ce8eecdef0f1de50b427f89b65d5b2e80a5c7fd09fc7afc20c2
BLAKE2b-256 checksum
How to use checksums
cc56cccfb3cd4963df0dc7daaed8e4133df2693484d359f89aaf3cf8ea8a9a54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp313-cp313-musllinux_1_2_x86_64.whl
Size 495.6 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1858e09442c99b975583f8a1ab655481ed385a846560bb88add8bf86d61e6d0d
BLAKE2b-256 checksum
How to use checksums
c302d2e892e071b2cffeb511a82df333eb321f750b0ec0905a76297bbd6a8088
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.24-cp313-cp313-musllinux_1_2_armv7l.whl
Size 159.8 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
5b7f567ecb88fa9b51bbb824b6ed46569e5bf841e2ac7aa75b76c72764b1ab93
BLAKE2b-256 checksum
How to use checksums
972c1f5f865156d89454bda9ea12058679da0d1a24d399604687997208ad20d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.24-cp313-cp313-musllinux_1_2_aarch64.whl
Size 490.1 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
02d4d03d9b49c944847abe50011f9443c25c41a3167322575dee68443f28e1af
BLAKE2b-256 checksum
How to use checksums
af93fa76284bfe42544bd62ec90cda5498673da0dfc02a7a7a352e73d75f1740
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 493.2 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5c4fa8ade0acc74c2fc82e02d3399f5b9b31c7b208ab4b48f8401ed50c2ca60f
BLAKE2b-256 checksum
How to use checksums
244664fb8cb4773f53474a197b7b1dbaf4996ab089f9bff48ff938683bbe0afc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.24-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 158.1 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
435818c9ca86849b5461dd5a6ed10d4a81c0aa69b8bb3d058310a6115a6c63be
BLAKE2b-256 checksum
How to use checksums
969b5cefa4975fe54ba095e5bfb1b7bda30c03e95510fbd622cf2800575b0bdc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.24-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 488.8 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
046c1f146fbaad837d4006f448b1137fd424c52141d39c572e4008803f267d7d
BLAKE2b-256 checksum
How to use checksums
bf06ca88d8b0977d54bf45152a24eff1144fbb44f3fefd39562bb6191abad0ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp313-cp313-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.24-cp313-cp313-macosx_11_0_arm64.whl
Size 462.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2b253fbdd98795c204fc2f8c1f99d53039043f0bbc08d5e67f345ebf87fe5d05
BLAKE2b-256 checksum
How to use checksums
8f184e5e91aa468a5b271a8b9256a27bb5d244db91129cd7768fe30a866f6ecd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp313-cp313-macosx_10_13_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp313-cp313-macosx_10_13_x86_64.whl
Size 463.9 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
9b000fce3680ef5c5af2969bcf3626c54bf9e80641edeb74154830915a0084d3
BLAKE2b-256 checksum
How to use checksums
a5aa36d64692d8aca773b3daa590d56b5eca7ed3b8b8bb592bb2bc546df68719
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp312-cp312-win_amd64.whl

Download URL bluetooth_data_tools-1.29.24-cp312-cp312-win_amd64.whl
Size 395.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
70fc2cb6e44b2e387ddfb99c45a541f90faff70013308426617e962c303f8b6a
BLAKE2b-256 checksum
How to use checksums
c035802ed3ff80e37911fd7a3819b62fce817060ac780ba13a5b0fe2869a08b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp312-cp312-win32.whl

Download URL bluetooth_data_tools-1.29.24-cp312-cp312-win32.whl
Size 383.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
83571bdb69a63da82497a7a7a7e23ca85083e9a21c0975fd010b51dc1d33c444
BLAKE2b-256 checksum
How to use checksums
406399112e9ab41db40c7c680e79f1ec25ec6e1a4fc7a702b56de6d6a75ff66a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp312-cp312-musllinux_1_2_x86_64.whl
Size 496.7 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
65a1240793445744aae94bcbf875467f869f9bb3f02598d0b040390a93af3711
BLAKE2b-256 checksum
How to use checksums
19c2f1dd8e1e37b54ba6f3189fa52ed7c90745d71aa9b1bdee472cbf19142f43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.24-cp312-cp312-musllinux_1_2_armv7l.whl
Size 160.7 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
7410f41e6c30410e0c480d044b46951292a97af31e5bfc7000b55c407fb34661
BLAKE2b-256 checksum
How to use checksums
47efe128bb2daaba01d3c8aea89a28de5d0f62693ad550efde5bd525a7d34b81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.24-cp312-cp312-musllinux_1_2_aarch64.whl
Size 492.3 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ba52ab89ee5bc70f66df66fd0865022efd72396bdfafe9a5f48c420fc09d458f
BLAKE2b-256 checksum
How to use checksums
1d9c5ae1f3ebbf09a3616bba506121d8cfec00c53e3e0e4ccc6155c80a4f9f95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 494.5 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8a6933e0012bfdec28cf6e439cb670cc465bb21eac3c7e29646e1b97c6bbb92e
BLAKE2b-256 checksum
How to use checksums
e5cf333dfbcdffd8e37dbff0901f1f593b00d0a4d0e0c374bafe13b1d700c6a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.24-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 158.9 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
c55af541ba5cef062d6b510783f512e8078c8e690c47e5bcc906d5778e4fe5a7
BLAKE2b-256 checksum
How to use checksums
219f719c5aed99cce99da5e9d8a1a23b69d22696ffe991ad0630d83f53d116ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.24-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 490.8 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e9f8118ad13951ce25e535b3034c6b9a0f5ea27413a1e5c6171af99c7b127eac
BLAKE2b-256 checksum
How to use checksums
ac2b08b9da007eba39627dd17b0989541284833905ea25afa05d0034ab02f548
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp312-cp312-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.24-cp312-cp312-macosx_11_0_arm64.whl
Size 464.5 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
01c2423d1ce1187da8e5bddec63fa875eef3013851a7f7ed24be0a69d7fe519c
BLAKE2b-256 checksum
How to use checksums
89648eee34a8c3db18a75738e0164b0a7714f524cad8ee56710d2a41c44ddd4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp312-cp312-macosx_10_13_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp312-cp312-macosx_10_13_x86_64.whl
Size 465.4 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
d4d955e6feb7aa5a7326b227003ed471f7ad78ced08a0d3b7120933751f4d6ac
BLAKE2b-256 checksum
How to use checksums
8815c8b5e8ee84f8c77e9b06f4df15f866ddb4ff6529ba3f2096e9aecc21f1e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp311-cp311-win_amd64.whl

Download URL bluetooth_data_tools-1.29.24-cp311-cp311-win_amd64.whl
Size 396.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
3cb81cbafb6d7180d503950cd2c22ad24e655c7abcb7a3bbdbd255e2af4903ce
BLAKE2b-256 checksum
How to use checksums
49f908b3bcaacbd01278fb41f5ef53e4c60dc19e00fe4b73fed836e9371ea31f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp311-cp311-win32.whl

Download URL bluetooth_data_tools-1.29.24-cp311-cp311-win32.whl
Size 383.6 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
9b7c08ad15609ea58871d433e3f39ef84d9f0da6fba29500946d840b1fd8b942
BLAKE2b-256 checksum
How to use checksums
62f166fa8d26deccd54d33e493d4d8b63079422a4d782e7781953cccf1c7a3d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp311-cp311-musllinux_1_2_x86_64.whl
Size 496.9 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9b57261bf5c6592e61ede1636e75e82117651341a19de6b82885c5bc07263f9f
BLAKE2b-256 checksum
How to use checksums
72a5cff6717ac59c90cbf29c705d2daa278966c2fab4a9f9a281529b623d2429
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.24-cp311-cp311-musllinux_1_2_armv7l.whl
Size 159.9 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
7a1ca7a2f90237cdfc243321a79694240a1faf8985d2b1d0fa06f7b36755785c
BLAKE2b-256 checksum
How to use checksums
4c2122727ae222a7b177b29360756f901c9efa030042ef93f3e331593ab22201
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.24-cp311-cp311-musllinux_1_2_aarch64.whl
Size 492.4 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f3cd96de927ddf3ec44813a829eea7ac1aea53592c0d1355866b4f5170026cd6
BLAKE2b-256 checksum
How to use checksums
9123e91c42b96674a8907d8ef980cc37487e0488d3643431facedf59670ccd67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 494.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ab8f8d7f42048822ebfc3fcc3bb99cee0ce9198bdcc51b81ca82f4dacebc66dc
BLAKE2b-256 checksum
How to use checksums
50558f9ae3b235d16d38eedbf01dd54987e0a75c3f7e725a3055a774ed8481b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.24-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 157.2 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
dcb03d25776264304b8451320b0cc52cfcd4b6e20507ab37b0570af888d47241
BLAKE2b-256 checksum
How to use checksums
924156b389cc5a3bc8b3a86de4b0d84e2e1c9eee9481726f8ab794b871a5a50d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.24-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 491.6 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c5dcfc3d3a175c903192e6b49734e4c705787885a9eab479425e8bddebc0f613
BLAKE2b-256 checksum
How to use checksums
4373ae85e5c074dfcfd01d1f8a8e9bef724167869c9c27a0036e384155d91eb5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp311-cp311-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.24-cp311-cp311-macosx_11_0_arm64.whl
Size 463.1 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a64734441d615a4f97389b40deeeb4488662d5f1a3f6d95f4c1ec1dca7665cab
BLAKE2b-256 checksum
How to use checksums
aee58ebd2d2dd3730df9f2529a271567b99d86173889d99510afcbc064c33294
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp311-cp311-macosx_10_9_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp311-cp311-macosx_10_9_x86_64.whl
Size 464.2 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
00c17a57fcf1d115964d2fa540b455f3c5b4de0214b78649ec6b4b4fb597769c
BLAKE2b-256 checksum
How to use checksums
af14a0c6515f13181c7dc6faea37c51b237b567339a690d6bb62506d1708457e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp310-cp310-win_amd64.whl

Download URL bluetooth_data_tools-1.29.24-cp310-cp310-win_amd64.whl
Size 397.7 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
fe6ef046b7182e7bc083f43835f8768c842d99f136cb6af1eeb9201928521608
BLAKE2b-256 checksum
How to use checksums
866e70423e8ea47bac63395d4145631c01719f7bb86b4ffc54cc3c56dc4db371
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp310-cp310-win32.whl

Download URL bluetooth_data_tools-1.29.24-cp310-cp310-win32.whl
Size 112.3 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
df7c174a4069c35c25c3796af211f7f963a8876afd82b883dd562e520e6c4786
BLAKE2b-256 checksum
How to use checksums
9118683ffce9e648a31784cc2010c945eb55e65e1ccacf859fa6d35e8db7dcff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp310-cp310-musllinux_1_2_x86_64.whl
Size 177.5 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1ec4bc67841e01428e7accfc9a0920d75aadfca882f7bb7d837be72dc7bd4841
BLAKE2b-256 checksum
How to use checksums
236263cb001d16199eb43a2621a495b06a7b2c41a99b8c429a32d618b1aaeb39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.24-cp310-cp310-musllinux_1_2_armv7l.whl
Size 161.6 kB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
3be85675101cd66bd1b92ddae29fecaf3b148dd1c5be2dcd2cacc9b6dfdecb6b
BLAKE2b-256 checksum
How to use checksums
9c5cec280ee6fb387ee38ee9fb8e95adb4face51fae55480c607fba5c2448db7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.24-cp310-cp310-musllinux_1_2_aarch64.whl
Size 173.0 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a925c249985b462b06215b5ce9fb761a1c5d6baebfa37eaf3d650d9e582eae8d
BLAKE2b-256 checksum
How to use checksums
c693b22ce4011077f812be180b4f85978bc037e0448e59b59a1c2e27bd364d9d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 174.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
73614f7a8d7b778a044da86a00ac125ff77b19b53e2131f3ac8ab26952154390
BLAKE2b-256 checksum
How to use checksums
47de902b3ccc35b5da56c977f8d817b880d4caca64fc24788b37d0e1f87a104c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.24-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 158.9 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
982a1ddf530decd22538347dde2ef82883c63617a0cd08ab6d650bb312a55d5f
BLAKE2b-256 checksum
How to use checksums
70398e50a9ec7d1acb828571e97bb123e1fcf6b93eeae3e9bb7bbf6f4532e74a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.24-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 171.9 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
834e51a76a3dd226f8725718597888ee7f188cc16865a341f95a0009b2cf840d
BLAKE2b-256 checksum
How to use checksums
35847fc749810b64caf53acd491af6334e3df28e3aa1dbe839d8a3da446eda26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp310-cp310-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.24-cp310-cp310-macosx_11_0_arm64.whl
Size 143.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
eb57690fbf18abcac5f80063c68edf2647131536210fb7ff2ea1f1bc6a90f02d
BLAKE2b-256 checksum
How to use checksums
b40ffd861e98a277a02e1a3dd43c99bb951b73e293df734bcc7c6dbad14feec8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / bluetooth_data_tools-1.29.24-cp310-cp310-macosx_10_9_x86_64.whl

Download URL bluetooth_data_tools-1.29.24-cp310-cp310-macosx_10_9_x86_64.whl
Size 144.6 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e76bbc671b70cfac79cf8299ee224d3478543990aeb435f54536b4a25d1e7cef
BLAKE2b-256 checksum
How to use checksums
0b91ce35d3849cc5b8d9711fd5a6aa15aa604a030d23be1f174a6909d17917d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.29.24 This release

62 release files

1.29.9

2 release files

1.29.8

2 release files

1.29.7

2 release files

1.29.4

2 release files

1.29.3

2 release files

1.29.2

2 release files

1.29.1

2 release files

1.29.0

2 release files

1.21.0

2 release files

1.19.2

2 release files

1.19.1

2 release files

1.9.1

16 release files

1.9.0

16 release files

1.8.0

16 release files

1.6.1

16 release files

1.6.0

16 release files

1.5.0

16 release files

1.4.0

16 release files

1.3.0

16 release files

1.2.0

16 release files

1.1.0

16 release files

0.4.0

16 release files

0.3.1

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.1.2

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page