Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

PyPI Licence

SimplePyBLE

The ultimate cross-platform library and bindings for Bluetooth Low Energy (BLE), designed for simplicity and ease of use.

Key Features

  • Cross-Platform: Enterprise-grade support for Windows, macOS, Linux

  • Easy Integration: Clean, consistent API across all platforms

  • Multiple Language Bindings: Production-ready bindings for C, C++, Python, Java and Rust, with more coming soon

  • Commercial Ready: Source-available commercial license for proprietary applications

Support & Resources

We’re here to help you succeed with SimpleBLE:

Don’t hesitate to reach out if you need assistance - we’re happy to help!

Installation

You can install SimplePyBLE from PyPI using pip:

pip install simplepyble

When building from source on Debian or Ubuntu, install the DBus development headers first:

sudo apt-get install libdbus-1-dev

Usage

Scan for nearby devices:

import simplepyble

adapters = simplepyble.Adapter.get_adapters()
if not adapters:
    raise SystemExit("No Bluetooth adapters found.")

adapter = adapters[0]
print(f"Using adapter: {adapter.identifier()} [{adapter.address()}]")

adapter.set_callback_on_scan_found(
    lambda peripheral: print(
        f"Found: {peripheral.identifier()} [{peripheral.address()}] {peripheral.rssi()} dBm"
    )
)

adapter.scan_for(5000)

print("Scan results:")
for peripheral in adapter.scan_get_results():
    state = "connectable" if peripheral.is_connectable() else "not connectable"
    print(f"- {peripheral.identifier()} [{peripheral.address()}] {state}")

See the code examples on GitHub for connect, read/write, and notify flows.

Asynchronous Support

SimplePyBLE provides an asynchronous API via the simplepyble.aio module. This module is designed to work with asyncio and provides a more idiomatic way to handle asynchronous operations in Python.

Example:

import asyncio
from simplepyble.aio import Adapter

async def main():
    adapters = Adapter.get_adapters()
    adapter = adapters[0]

    async with adapter:
        await adapter.scan_for(5000)
        peripherals = adapter.scan_get_results()
        for peripheral in peripherals:
            print(f"Found: {peripheral.identifier()} [{peripheral.address()}]")

if __name__ == "__main__":
    asyncio.run(main())

Check out the async examples for more details.

License

Since January 20th 2025, SimpleBLE is now available under the Business Source License 1.1 (BUSL-1.1). Each version of SimpleBLE will convert to the GNU General Public License version 3 after four years of its initial release. Qualifying non-commercial users may instead continue using and distributing that version under the original BUSL-1.1 terms under the Non-Commercial Perpetual Use Grant in LICENSE.md.

The project is free to use for non-commercial purposes, but requires a commercial license for commercial use. We also offer FREE commercial licenses for small projects and early-stage companies - reach out to discuss your use case!

Why purchase a commercial license?

  • Build and deploy unlimited commercial applications

  • Use across your entire development team

  • Zero revenue sharing or royalty payments

  • Choose features that match your needs and budget

  • Priority technical support included

  • Clear terms for integrating into MIT-licensed projects

Looking for information on pricing and commercial terms of service? Visit www.simpleble.org for more details.

For further enquiries, please email us or leave us a message on our website and we can discuss the specifics of your situation.


SimpleBLE is a project powered by The California Open Source Company.

Release files for simplepyble 1.1.1.dev59

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

Source distribution (sdist)

