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.23

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.23
File Size Uploaded
bluetooth_data_tools-1.29.23.tar.gz 22.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for bluetooth-data-tools 1.29.23
File
bluetooth_data_tools-1.29.23-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
bluetooth_data_tools-1.29.23-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
bluetooth_data_tools-1.29.23-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.23-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.23-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.23-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.23-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.23-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
bluetooth_data_tools-1.29.23-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.23-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.23-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
bluetooth_data_tools-1.29.23-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
bluetooth_data_tools-1.29.23-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.23-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.23-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.23-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.23-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.23-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.31+ ARMv7l, Linux glibc 2.17+ ARMv7l Details
bluetooth_data_tools-1.29.23-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.23-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.23-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.23-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
bluetooth_data_tools-1.29.23-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
bluetooth_data_tools-1.29.23-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.23-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.23-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.23-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.23-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.23-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.23-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.23-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.23-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
bluetooth_data_tools-1.29.23-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
bluetooth_data_tools-1.29.23-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.23-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.23-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.23-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.23-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.23-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.23-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.23-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.23-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
bluetooth_data_tools-1.29.23-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
bluetooth_data_tools-1.29.23-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.23-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.23-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.23-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.28+ x86-64, Linux glibc 2.17+ x86-64 Details
bluetooth_data_tools-1.29.23-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.23-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.23-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.23-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.23-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
bluetooth_data_tools-1.29.23-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
bluetooth_data_tools-1.29.23-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.23-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.23-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.23-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.23-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.23-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.23-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.23-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.23.tar.gz

Download URL bluetooth_data_tools-1.29.23.tar.gz
Size 22.2 kB
Tags Source
SHA-256 checksum
How to use checksums
097c4ba51ff956633651117fc4539e95c6063c6f0877719882d454a74514e0fa
BLAKE2b-256 checksum
How to use checksums
d1dbf8565fef4f8d40032c154b33ad94765df2e2c49e573b0f51835843626a44
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.23-cp314-cp314t-win_amd64.whl

Download URL bluetooth_data_tools-1.29.23-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
20690365e7b113b62d31c6a7ff0f1a658b367baebb56fbce184c2206f870f006
BLAKE2b-256 checksum
How to use checksums
5ac4123c6e26b2475aa745a043f4f36c988ae94f9056e46eb1cdc364528179e7
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.23-cp314-cp314t-win32.whl

Download URL bluetooth_data_tools-1.29.23-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
0ba6b235174f158a5abf1899a05df4dfde6f670546e4e1cb3385fe26151d6387
BLAKE2b-256 checksum
How to use checksums
e34927b6b414effa6d2ef06009c4f00cb1cf922e1092f81feb20b2e5d33712cd
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.23-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
3887dd1458c244c28f1abf62dbec1005fd8eb7f49c7cc0c1f516299d38fcc577
BLAKE2b-256 checksum
How to use checksums
d9208eb0ba7039322f159148748e4cbfeef9cc5c65b9d8bcab755cfa15029ab9
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.23-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.23-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
0d666a58f8c6ba5f6f15154cb9a69be76f68aa294531a90a640c9632b99f8d50
BLAKE2b-256 checksum
How to use checksums
6984cfb1a98d98824687f37a6042d8e6ff7b546a8e18635ec723f43233d6df2b
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.23-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.23-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
9106ee54652ca76302713a839f5a8ea74ac2609a8a35054e3270c12b21ae270f
BLAKE2b-256 checksum
How to use checksums
776b5da95206bb2c4ebf491a9d83cd9c17c5037857fc62301e4704172228750a
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.23-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
734362699603b07c046303b86f0deee6f5791b6b93b3870b6a3b83f3460a6e8e
BLAKE2b-256 checksum
How to use checksums
5e039fa8b2c0341087658b151c6ec232b857364591b8a3b04519c685ef15224b
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.23-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.23-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
faa8b043f53b12f3a40d69f28b18f5868a684962b287e68c902a790c9a5b6370
BLAKE2b-256 checksum
How to use checksums
dce3181e65c1bcaadf17f168637aef49398e06a8d1f9e6fe3952446005afa94f
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.23-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.23-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
100bf811faa65fc618cc67e49876995c44ca9465710840062b18723946d088dd
BLAKE2b-256 checksum
How to use checksums
e6379edbffcc5e7d9ba6cd07be9683de5dde9f33a0922d5b439663dab7cd13c8
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.23-cp314-cp314t-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.23-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
080a74ae3e6cf1b0be01923cc9979a7ed56d6af27e1b6e183b90558e7fc18cb1
BLAKE2b-256 checksum
How to use checksums
f565801fa5bb0755607ff4afa9c3b638af4e3505b3cbfbe3d173afa8993958b9
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.23-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
14408d0e7c262e577b463130743468f271ceaa5331a26cc7e0d850a65377f302
BLAKE2b-256 checksum
How to use checksums
bcddfdf86c597b9a9a16cf1e46c78b612d4a51068430c9fa47c0513e941c39d8
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.23-cp314-cp314-win_amd64.whl

