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

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.22
File Size Uploaded
bluetooth_data_tools-1.29.22.tar.gz 22.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for bluetooth-data-tools 1.29.22
File
bluetooth_data_tools-1.29.22-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
bluetooth_data_tools-1.29.22-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
bluetooth_data_tools-1.29.22-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.22-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.22-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.22-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.22-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.22-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.22-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.22-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.22-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
bluetooth_data_tools-1.29.22-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
bluetooth_data_tools-1.29.22-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.22-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.22-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.22-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.22-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.17+ x86-64, Linux glibc 2.28+ x86-64 Details
bluetooth_data_tools-1.29.22-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.22-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.22-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.22-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.22-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
bluetooth_data_tools-1.29.22-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
bluetooth_data_tools-1.29.22-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.22-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.22-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.22-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.17+ x86-64, Linux glibc 2.28+ x86-64 Details
bluetooth_data_tools-1.29.22-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.22-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.22-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.22-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.22-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
bluetooth_data_tools-1.29.22-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
bluetooth_data_tools-1.29.22-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.22-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.22-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.22-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.28+ x86-64, Linux glibc 2.17+ x86-64 Details
bluetooth_data_tools-1.29.22-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.22-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.22-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.22-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.22-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
bluetooth_data_tools-1.29.22-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
bluetooth_data_tools-1.29.22-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.22-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.22-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.22-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.22-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.22-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.22-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.22-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.22-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
bluetooth_data_tools-1.29.22-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
bluetooth_data_tools-1.29.22-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.22-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
bluetooth_data_tools-1.29.22-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
bluetooth_data_tools-1.29.22-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.22-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.22-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.22-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
bluetooth_data_tools-1.29.22-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size: 23.6 MB

Release files / bluetooth_data_tools-1.29.22.tar.gz