Source distribution for simplepyble 1.1.1.dev59
File Size Uploaded
simplepyble-1.1.1.dev59.tar.gz 403.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for simplepyble 1.1.1.dev59
File
simplepyble-1.1.1.dev59-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
simplepyble-1.1.1.dev59-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
simplepyble-1.1.1.dev59-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
simplepyble-1.1.1.dev59-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
simplepyble-1.1.1.dev59-cp314-cp314-manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-32 Details
simplepyble-1.1.1.dev59-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
simplepyble-1.1.1.dev59-cp314-cp314-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 13.0+ x86-64 Details
simplepyble-1.1.1.dev59-cp314-cp314-macosx_13_0_universal2.whl CPython 3.14 CPython 3.14 macOS 13.0+ universal2 (ARM64, x86-64) Details
simplepyble-1.1.1.dev59-cp314-cp314-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 macOS 13.0+ ARM64 Details
simplepyble-1.1.1.dev59-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
simplepyble-1.1.1.dev59-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
simplepyble-1.1.1.dev59-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
simplepyble-1.1.1.dev59-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
simplepyble-1.1.1.dev59-cp313-cp313-manylinux_2_28_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-32 Details
simplepyble-1.1.1.dev59-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
simplepyble-1.1.1.dev59-cp313-cp313-macosx_13_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 13.0+ x86-64 Details
simplepyble-1.1.1.dev59-cp313-cp313-macosx_13_0_universal2.whl CPython 3.13 CPython 3.13 macOS 13.0+ universal2 (ARM64, x86-64) Details
simplepyble-1.1.1.dev59-cp313-cp313-macosx_13_0_arm64.whl CPython 3.13 CPython 3.13 macOS 13.0+ ARM64 Details
simplepyble-1.1.1.dev59-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
simplepyble-1.1.1.dev59-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
simplepyble-1.1.1.dev59-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
simplepyble-1.1.1.dev59-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
simplepyble-1.1.1.dev59-cp312-cp312-manylinux_2_28_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-32 Details
simplepyble-1.1.1.dev59-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
simplepyble-1.1.1.dev59-cp312-cp312-macosx_13_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 13.0+ x86-64 Details
simplepyble-1.1.1.dev59-cp312-cp312-macosx_13_0_universal2.whl CPython 3.12 CPython 3.12 macOS 13.0+ universal2 (ARM64, x86-64) Details
simplepyble-1.1.1.dev59-cp312-cp312-macosx_13_0_arm64.whl CPython 3.12 CPython 3.12 macOS 13.0+ ARM64 Details
simplepyble-1.1.1.dev59-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
simplepyble-1.1.1.dev59-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
simplepyble-1.1.1.dev59-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
simplepyble-1.1.1.dev59-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
simplepyble-1.1.1.dev59-cp311-cp311-manylinux_2_28_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-32 Details
simplepyble-1.1.1.dev59-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
simplepyble-1.1.1.dev59-cp311-cp311-macosx_13_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 13.0+ x86-64 Details
simplepyble-1.1.1.dev59-cp311-cp311-macosx_13_0_universal2.whl CPython 3.11 CPython 3.11 macOS 13.0+ universal2 (ARM64, x86-64) Details
simplepyble-1.1.1.dev59-cp311-cp311-macosx_13_0_arm64.whl CPython 3.11 CPython 3.11 macOS 13.0+ ARM64 Details
simplepyble-1.1.1.dev59-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
simplepyble-1.1.1.dev59-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
simplepyble-1.1.1.dev59-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
simplepyble-1.1.1.dev59-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
simplepyble-1.1.1.dev59-cp310-cp310-manylinux_2_28_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-32 Details
simplepyble-1.1.1.dev59-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
simplepyble-1.1.1.dev59-cp310-cp310-macosx_13_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 13.0+ x86-64 Details
simplepyble-1.1.1.dev59-cp310-cp310-macosx_13_0_universal2.whl CPython 3.10 CPython 3.10 macOS 13.0+ universal2 (ARM64, x86-64) Details
simplepyble-1.1.1.dev59-cp310-cp310-macosx_13_0_arm64.whl CPython 3.10 CPython 3.10 macOS 13.0+ ARM64 Details

Total release size: 59.3 MB

Release files / simplepyble-1.1.1.dev59.tar.gz

Download URL simplepyble-1.1.1.dev59.tar.gz
Size 403.5 kB
Tags Source
SHA-256 checksum
How to use checksums
7bf68fbc667e0b8690b260d36df16d91e49eac19fb2fb5c72fc6ae06e6d68d26
BLAKE2b-256 checksum
How to use checksums
8517151e0aab615cbb5bcc4a34cbd3120417022d59ce4b92aa3bef6a300eac76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp314-cp314-win_arm64.whl

Download URL simplepyble-1.1.1.dev59-cp314-cp314-win_arm64.whl
Size 396.7 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
d5989186e16ad76e4f3d1a04da3f41223d3f067534bcb4ba3c17d4bb6a67a896
BLAKE2b-256 checksum
How to use checksums
2d62a5779e5ff4d7498f013b2a50a2d5a30dcba73568a32d2132f5b190e7f42d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp314-cp314-win_amd64.whl

Download URL simplepyble-1.1.1.dev59-cp314-cp314-win_amd64.whl
Size 407.1 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
8b4c0e7a3b6819a49aa3ed02d2ffe2f5ba918ca677d6f0cc22f27747f529a75e
BLAKE2b-256 checksum
How to use checksums
02ebe640e7841f9eb401985cd51ce9986705d9f0fc4c79451c77a9fe3a7feb62
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp314-cp314-win32.whl