Download URL bluetooth_data_tools-1.29.23-cp314-cp314-win_amd64.whl
Size 396.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
2a9fd4a48a5491a2caa7d425760a5b5fafddc7745ed6fb4188c972265fa24151
BLAKE2b-256 checksum
How to use checksums
840ddd790cf5176bf41d086d2aeaf3a6abdcf2f0bf5dc29c3ba4ff680bb07f97
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.23-cp314-cp314-win32.whl

Download URL bluetooth_data_tools-1.29.23-cp314-cp314-win32.whl
Size 384.0 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
eff052f2f4e55a79b06fc23e4cb4d8e8ff12a76f4366c2c52caff16f4e55edd6
BLAKE2b-256 checksum
How to use checksums
d3dcaedc5f61d24bca3cecf3909f72e591386a1dd3694328e71552f83b71b3e3
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.23-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
35abaff30e636f1cfd67d8139a55b7124233de3a3d9e71f0bffee8c70dce72dc
BLAKE2b-256 checksum
How to use checksums
ed412e7a1ac9d4dc831695c042b40497e676338626df9cbc516cfaafc1bfd86c
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.23-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.23-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
cba3dfcf070495ce43f75ff5b0e9503a558b4da270241aed639bdd6545037e4d
BLAKE2b-256 checksum
How to use checksums
c70b2408dc1e912b9b974f827e31e91b560d84a0b1dec9b731000baa8f7dc424
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.23-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.23-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
bded5efb5d0486a04f205ad6b062d7ccaf1fe468127b54e85577ad7c3cb318f5
BLAKE2b-256 checksum
How to use checksums
0f0a21b48498666b03139cf38f4137d8f537ee5ff116ca7113428bd97a11eefd
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.23-cp314-cp314-manylinux_2_41_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
79f6596b6a02ac203a7f5ee34a7a1d63a043bee55ff0b194dc518a5dfbf70fd8
BLAKE2b-256 checksum
How to use checksums
81eaa8a0639cd6150c07396b54d641b65b90f049603183cdc6847b49f949d2bd
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.23-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
00cdd53df63432fea5947933c0c4b3b3a12e03da4f45e935c16abe42c0dbf8c6
BLAKE2b-256 checksum
How to use checksums
ef2c9c9337a872088823b5a321945df8d92016be5dc7c36edf306f00923dbffb
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.23-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.23-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
e0963452d6f796bb0a02bcf7ecfb6251b31c81a0429c72d4361f66bfbefd2680
BLAKE2b-256 checksum
How to use checksums
ccd474c83e14288b72e134690f20a123f13ada20ca7d9aed1c909c0ac33f5f69
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.23-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.23-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
5694a0f0de00826b6566e7dc67c9a41eac63c1f7f2b59de8f1aa95ad9e31fe4a
BLAKE2b-256 checksum
How to use checksums
316af074c03467b5a5282b5b66c77537274b85993e226ddaa41fa68341e85c83
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.23-cp314-cp314-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.23-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
de343444181e4870ed5ead0b80df855f1f1f4fdddf5e681b0eede96a0ac50bcf
BLAKE2b-256 checksum
How to use checksums
74cfba53d994bfeda24f1225264e1432a54d56d0804fa6009ea67c3a8e00eba1
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.23-cp314-cp314-macosx_10_15_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
5a81e7979fb7d5ce75f4dbe19bc0bde6cf1d3fb736a8db013a739281ed336fe0
BLAKE2b-256 checksum
How to use checksums
73f79077fda4dda440ad47ac6359e9cb7cc2b5a258f763c63f540fa0d2559839
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.23-cp313-cp313-win_amd64.whl