Download URL bluetooth_data_tools-1.29.22.tar.gz
Size 22.3 kB
Tags Source
SHA-256 checksum
How to use checksums
8dcb30e6c149eefd35504d40de3b2c9804dcb6c2474f1ed20c7e546b00f62953
BLAKE2b-256 checksum
How to use checksums
add6017119c5a1d4fd607bc8cc763cd88b0aa501e1b40c2bc0f2a23c9030dc9b
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.22-cp314-cp314t-win_amd64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314t-win_amd64.whl
Size 501.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ce1a0fc6f4e1cdd1077434dff6e580849aa771ff80c941beac0737d79533b339
BLAKE2b-256 checksum
How to use checksums
acfc84c8a0cdf8d7bfd35fcf0941f78422786edbb7503686356c5dcd5edc5ea3
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.22-cp314-cp314t-win32.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314t-win32.whl
Size 474.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
d4b0b15462ab2524c1b2aa162c9ce9a4bcd77048f30a13d2b3f3677341c7d249
BLAKE2b-256 checksum
How to use checksums
97fad13842833220103531a1db73a99f86a90d1b2226bcdc5bc7e82fce760879
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.22-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 646.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8085bf6496f0c813a41bedd04f0cac1351ddc355b72ffe4bf4391880e7e31ea8
BLAKE2b-256 checksum
How to use checksums
1c7a706ca59588aa82378f2b16815829ee8b8360d870193f9c90714833df1af2
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.22-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 621.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
d40a6077a0c0a3fcd12a748cb75a0961fd0dbb4fc99b3dcc53d9cc539f910357
BLAKE2b-256 checksum
How to use checksums
398005c1d6e2a11fe4ec8cc3f44fd62143cbb14fbac6527ca4a6aaf5f52b66ac
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.22-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 640.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
347636350ce327d0e2a4b68dd44e61322ec9a0342fefcbeaf51c5a2413cfe10b
BLAKE2b-256 checksum
How to use checksums
5b2c33d05c6b3922416d09b495d7241facdb4c3f9559df69db079638067c4673
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.22-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 642.3 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
4b75125561739f82d305572a8c63f36a72dfce12c349a9f9b515dacd5f3109e7
BLAKE2b-256 checksum
How to use checksums
0bc747c1e3e911025c34c9f2517a6f7bb70ae8928be13290304d7b1ea45cd809
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.22-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 614.4 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
24943af924ff86b677d5cfa7f5af80f8f1ab5c7765e3e3b74a420b8eaa92f31e
BLAKE2b-256 checksum
How to use checksums
c1f8a5b7360e89b99485482cb6cac8f8e91d5c8adabac2e167c6c5f53b65019e
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.22-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 638.8 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
d039077f67d3ed2fc29554d18eb7175f87735779125fd728cdbbcbed699a5164
BLAKE2b-256 checksum
How to use checksums
fc7978c56f33f20d111b9cac39d7da4e11f153b13cd8ba48b9555bc8649dfb8d
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.22-cp314-cp314t-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314t-macosx_11_0_arm64.whl
Size 584.2 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7b53eb28f9575fdbb6d37edd69d120896d2da64bf82dab64371f3eb5a3602dc4
BLAKE2b-256 checksum
How to use checksums
fed1c852e435221bcb37878399747e99adb12178a89b6d12ad55db84218aa159
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.22-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314t-macosx_10_15_x86_64.whl
Size 583.6 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
f0ea8997f0585af6d698a1cab8c497166028d9108a62bad1d3c9bb3872f4961c
BLAKE2b-256 checksum
How to use checksums
0e13cf70d5404e239dba769fabfc9a0475ee3a701dace6af584a62624c299526
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.22-cp314-cp314-win_amd64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314-win_amd64.whl
Size 388.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
6f73e2a5f3d715687a37ad07b07ba36870c90ff8f20192ff8523a4c0fd9fc013
BLAKE2b-256 checksum
How to use checksums
84a54f4c8059bb9138e8c4d0a8aa888e014a829e36f23a5587ef513664e9139e
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.22-cp314-cp314-win32.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314-win32.whl
Size 374.3 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
6481e37af65e6eb644d9b92e5cd210bae5964d839824b6699852c13c09f67920
BLAKE2b-256 checksum
How to use checksums
517ff7cb0c6b175503aafe5b056190f49f9b5d51ddcf4cf8fef982dd31d86b04
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.22-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314-musllinux_1_2_x86_64.whl
Size 488.7 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9659ba9b4ab50fb21ddf15fbfd7af161fb27ad2479e89ab7897a53a4677f8c3b
BLAKE2b-256 checksum
How to use checksums
61cf79cbf5b8edd555bdd4ee038fa16266ecd5e0f14a71f21982f9e959a4561c
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.22-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314-musllinux_1_2_armv7l.whl
Size 158.9 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
87d882e168dabe6c2efd2886830e52b4005af99addc614aae8b907aa3b38e8aa
BLAKE2b-256 checksum
How to use checksums
0bd31699113fa026ff689265c0988e18c30ab963faf17833a70fdfcbfa71bcc7
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.22-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314-musllinux_1_2_aarch64.whl
Size 484.5 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3c0770a7a8bdea6bd081183cc6cf15c57afff80ec00a787ad5155bd1f2f86d41
BLAKE2b-256 checksum
How to use checksums
012526d32cb5e10fbadb2d6340fa8f4c74fd3fc9ea48ead61f0a0b2dd27507cb
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.22-cp314-cp314-manylinux_2_41_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314-manylinux_2_41_x86_64.whl
Size 171.7 kB
Tags CPython 3.14 Linux glibc 2.41+ x86-64
SHA-256 checksum
How to use checksums
90117c6da939f02732f232fea425c670eb11cc702fdcf3fc61511d49ad29f94a
BLAKE2b-256 checksum
How to use checksums
807fdcaff7b6c18172268506a2f677401db8108da89404dd4bb9a702feba950e
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.22-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 486.6 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3e5b312918197922131e981edf446c5b35eb4c39edfc45b10abeb6e56364a353
BLAKE2b-256 checksum
How to use checksums
ac648d0b006c8dc06c789e35ba96e0e73ecc4a6d4320341cb792fc8530c15bba
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.22-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 157.1 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
5e0f9be56324a9836449283de6df02932ced7d2fd297c1b149efaa4fd47afb82
BLAKE2b-256 checksum
How to use checksums
cdfb7359d6e58ab3cab87e231a0ca6a6b13b2fdff64588c3181bf0a6db562a2d
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.22-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 483.4 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
be7f8221cb5e070bd7717b64ff4319ff88bd40a622fde34c9ec1e036dea26372
BLAKE2b-256 checksum
How to use checksums
2843ad7b4e16c2c5c64ecf47421a1941182919f833d152165d2fc0c2c4039c4e
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.22-cp314-cp314-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314-macosx_11_0_arm64.whl
Size 453.1 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cca7f4a451295579d065d2fc8e9ec1784b9705e5b4e431c7bec5357bd5c516bf
BLAKE2b-256 checksum
How to use checksums
a84f4596d031b6da2af2ea0e3b2585d921ade291bcd30a61cf4fbd5083a185d0
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.22-cp314-cp314-macosx_10_15_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp314-cp314-macosx_10_15_x86_64.whl
Size 453.8 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
64b8c8ff877b7ec9c20d6bd14c7f708d38e9794e8c18f05b11eb080d9e218bd6
BLAKE2b-256 checksum
How to use checksums
c02ee384aa81696fc2bab49371423dbecec50cca3844bbf1bac89534a90d16fa
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.22-cp313-cp313-win_amd64.whl