Download URL simplepyble-1.1.1.dev59-cp314-cp314-win32.whl
Size 367.1 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
8a44be72148a003ce77e11dd9651e4503200df1ee9dbf662e5077d3af66c975d
BLAKE2b-256 checksum
How to use checksums
f0307dc28a9e3c38363613ee5a6f2c375f464e84a6bf3ab4a1d83c1643c77ad6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev59-cp314-cp314-manylinux_2_28_x86_64.whl
Size 3.1 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d8b3268b064a639719e3ea6a70061b3087acae8baa9f13e01ecdceb59a5c1f3d
BLAKE2b-256 checksum
How to use checksums
f2a66d016c50bea3b6e6ef11b39fa8febde8df5262097d21fa3f32be464c6d20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp314-cp314-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev59-cp314-cp314-manylinux_2_28_i686.whl
Size 3.2 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
302cd5195a7a33a0ea27998b364632eb85e468c6c4464e0545e000e658dc8e27
BLAKE2b-256 checksum
How to use checksums
d65151174787994a80a8d3792dbbaa9a3b33e72cbc0da493ea8c7df5ec069999
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev59-cp314-cp314-manylinux_2_28_aarch64.whl
Size 2.9 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b11586c7a5e0dae459a97c27373fe7afe03904bf8e6ef205eb435f8119a73497
BLAKE2b-256 checksum
How to use checksums
1a685b90fe2540a9db5551dc093a45fd4657dfa25629b3222ccb6c29da19b802
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp314-cp314-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev59-cp314-cp314-macosx_13_0_x86_64.whl
Size 377.2 kB
Tags CPython 3.14 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
c3073d64aef7431e932d514e563dd2f7b10e02e14b833a9d0e39020d00915c40
BLAKE2b-256 checksum
How to use checksums
d5c736f8081193c7f630df4e0cd8becf85b2ee0143ca233e5ec4dbdede879b0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp314-cp314-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev59-cp314-cp314-macosx_13_0_universal2.whl
Size 704.5 kB
Tags CPython 3.14 macOS 13.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
bdb6d801ac99f96ec51f6cbf0941e84c86830693b8201b539e523aadce0b1715
BLAKE2b-256 checksum
How to use checksums
7c150405151c95a451cb86c5c987c8f79c0a5f0f63efb491920d653aff04cdf6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp314-cp314-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev59-cp314-cp314-macosx_13_0_arm64.whl
Size 340.3 kB
Tags CPython 3.14 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
7a15a5cd503ca930d6faf567153bbb103072e26057c1564a11816cb95c22fed6
BLAKE2b-256 checksum
How to use checksums
09ac8126166de9838baa5bd8eba847dcf994b7dfe55213be3d834fa9221626a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp313-cp313-win_arm64.whl

Download URL simplepyble-1.1.1.dev59-cp313-cp313-win_arm64.whl
Size 385.7 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
02a519b97c612fb2a1889b16c5c86229f0429654bc7a0498c9a0da6c2a73ecc7
BLAKE2b-256 checksum
How to use checksums
c4185671c5b542e58d66daf23c2f2ef6454a6022cbe6ef67bb11f2f542b6eeb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp313-cp313-win_amd64.whl

Download URL simplepyble-1.1.1.dev59-cp313-cp313-win_amd64.whl
Size 396.1 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
7796404357c4c2070e64ef066d392ac985eedc19ae82be3c07af364de7ed9faf
BLAKE2b-256 checksum
How to use checksums
dff1fc81d06425c94918464c4031b81065be0bff8435be9ef267e1764d9c8237
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp313-cp313-win32.whl