Download URL bluetooth_data_tools-1.29.23-cp313-cp313-win_amd64.whl
Size 394.4 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
2551a12f37cce3ed6c5759a1b799c840126fda80e9e7cca63ac11347a1e8384e
BLAKE2b-256 checksum
How to use checksums
cdc13c77ecd2de9be9b29b1560b2113d0b841f948caa7870e55aeb98053ff9da
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.23-cp313-cp313-win32.whl

Download URL bluetooth_data_tools-1.29.23-cp313-cp313-win32.whl
Size 382.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
9cf9654d7c9fc129aae76a2b6ff985331ea92140609ed71be955f0c9fbc2ca64
BLAKE2b-256 checksum
How to use checksums
77bf18797bcb755c2439b1bd9fdf351b13ad8c4a25588cf4ed79e99ad7c931b2
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.23-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
bf3e4a1ce28a02b3ee1b11e9cf061cea985f57009d74ed166fb8c158f67834f1
BLAKE2b-256 checksum
How to use checksums
44dd2f5e2bcdcc663cb5acedd08bdbcfcf707a9ec8b9a391b701ef2d10800885
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.23-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.23-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
6a00ce556a6ee4d5f4f267a6e36cfaab3be80ebb284d482f4bf5a017af33bc75
BLAKE2b-256 checksum
How to use checksums
89a00ae3512523ea59e71a590d1e11e94ee6938311e7ae04877078d3887ceb24
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.23-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.23-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
d6f6bf3e4ca501286c18c9a1cd1bff014448e7db4e1844b1b8e6ee0264c02972
BLAKE2b-256 checksum
How to use checksums
797a265337df38079afdcd42b17c6db16b5a82d61e17f0c81400ba2df954a863
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.23-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
5329c4635d300a847bd836e2db9b616fb79df8fd685f9a06512a1796ecd5e488
BLAKE2b-256 checksum
How to use checksums
5f88e9cb41167023a93a6f1fb021212cff551e95373ef77c990b3a71b30620a4
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.23-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.23-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
78df473ff27cc74e6d22f82a5f6a7e8a47c96865e8dd5f5c184afb9c76595ce7
BLAKE2b-256 checksum
How to use checksums
226f9e0349b3487eb47c99b03160e98eaeec0cc4c3ae0f08a93d270776c1e82b
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.23-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.23-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
744daedf2c09881d6041d3909f83cdf3e50ebcb7c3e5db1b8dc657129aca5b28
BLAKE2b-256 checksum
How to use checksums
aa58e5fd7d670b20b2b0a5bf76501f21c46a2aa41523122dfe2a7df0c4f15f8f
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.23-cp313-cp313-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.23-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
6336e876e1f9ce189103bb0c65bfdcc0c7f33f9fea209c14af99032dae778ff0
BLAKE2b-256 checksum
How to use checksums
cf33b4cbdb8f7f2f44389bb22ef0fe3237c40209a6ac306fef8d0f66a3a249b3
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.23-cp313-cp313-macosx_10_13_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
ce8df40276459260495e57cfbeda395a4807b18b248b6f8c493069aebabd4b40
BLAKE2b-256 checksum
How to use checksums
ba8b732f5725facaeaa4be5e7be46dec50f49c64248a75f42e45aaf9f506220e
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.23-cp312-cp312-win_amd64.whl

Download URL bluetooth_data_tools-1.29.23-cp312-cp312-win_amd64.whl
Size 395.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
c7997277f45f3cdbd5eb31863222ac816fbd9b7e5995683b22ec7246c8162f5f
BLAKE2b-256 checksum
How to use checksums
6086bf025f3b899db6ed9a81821646da20c1fd777809a026b340da6643a02ed7
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.23-cp312-cp312-win32.whl