Download URL bluetooth_data_tools-1.29.22-cp313-cp313-win_amd64.whl
Size 385.3 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
0994728a3d176a3818527f439a6a568efed18b7725d1b55e325b0992f7765c8f
BLAKE2b-256 checksum
How to use checksums
22a9b1c98bd1aebeac0e0ea7eed6293dc8289d4886fe665cde9696b3032c3c99
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.22-cp313-cp313-win32.whl

Download URL bluetooth_data_tools-1.29.22-cp313-cp313-win32.whl
Size 372.3 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
3f335a5c0c09bc385f818b2e5ab6767f7f3d92f1a8d5ae02fd9d5ccc8a619ca2
BLAKE2b-256 checksum
How to use checksums
0bfa5ec448bd51ff847efa174f402c8cac0b00e42521c78d29aa91611b61f09e
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.22-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp313-cp313-musllinux_1_2_x86_64.whl
Size 487.6 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e696180d9f0aeb2331c6f1a04be3e89adce3c051e27a841720cb9e422a19f56b
BLAKE2b-256 checksum
How to use checksums
ae7149ac8f0dbdc809487ff038356887dc7f4fef73d9b6517ebcbefc1650631a
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.22-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.22-cp313-cp313-musllinux_1_2_armv7l.whl
Size 160.3 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
1506a834147d2c3884c79e440e26469337017fcead80e18aaf49f7ffed4a2b8b
BLAKE2b-256 checksum
How to use checksums
52c60c7db9ed742703b38f9b34e61de0783edd88020f1ad5b47607bbf6550090
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.22-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.22-cp313-cp313-musllinux_1_2_aarch64.whl
Size 481.8 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a686fc3a85ace8086ec535563055036b338b4f11b39cd203b31b361564187583
BLAKE2b-256 checksum
How to use checksums
09ea815d6e1a28e23d9507196bbf0dc509512a65f95260657aa719ee47992ca7
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.22-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 485.5 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6fc9c87b14aa7715b1c8be68fbe1178e940828108d5413fb6578008e5e17d2bf
BLAKE2b-256 checksum
How to use checksums
aa34afee103d005efcd4dc6a5d4cb6cac0d3e43482780b2d200c5b901e13896c
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.22-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.22-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 157.5 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
b29e1fcbf62a588eb257c5c8c370ae675a7463d74a34aa8976abf00f9db80c95
BLAKE2b-256 checksum
How to use checksums
3ba747981d989961656c0b4528d80c851be82be97ab25aed0ed74257e9d6b65c
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.22-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.22-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 481.1 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0ac54c8e2b93d90bede7d3ddd1f2e8deca1ae773c83958238c7337aead7be3fc
BLAKE2b-256 checksum
How to use checksums
2e007042e8249f2653a11a665b57c17b264bcc3ae8e5793793ca488cfcbfe005
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.22-cp313-cp313-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.22-cp313-cp313-macosx_11_0_arm64.whl
Size 452.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e00d0b9d2895e58dc273a365e6f284f11e3ce86e834ff9179101803828ba037e
BLAKE2b-256 checksum
How to use checksums
b2b0899ef7d95030f23528c85fc75753dc1d4d27c27d82ade963bfa3139fdcb7
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.22-cp313-cp313-macosx_10_13_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp313-cp313-macosx_10_13_x86_64.whl
Size 453.6 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
c6b7bd47bed131a6e07a2e10f8aa11a97e42f8937696d6ad5a49bf7a4e670929
BLAKE2b-256 checksum
How to use checksums
7b41b4f1f7fd23823ea11d7bfdcb48c9db12b075defa0febcfb1f975a2bd4738
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.22-cp312-cp312-win_amd64.whl