Download URL simplepyble-1.1.1.dev59-cp313-cp313-win32.whl
Size 359.5 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
d23b8f5f6e1887471ac1c0b5b58682f8c6bbd6604e3ab43ece7ec512edcbea0c
BLAKE2b-256 checksum
How to use checksums
d262910848c1b1748e5f41ec88477600759d73bc1b8deac22ebd4db0708f4ed1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev59-cp313-cp313-manylinux_2_28_x86_64.whl
Size 3.1 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
27f2f36be9ecb81317db683a424084e9d32d13d75b6cfded98546b2da54c4bb0
BLAKE2b-256 checksum
How to use checksums
d13beff8ed3c3774e44bdf98b4e573a563f4c47b21811d51bbe1ded4a07c35ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp313-cp313-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev59-cp313-cp313-manylinux_2_28_i686.whl
Size 3.2 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
46836e40bd70e5edc6a1c7b211d18532b3cd7230a12aef1924a809aa1e42cf6f
BLAKE2b-256 checksum
How to use checksums
d2cf9114f49fae50006f06e3ea9de18efffe90a695c6497234d701094d5f88ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev59-cp313-cp313-manylinux_2_28_aarch64.whl
Size 2.9 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
edabb3c08850fdc6cd7f87ba1c97fc9eb6fcdd54a997387f77749600624f6318
BLAKE2b-256 checksum
How to use checksums
f970c9ce97609d6fba01dae474690501675f0ecffff96275720dd5769b517ed4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp313-cp313-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev59-cp313-cp313-macosx_13_0_x86_64.whl
Size 377.3 kB
Tags CPython 3.13 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
2235ac7a59830dd1c3d0560c7836d624b26f817e5966c7f2e65651b68739551e
BLAKE2b-256 checksum
How to use checksums
c3bd2ba8a19b720bb294e1e7949044a7b006106810748afb32fa2c1cb0110f0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp313-cp313-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev59-cp313-cp313-macosx_13_0_universal2.whl
Size 704.0 kB
Tags CPython 3.13 macOS 13.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
c39764f7a9aa2c67a2ca2b7a31525befa6d7ae4a23edec1028cf187d312e4b22
BLAKE2b-256 checksum
How to use checksums
59b5a5ee10aebd088a154a696d5d535efe85f4ff51c5283d7d5878a9c3585d57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp313-cp313-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev59-cp313-cp313-macosx_13_0_arm64.whl
Size 339.8 kB
Tags CPython 3.13 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
0be5cdd18d173382b44a8ca1f0b2efa1f14c2201305ee19d2314b7bcaac7827b
BLAKE2b-256 checksum
How to use checksums
9bca966196fa2c7c4b86f051f758ac8bff0a9d0b8171cc715656f0460026df7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp312-cp312-win_arm64.whl

Download URL simplepyble-1.1.1.dev59-cp312-cp312-win_arm64.whl
Size 385.6 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
075ca48bd2f9ea0441e05dce6169e9a95a4d8cb6bb1d18dc759949a9f213b263
BLAKE2b-256 checksum
How to use checksums
7bc3cc17dc0109bf1a0ba65c0f56d384226e7fbb563e1273a639502ee894e269
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp312-cp312-win_amd64.whl

Download URL simplepyble-1.1.1.dev59-cp312-cp312-win_amd64.whl
Size 396.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
5be89f89c54dc17bcd085fe6354c97d29d2fec2ec834531bfe525480630f74ea
BLAKE2b-256 checksum
How to use checksums
9618714a640f84ed39ba0a1a7fd24f1a0cb3eea3c8265445ffeb686438006938
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp312-cp312-win32.whl

Download URL simplepyble-1.1.1.dev59-cp312-cp312-win32.whl
Size 359.4 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
e88fd91798014a6b12b8fbbce8a89a5603a7884e1f74dc78a62a0cb24c2719e4
BLAKE2b-256 checksum
How to use checksums
0b3debf8cdcefbf5796251742e9605481a8d5e09fc1873c3fe36d87480b4e213
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev59-cp312-cp312-manylinux_2_28_x86_64.whl
Size 3.1 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cb658accab26f738950f8db02bb571f9da56559ec7e683d234d0a449705dc397
BLAKE2b-256 checksum
How to use checksums
9fc3729d7cc88a454eaf1e661bd90e2a23ab9e7a680f9b7111ef3f11c209ede9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp312-cp312-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev59-cp312-cp312-manylinux_2_28_i686.whl
Size 3.2 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
fba7485b538f334bce89ddd8ba0d0bc80b3a4136b2107773af9abf996a7d507d
BLAKE2b-256 checksum
How to use checksums
d75ff1647513e66c13136d88703c8608224be174681799cccacf7b16016335bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev59-cp312-cp312-manylinux_2_28_aarch64.whl
Size 2.9 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fe0f72b922959c007675c38e57db192171a67a9593524969f1351edce799b9ab
BLAKE2b-256 checksum
How to use checksums
f08475f3a1e7fcbbe6162cb220a0aab138b776c291109123229dfe219d1c89cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp312-cp312-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev59-cp312-cp312-macosx_13_0_x86_64.whl
Size 377.2 kB
Tags CPython 3.12 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
bd22f03c95f9771776646c5e75ee60ac9c04f2ddadd6f91997c8e12b736360f4
BLAKE2b-256 checksum
How to use checksums
e1a7d68f14bc72b30f6bdf570e7f57bf6751eaab6b66363cd7dc885e691bf5fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp312-cp312-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev59-cp312-cp312-macosx_13_0_universal2.whl
Size 703.8 kB
Tags CPython 3.12 macOS 13.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e347be189d75c5c97a399788906038af3fa8f8897c3fc5919e3430a69b2ba29b
BLAKE2b-256 checksum
How to use checksums
71b5835c9d504626a05dc742543e994a97e96baa72c9887fb01a21cf0fd7a028
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp312-cp312-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev59-cp312-cp312-macosx_13_0_arm64.whl
Size 339.8 kB
Tags CPython 3.12 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
4561064404b2353ebd352b2d603e2473587c9611ba33b05e82f0c4fe03aaa13a
BLAKE2b-256 checksum
How to use checksums
cd0e93360e27b69b291459ad239fabe8142d585fb129924a0cc9937001318bad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp311-cp311-win_arm64.whl