Download URL bluetooth_data_tools-1.29.23-cp312-cp312-win32.whl
Size 383.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
fc12455d5a5439bfec13dbb9284389e0625d3ba4868b21dad33cacaa6227db3e
BLAKE2b-256 checksum
How to use checksums
4b6678115a1f1c5a29a152aa14954842ddcf19afcc575a8cd42798a019b34b5d
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.23-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
a492c489dc85330389b159443c21ee0ae039c1aa73a2fa455cf104f3a6c18efe
BLAKE2b-256 checksum
How to use checksums
0d4f0fe5b62aa35bc062307f5b08c4be80223bb6791684815f6d8248d38111a5
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.23-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.23-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
a9495d7923f236e69f4b52057c7223be49b7f6be30b8a4900b6d77844ef8a633
BLAKE2b-256 checksum
How to use checksums
c654907a3d38f92b472aba3f96f305beaba908e40a5db89fe4aaf08500efd181
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.23-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.23-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
67cafbb4aa8375661a9aff041ddf1f96f8cc8635d5cd475b9c983733dc0e2be7
BLAKE2b-256 checksum
How to use checksums
f3cc77c3e7f176fd1d2a9eaf2ae33824133ed1e6c7f61643f47c16d5aeca8e0c
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.23-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
77b5a75b7fea2460d37f07c5177f8be00328a46ed78c0755fa8075ac5a4fda2c
BLAKE2b-256 checksum
How to use checksums
57eb2f1ef614674d40940e565efd87199754bc473b0ea41fed7697b749209c41
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.23-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.23-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
bb5d6e8910e1cf91e71b2b4e4423f63e82ebd8758da72c4de4df8a1e10447383
BLAKE2b-256 checksum
How to use checksums
c8d9e472d31419f8ef0c74d9c67f7ab0486cc4991367ec4e47bc8f621e60610c
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.23-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.23-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
3221bb38191eaccb2fdc58aa531e44a0ebe0810485b619427d2b99ff8b668314
BLAKE2b-256 checksum
How to use checksums
d173593241e79cad09649c4cf0fdec5fabcf2e3a0fdcb1923be6edcf1333bb5e
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.23-cp312-cp312-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.23-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
0151aa6b6b8c3bf8dc4948819c76cea473b8e7f9e151c245035e12279087a69a
BLAKE2b-256 checksum
How to use checksums
2b86b2bb7c25b7a5bcf6a27e7064d188b7ada2318cfd5e2fae817eb9956e6015
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.23-cp312-cp312-macosx_10_13_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
0354332294709c0a67e80edf7c9ed42153c3b4574a433fa3a1a025cc29e8c44c
BLAKE2b-256 checksum
How to use checksums
d875b0bef9be342abf8e3a3464abcabe5a0c46d0908c647fe2b60fb6112425f2
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.23-cp311-cp311-win_amd64.whl

Download URL bluetooth_data_tools-1.29.23-cp311-cp311-win_amd64.whl
Size 396.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d040a26ad5c9d28c1fdf9491a8a349301607926efa07642c44ee5a6fc343a971
BLAKE2b-256 checksum
How to use checksums
0f1c87e8b595d39521445d2a2b845a494c1c30350dfcc3269c9c93dac24e797a
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.23-cp311-cp311-win32.whl

Download URL bluetooth_data_tools-1.29.23-cp311-cp311-win32.whl
Size 383.6 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
dff9acb6e7bdb039d44b2e1f6d5bdd26cd6e41f481d1aad3b47fe529302c95ff
BLAKE2b-256 checksum
How to use checksums
f823efca7071f4dd4611688ed024d7930ddaafbeb761f6d740d70aaea8dc21c4
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.23-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
91cc234cf9563dfca4b94f3a93b906047f5be19485cd573aad0650e486a718a9
BLAKE2b-256 checksum
How to use checksums
4f67a8b65e4946fc93d94e945cfa69840444ed6d36551576707971999100c7a8
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.23-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.23-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
17aedc7f166f109f107d6b30cda383cb04dbf01bc0b97db8a0701b63ba4a53c6
BLAKE2b-256 checksum
How to use checksums
9428b9bca1afbc6fdd8de3a636cd35df712ccdd73dc03f6648b837b20c0e6e94
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.23-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.23-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
c20910f7309e878dc812f522dd9f780242a366f3894de7dd6721e86356e8916b
BLAKE2b-256 checksum
How to use checksums
994a9df0e6f4a6c4bba4bef3f6b0c8183c36effbe3539057c67e2f0be9aabada
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.23-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
a052bd0536835e0c1c99f4216b919137f76c78668a6348507236340a26b06054
BLAKE2b-256 checksum
How to use checksums
df4079e911c7fd36ecfbbc8bbedf88bd0e75cabe4b826bafd1f8048a3eb7f5dd
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.23-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.23-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
d14eb7af8de6a9ffa64cf138c5d6aa53c219504d521a2bf013049284335d46d0
BLAKE2b-256 checksum
How to use checksums
f9c0d354497e4cecba8b677ea9fcae3ca0872642863b03d84d8c4a4773235ddc
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.23-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.23-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
d7071b65f6a44045a7669d32e9d1a5fc3e3551a6779d71ca6e24da0ddd0843ac
BLAKE2b-256 checksum
How to use checksums
8162cac87b6799c59d7f1acfd910d8974cd07072cc2ba46b80d505433ae05796
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.23-cp311-cp311-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.23-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
74696c84bdd634afda0be39ab311b44e1efbf3a99ffc9c3ec280f907912247bc
BLAKE2b-256 checksum
How to use checksums
55ca96906f9d64e16391cc22cf12909d7bc609ec6e894a98d32051138082c0d4
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.23-cp311-cp311-macosx_10_9_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
e6082490f1b83174a07462b02cf89b8e8bd54a2e604ae6154c7f1e38527bd9ac
BLAKE2b-256 checksum
How to use checksums
b8b2990c15535d7d8e63867fd073ca81d2e3949f85614b1147063ac3e140a97b
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.23-cp310-cp310-win_amd64.whl