Download URL bluetooth_data_tools-1.29.22-cp312-cp312-win_amd64.whl
Size 386.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
a04ed4bb2085c52317c10992e7eb90cb26376365ca5cce8450e3e6548cfe98bb
BLAKE2b-256 checksum
How to use checksums
51dd65baac50c0be3d3b346bd98eb600a9d575fc1ad09356baf7ff1a9ec3a0fe
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.22-cp312-cp312-win32.whl

Download URL bluetooth_data_tools-1.29.22-cp312-cp312-win32.whl
Size 373.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
ccfb6d87db8c53d15ad50c516e7f902a40770a9edaf03e51cec8f0334f022246
BLAKE2b-256 checksum
How to use checksums
1c78adc53e67e1f21d9d811298fe5369201137c46690364c51c8fa859ae945b7
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.22-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp312-cp312-musllinux_1_2_x86_64.whl
Size 489.5 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ab0beb290a3e3b3cf278de05064dfce780c60825a33f6adde7e233bb87a12cda
BLAKE2b-256 checksum
How to use checksums
7bc982454925191abd719f69be68e22735971db62a3699b813f7d52546917949
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.22-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.22-cp312-cp312-musllinux_1_2_armv7l.whl
Size 161.3 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
4ff79627b4db074e7ebfaf756218ec92f04403d41c72d514a23b651cc4783705
BLAKE2b-256 checksum
How to use checksums
b9795baa2d2ebc066262d71b49765f447d042f545897dd74e4e212cf87432ec4
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.22-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.22-cp312-cp312-musllinux_1_2_aarch64.whl
Size 483.9 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4b7c469d15e042687b25d716b72d3b0b8dde184389891092578a235137aab041
BLAKE2b-256 checksum
How to use checksums
aaaf687a2c2f8b1a9c6054a71dc37dd43a3703a9b368ba9af9877a8d5079d577
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.22-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 487.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f66cd1e619086899249ff172bc4288393bdf63dbac44490d041235bf3ca76e0f
BLAKE2b-256 checksum
How to use checksums
d3750bee5bfef3886e565f8fc0e4161bfe60a5fdd95e477d61816304ed8518a0
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.22-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.22-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 159.1 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
9b3a59cdc75cd5f37fc70e2f6eb5a9238bca0e5ba7d698793189f4949de206b4
BLAKE2b-256 checksum
How to use checksums
365cea66097855dff0ccf5c66aeb76a983cc48670e07007e438d72fda82ff680
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.22-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.22-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 483.5 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f07a1bf491cdb2a5b5234f517965dab934c3d7db14359eb62cfcbec953445fe2
BLAKE2b-256 checksum
How to use checksums
b584cbed993eee5053ab8349f5c88ed6750306fe017f875d2ec81f63f77bf52b
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.22-cp312-cp312-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.22-cp312-cp312-macosx_11_0_arm64.whl
Size 453.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ea142c7c1fccb33c64ef18bdd5cb1aa11af739df9ec3493a3c0465236b0cd83b
BLAKE2b-256 checksum
How to use checksums
23dde28b4205889c62859181ae422bec9197bad85c865d19abf2da7ff561004c
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.22-cp312-cp312-macosx_10_13_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp312-cp312-macosx_10_13_x86_64.whl
Size 454.6 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
56b70f6bb5d368bb26fdf316f1481075596899377dd1e26734cad40ac38427f4
BLAKE2b-256 checksum
How to use checksums
4340f173e9310f02a91f6867f882fc424817500a79be50a445f6a6da9ceaa843
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.22-cp311-cp311-win_amd64.whl