Download URL simplepyble-1.1.1.dev59-cp311-cp311-win_arm64.whl
Size 385.0 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
d7e539685fd92f9c6f3f6653c75f27a2c934c1544dbf2716df9255234d9ff6e9
BLAKE2b-256 checksum
How to use checksums
d5173c2f2fcbbe4390ae2e54579ed182209dd2eff8437115685f081c3d342345
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp311-cp311-win_amd64.whl

Download URL simplepyble-1.1.1.dev59-cp311-cp311-win_amd64.whl
Size 394.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
7f1e8601fa395108f693e1d7e74aa44d3669f46f8398d8e5b3eaa6719a521783
BLAKE2b-256 checksum
How to use checksums
dbf1a79389f892a4fb05a77aaabf9fdd991e9bc36f201d59ec14734819b74d47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp311-cp311-win32.whl

Download URL simplepyble-1.1.1.dev59-cp311-cp311-win32.whl
Size 358.2 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
460148eab8bd4939d5f64cfb3583771a2e49d3814707af2b86fe5fba396889ce
BLAKE2b-256 checksum
How to use checksums
a162c5bb2daa0111ad91b8ac3e1fa4d3963b0e861634264cf3302afbf30df81c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev59-cp311-cp311-manylinux_2_28_x86_64.whl
Size 3.1 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
66544dbb470d2a47ab789a4e4547936e88873645e5ebaa7c516f1ea597ffdaa9
BLAKE2b-256 checksum
How to use checksums
9293b9221f4ea9223096caacc6a792cdb8d744725fb6a5b772fc178a142b2e10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp311-cp311-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev59-cp311-cp311-manylinux_2_28_i686.whl
Size 3.2 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
f589a39b4b48a8a9aa35a474a70f93b80b89501b73b343bb45891d5802afc958
BLAKE2b-256 checksum
How to use checksums
491fb645bf99b614c275c9d9e91204b8fa799686a4e9056d8bd15ea8ffe944a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev59-cp311-cp311-manylinux_2_28_aarch64.whl
Size 2.9 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
6e8eb9441c46b2b5f4c7e2fb2242fed57bb500c0b403e05a2e6796f3a75787b2
BLAKE2b-256 checksum
How to use checksums
54ccae250055de4fba774bd6b963fe37742d92c3b24d243c85e39b227b1dc67e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp311-cp311-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev59-cp311-cp311-macosx_13_0_x86_64.whl
Size 373.6 kB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
c8dba49c4140dd00ee77134144d5ab6f4366af37d6055914d4111f7ada767cd8
BLAKE2b-256 checksum
How to use checksums
df1582e04806c9f389577dc50a3015d04b42ef7c4284d81a79fad9c8d048e903
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp311-cp311-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev59-cp311-cp311-macosx_13_0_universal2.whl
Size 699.7 kB
Tags CPython 3.11 macOS 13.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
84f106a3dd120cef8302848ac1dd891c18e3680ec86fdcb868be76b7815b8471
BLAKE2b-256 checksum
How to use checksums
48ade284089123cf7a91e59b966b7569682bc6fe7a5068a02ac338c74f0b3c9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp311-cp311-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev59-cp311-cp311-macosx_13_0_arm64.whl
Size 338.9 kB
Tags CPython 3.11 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
35d03daf0bd0c79a8346cf3a07a5309489d1d3ced80a316c2376149996d5a764
BLAKE2b-256 checksum
How to use checksums
019554ea80254cdc52ca710ab7b30f1ec60d93f1fb6fc44ac5d1540fb980ce2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp310-cp310-win_arm64.whl