Download URL bluetooth_data_tools-1.29.23-cp310-cp310-win_amd64.whl
Size 397.7 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
e17413521e60dc7ad75eea04ee8cadb1b98cf9fca698f6175499c3e2ea86cee9
BLAKE2b-256 checksum
How to use checksums
13684da30dbdeafc671bebd75a746adbf8c47263ca51941235efabb45dab4f69
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.23-cp310-cp310-win32.whl

Download URL bluetooth_data_tools-1.29.23-cp310-cp310-win32.whl
Size 112.3 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
ff60deb14fe94557da0b5415d5880c95dea72ce9fffe5d60bdccacfc8dd16f13
BLAKE2b-256 checksum
How to use checksums
538e0c2875eec275ce03b97787a149784e7fcdac07f7fef62b98c9ef21d234d0
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.23-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
7e64386edef0e1825f93da77fd16a3180dab92adc1a901f97acb544fb91ade51
BLAKE2b-256 checksum
How to use checksums
2010c860e0338dc777fc37199bb5bc037a7622ed0be3185912afc4e93566db80
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.23-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.23-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
01c5d6ae0d6effc2ec0d95cf290216d4cf111a7c55fa1c9449a78c2f0cf71c40
BLAKE2b-256 checksum
How to use checksums
322eaaefc4c2ed5cf5fdb048265fe33bc0ffe3a2e4153545579b12139a34f4fd
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.23-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.23-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
a19fd2cc240fefe7f555930a13300141ca73ea36c9a4c327cb531ccc0c5866fd
BLAKE2b-256 checksum
How to use checksums
9fae5eece13f3ecae4c50f0e619d7ec58c10489856c8098f4ba43ac51d90df8c
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.23-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
278612687dd20466c102035dc1423f1ea3d86854df69b3a9f03f9cebe4c6ec59
BLAKE2b-256 checksum
How to use checksums
2b5180eca2e8e0b7a04cfa11c58691bda24f14454e73b80de49fe923d15047c9
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.23-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.23-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
2a03019403cfefeb5bd38d2413b9fcbc065d241e5a1bfadd0084b86c5e15ea8c
BLAKE2b-256 checksum
How to use checksums
f298b97176fb9aec4a91c270e9112547b0899b372131f74d4de8cc25fbe8c8c7
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.23-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.23-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
91e99008eb42f6a8286adce0bf10ed0a23253cac41fcffe26567a3c7542be2f6
BLAKE2b-256 checksum
How to use checksums
700e676f28fc69ed7f84f72cf8c4d8a7ca686eeda012f776b883945df75d5994
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.23-cp310-cp310-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.23-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
c52f576fe3a2646c6e331bf1a4793e0b56fe38f1ec7fb82c5550d1b63a9f644f
BLAKE2b-256 checksum
How to use checksums
5a56f750464259bad1b0c1c016c44880a267d4eb6f71a023f37449582571a993
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.23-cp310-cp310-macosx_10_9_x86_64.whl

Download URL bluetooth_data_tools-1.29.23-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
d9ef19ddafd5300827fe403e63873a3b622c0acafffff170d0c15c91743beecb
BLAKE2b-256 checksum
How to use checksums
cd52f9c4e2b4f82bc3f35adef199b02ff0a7a7937e961002b03f8f5999f2f357
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.23 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