Download URL bluetooth_data_tools-1.29.22-cp311-cp311-win_amd64.whl
Size 387.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
ac66f5c5a63a5a91c624e5a69335038afa936a6c29ab234972ed36ed8c9ed0a1
BLAKE2b-256 checksum
How to use checksums
59c8fc1f9d54f99486823d960ebc3a802d92a87ca3b398aa92eaae98d68b64b7
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.22-cp311-cp311-win32.whl

Download URL bluetooth_data_tools-1.29.22-cp311-cp311-win32.whl
Size 374.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
4e5e147d89f233b9f2fe8c7fd9d68882201592281546bff41f459650e4e6fac6
BLAKE2b-256 checksum
How to use checksums
0aa1e6cc280922783f047aee6911410448275f22a44cfb3d9d7961bea7fb30cd
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.22-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp311-cp311-musllinux_1_2_x86_64.whl
Size 488.5 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1edc55c56c90f4dcfb32f94f5d70bbdcdc1b9a6c8c4b8d9cef592dc1dc80a1ec
BLAKE2b-256 checksum
How to use checksums
5fee9f0cae5d08fdb4d19c346a5dea3ed23a71449463d02b3c49c560ae71fad4
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.22-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.22-cp311-cp311-musllinux_1_2_armv7l.whl
Size 160.7 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
fa6d0afab3a2ba8877341c5037ca217393ac497e3c517c42ba346804ab7f48da
BLAKE2b-256 checksum
How to use checksums
dd6c60f6f21f55b3dcb3767abe5a5dc32896cfbe264a1d578c9ee67a46b4e03e
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.22-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.22-cp311-cp311-musllinux_1_2_aarch64.whl
Size 483.1 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9a4c8f4389f53da66ff1400c89114ce6393c4ebfa639f633f6d92d79a265373b
BLAKE2b-256 checksum
How to use checksums
259192552fc5846cd7cf8324b8f4b3819c07543f3fc62e1f120526247e80b05e
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.22-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 486.3 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
083472bbf888ee4531b9b927203162841c51e5f3d322697f847ab6665604db41
BLAKE2b-256 checksum
How to use checksums
9b269ac23bfda706069a49beeccafd4495f2acbdbfff5be7ce36cfd7a94291b3
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.22-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.22-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 157.1 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
9d8d1819cbf2cdf721fd2a432b718c0684a962e60c666035a80c6ddf8c3ee0bc
BLAKE2b-256 checksum
How to use checksums
ce49f0e89e3f3ab6ce208143bbb9f3ba735357ef8d611b784ebeb2f6f6d7a106
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.22-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.22-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 482.8 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7880ddfadd8d67f35dcda396f7e85bd3e0de13ff3e903c390590b525b61d1cf0
BLAKE2b-256 checksum
How to use checksums
53d0c5b0471191e1811a27bb410b51ffb68a75ef0a0c4b51abb3ce4dc4e96bc0
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.22-cp311-cp311-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.22-cp311-cp311-macosx_11_0_arm64.whl
Size 453.9 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
dbf395b0b957b970a5027ab5499c3a964383c101b274fb6de03ec8ebf7ed2fe4
BLAKE2b-256 checksum
How to use checksums
c4bc23e363d4eb07785fa96afded5c5341b6da73339f81d03ffee2dd0c6697a9
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.22-cp311-cp311-macosx_10_9_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp311-cp311-macosx_10_9_x86_64.whl
Size 454.1 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7b55063947106c4dc0bcf8d27cde8e4405ed2f0b2ebd988817a638ddd91d34be
BLAKE2b-256 checksum
How to use checksums
c55d575cf681b9802423bc55c98cb2c832947b2c567ad2f536c886b0a37f2506
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.22-cp310-cp310-win_amd64.whl