Download URL simplepyble-1.1.1.dev59-cp310-cp310-win_arm64.whl
Size 384.2 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
5f3c6e5b75747d648eb22b6e95cf53964d6db9c418b62dca77078aa7fb2220ff
BLAKE2b-256 checksum
How to use checksums
23aaa696b9407f7701c4a1fe4b7937c7b71c15bdee39285369cd0a1a41c11afd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp310-cp310-win_amd64.whl

Download URL simplepyble-1.1.1.dev59-cp310-cp310-win_amd64.whl
Size 394.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
fd3f4cd4652bccd46c2952f99cc0fafb93b4c21e95afa3aa748b73764be76846
BLAKE2b-256 checksum
How to use checksums
a32cf9950f3f396cc2080ac675d3c23801ec856add055f607e9fa4d0815fb11e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp310-cp310-win32.whl

Download URL simplepyble-1.1.1.dev59-cp310-cp310-win32.whl
Size 357.2 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
4e98077bc2d77456be73b8e02e3051660cc69617ac7090bcadf8bba896756b56
BLAKE2b-256 checksum
How to use checksums
dfdd0536237bb3d9e7f6428f1302c62d6fc1b52e2233397abacb493da24f96d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev59-cp310-cp310-manylinux_2_28_x86_64.whl
Size 3.1 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
88ba04dd68368652ac538ce034fb9173a16e54cb2e620dd65b0ead98980b930f
BLAKE2b-256 checksum
How to use checksums
9bc7ee1f1f5e1100e95e2a0716163d49b379e22b2207a368927820fbd2c785f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp310-cp310-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev59-cp310-cp310-manylinux_2_28_i686.whl
Size 3.2 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
b8b0ddeab2103213a664a210bfed419c555462a212a1a2ebfe3f2591808341ba
BLAKE2b-256 checksum
How to use checksums
c4df30a548043d6fd52473ee101ec89ca15c553f93dd227f0c6dd5d6f6eef1e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev59-cp310-cp310-manylinux_2_28_aarch64.whl
Size 2.9 MB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
65fd14dc042ce770d52d1ab7c6f495c0ec19eeefd5b63383b70715ae6b949a09
BLAKE2b-256 checksum
How to use checksums
7adc0ee4e3dff22c5db2e1cb917d9b3d97f98e16750c7b26d0044a658bdce0ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp310-cp310-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev59-cp310-cp310-macosx_13_0_x86_64.whl
Size 372.4 kB
Tags CPython 3.10 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
f70cefe36bcffb18a615b856ecfe3e41bc85e19173d4848ca86a5a0937f9ecf5
BLAKE2b-256 checksum
How to use checksums
52133a8cfcbe0c07d31ffc097aae6a6b76c03e5de4e59ed6292030f88f215ca3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp310-cp310-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev59-cp310-cp310-macosx_13_0_universal2.whl
Size 697.0 kB
Tags CPython 3.10 macOS 13.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
5566ae62d1429f594f89af1604cf68ad6e3b1d71e3842109437ac8057b71755c
BLAKE2b-256 checksum
How to use checksums
ca560b7299cbd727e652c7b78f953edaa1d766898443d7cbf3c39ff61196a7c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / simplepyble-1.1.1.dev59-cp310-cp310-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev59-cp310-cp310-macosx_13_0_arm64.whl
Size 337.5 kB
Tags CPython 3.10 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
47949262f9721696244b0574d46f113de296a6932cb0cf476c9beeee51e5bdf0
BLAKE2b-256 checksum
How to use checksums
642e9f05a53d11dee80eb77310929e993454ebb75e75e20e25195908599de26b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release history Release notifications | RSS feed

This release

1.1.1.dev59 This release

46 release files

1.1.0

46 release files

1.0.0

46 release files

0.9.1

54 release files

0.9.0

47 release files

0.7.3

47 release files

0.7.1

47 release files

0.6.1

39 release files

0.6.0

38 release files

0.5.0

38 release files

0.0.5

36 release files

0.0.4

36 release files

0.0.3

36 release files

0.0.2

36 release files

0.0.1

1 release file

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