Download URL bluetooth_data_tools-1.29.22-cp310-cp310-win_amd64.whl
Size 386.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
216c3f209f46a64f53da745443ad62506a99e29670a1f3da1d7183aa85da5310
BLAKE2b-256 checksum
How to use checksums
c624c03adf2b9e44cd72f686dcab0d23170beebd13ad59616b94ce0332773ab9
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.22-cp310-cp310-win32.whl

Download URL bluetooth_data_tools-1.29.22-cp310-cp310-win32.whl
Size 110.9 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
4edb322862e907799ccb1080329534d1f255fa4f04d9a32473cb992efeab87d4
BLAKE2b-256 checksum
How to use checksums
593479d4d2e5bf41249636d7f67128669cd78c3fbad46742c7c880d421f1e435
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.22-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp310-cp310-musllinux_1_2_x86_64.whl
Size 175.5 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ff22165e9a788670ff9023918ce5ffa9a018bfeb0390de82b06c69fc053cac35
BLAKE2b-256 checksum
How to use checksums
a7a9d17abf1dae3fa950cdaf34f30c8ca317ef6ee2fd82cc7ce6b5c58593db49
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.22-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL bluetooth_data_tools-1.29.22-cp310-cp310-musllinux_1_2_armv7l.whl
Size 161.4 kB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
891b817444eef207c6136bfdf69555139a39bdbf026ef4597ced2476c9b1eb7b
BLAKE2b-256 checksum
How to use checksums
2a85c15b17ba34b437b24d3d5c4bafa964a4e45420a398e5b1fc0ef721ac9954
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.22-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL bluetooth_data_tools-1.29.22-cp310-cp310-musllinux_1_2_aarch64.whl
Size 170.0 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3f095815b3f35bd8e07e22e67fac929c471363909bb2fc5fe8690c4a3746ef1a
BLAKE2b-256 checksum
How to use checksums
aa999f6ada658b40afde8301b8e384cf7a411c49a7b8003c9cc56cbae985579d
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.22-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 173.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8b42cfe2e2fc68979c0670bbc45283d3d056fed7299ae2faaff08deffa5f7d78
BLAKE2b-256 checksum
How to use checksums
e857dc25edbb980d867545be8d6ed297c79424797d54a016375dc1e2acc50f66
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.22-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl

Download URL bluetooth_data_tools-1.29.22-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Size 157.7 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l Linux glibc 2.31+ ARMv7l
SHA-256 checksum
How to use checksums
b00d1eb7fdceea16d7769fcdf7562f32dc519a508d70ae11d0633658e37b6eba
BLAKE2b-256 checksum
How to use checksums
6e4c3002221c4d1f24b10686cbdbbe0407942f0074f45c985d4c9ba164b9f734
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.22-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL bluetooth_data_tools-1.29.22-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 169.5 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
22dcbfff9a390b330f2c24f48486d43a633cf9afe07b97cae3aaf768a0075a34
BLAKE2b-256 checksum
How to use checksums
02f5b919120b8a699d4de9df4003aa71e2cc65eec0bbf0c7202058f1fd9c4629
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.22-cp310-cp310-macosx_11_0_arm64.whl

Download URL bluetooth_data_tools-1.29.22-cp310-cp310-macosx_11_0_arm64.whl
Size 140.8 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c0a1265ae66db5865b109d51f84bbcdee5c282531bbe7f539717cc79fc2752d0
BLAKE2b-256 checksum
How to use checksums
4a74bb5164fd04fb4b7520d62cd6476ab9715162292ff404faedd39cdd81c5a5
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.22-cp310-cp310-macosx_10_9_x86_64.whl

Download URL bluetooth_data_tools-1.29.22-cp310-cp310-macosx_10_9_x86_64.whl
Size 141.1 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
91143a59aa23ed80c07b88fe16121a5a52c02d462c5a4fc07fd1754e317d39b2
BLAKE2b-256 checksum
How to use checksums
08c805a26c6bf0052f14c742cc8b9ca79b16fe5c8e77a4c51ff94db9c7e62614
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.22 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