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

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.dev47
File Size Uploaded
simplepyble-1.1.1.dev47.tar.gz 401.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for simplepyble 1.1.1.dev47
File
simplepyble-1.1.1.dev47-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
simplepyble-1.1.1.dev47-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
simplepyble-1.1.1.dev47-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
simplepyble-1.1.1.dev47-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.dev47-cp314-cp314-manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-32 Details
simplepyble-1.1.1.dev47-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
simplepyble-1.1.1.dev47-cp314-cp314-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 13.0+ x86-64 Details
simplepyble-1.1.1.dev47-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.dev47-cp314-cp314-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 macOS 13.0+ ARM64 Details
simplepyble-1.1.1.dev47-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
simplepyble-1.1.1.dev47-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
simplepyble-1.1.1.dev47-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
simplepyble-1.1.1.dev47-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.dev47-cp313-cp313-manylinux_2_28_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-32 Details
simplepyble-1.1.1.dev47-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
simplepyble-1.1.1.dev47-cp313-cp313-macosx_13_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 13.0+ x86-64 Details
simplepyble-1.1.1.dev47-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.dev47-cp313-cp313-macosx_13_0_arm64.whl CPython 3.13 CPython 3.13 macOS 13.0+ ARM64 Details
simplepyble-1.1.1.dev47-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
simplepyble-1.1.1.dev47-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
simplepyble-1.1.1.dev47-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
simplepyble-1.1.1.dev47-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.dev47-cp312-cp312-manylinux_2_28_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-32 Details
simplepyble-1.1.1.dev47-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
simplepyble-1.1.1.dev47-cp312-cp312-macosx_13_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 13.0+ x86-64 Details
simplepyble-1.1.1.dev47-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.dev47-cp312-cp312-macosx_13_0_arm64.whl CPython 3.12 CPython 3.12 macOS 13.0+ ARM64 Details
simplepyble-1.1.1.dev47-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
simplepyble-1.1.1.dev47-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
simplepyble-1.1.1.dev47-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
simplepyble-1.1.1.dev47-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.dev47-cp311-cp311-manylinux_2_28_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-32 Details
simplepyble-1.1.1.dev47-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
simplepyble-1.1.1.dev47-cp311-cp311-macosx_13_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 13.0+ x86-64 Details
simplepyble-1.1.1.dev47-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.dev47-cp311-cp311-macosx_13_0_arm64.whl CPython 3.11 CPython 3.11 macOS 13.0+ ARM64 Details
simplepyble-1.1.1.dev47-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
simplepyble-1.1.1.dev47-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
simplepyble-1.1.1.dev47-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
simplepyble-1.1.1.dev47-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.dev47-cp310-cp310-manylinux_2_28_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-32 Details
simplepyble-1.1.1.dev47-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
simplepyble-1.1.1.dev47-cp310-cp310-macosx_13_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 13.0+ x86-64 Details
simplepyble-1.1.1.dev47-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.dev47-cp310-cp310-macosx_13_0_arm64.whl CPython 3.10 CPython 3.10 macOS 13.0+ ARM64 Details

Total release size: 59.2 MB

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

Download URL simplepyble-1.1.1.dev47.tar.gz
Size 401.6 kB
Tags Source
SHA-256 checksum
How to use checksums
a4917e4b57e508933a9ab05e7204246891c890006819caa1ed0530dc526781b9
BLAKE2b-256 checksum
How to use checksums
cf9ae0b768c6774a17c50dc54c17047d78f3f4fed36c7baa12b62c3ff02072b9
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.dev47-cp314-cp314-win_arm64.whl

Download URL simplepyble-1.1.1.dev47-cp314-cp314-win_arm64.whl
Size 395.0 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
7e9c079915fc0ffc0888b2e4915f345f6afb7a7c803c36fafd9743631a2d9c79
BLAKE2b-256 checksum
How to use checksums
8e3d681c9be9b162f3534dd968f92df3285c109766d2263194f9f64c6a3deec9
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.dev47-cp314-cp314-win_amd64.whl

Download URL simplepyble-1.1.1.dev47-cp314-cp314-win_amd64.whl
Size 404.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
5870d6558b7dd2b803bb836eee233a63f50f0c271631893b40794e5f899384e7
BLAKE2b-256 checksum
How to use checksums
87ffa2513aca560a39766edb0db315e4db4e612693679cf44f6e40b7a570f05b
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.dev47-cp314-cp314-win32.whl

Download URL simplepyble-1.1.1.dev47-cp314-cp314-win32.whl
Size 364.7 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
45308fdad72f838a0c378879e4f613f876667708c58f00edecfd2e470649d89f
BLAKE2b-256 checksum
How to use checksums
7538f1617f6a873e9c99618e8a8cb77a09b8385f37e33ef1718f767a789f65ff
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.dev47-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev47-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
5d71b1709a42d7783fa10c454f829725daa8597820c8e69b7ace022e871ccaad
BLAKE2b-256 checksum
How to use checksums
6b0fdfd58d1cdb80437e0bf83da88e235397be37987fd2b1f7b8fec0c071621d
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.dev47-cp314-cp314-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev47-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
fbd73de461934864f7bd6788779f00fe611640b298f62836f26a52c376c1ab85
BLAKE2b-256 checksum
How to use checksums
1a1aa01ad4d4d402012797e4d092e38f2dbb5a00ba122095589ae21ac3d356bc
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.dev47-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev47-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
0cba69c9436ebfc3cdf34f7d93dd8e08fb545e77894b5852a2287baf786fff6f
BLAKE2b-256 checksum
How to use checksums
a28fd743c5085c7ca2c82a02404177279409da0085f30612d4c77a86a8b91d42
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.dev47-cp314-cp314-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev47-cp314-cp314-macosx_13_0_x86_64.whl
Size 375.8 kB
Tags CPython 3.14 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
e7a930419015585c9d177cc6b044817ea3bff69da45d7b2e81efb4418914a61c
BLAKE2b-256 checksum
How to use checksums
4daa4c58f89d4e368ca18b4f154ae900ece5c4e7282f24989e2116ebf8e63dd7
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.dev47-cp314-cp314-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev47-cp314-cp314-macosx_13_0_universal2.whl
Size 701.8 kB
Tags CPython 3.14 macOS 13.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
b5408fe12cdba66cde0548e26a2ce770d52f57fa54a330146a057f63f5563d59
BLAKE2b-256 checksum
How to use checksums
96ce7b4aad78af0755f2e14f731176c036ecf5a7b5943d40719ac586ae43513f
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.dev47-cp314-cp314-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev47-cp314-cp314-macosx_13_0_arm64.whl
Size 338.9 kB
Tags CPython 3.14 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
6b374ceee91461210316181bf5f043eb41b8d9c922febef37935d35d6d4f76b3
BLAKE2b-256 checksum
How to use checksums
4a581809998329729053eaaf76a57e539a274d271476714e25f6484a25f8f0f9
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.dev47-cp313-cp313-win_arm64.whl

Download URL simplepyble-1.1.1.dev47-cp313-cp313-win_arm64.whl
Size 384.1 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
c12f0eed2fc7cab0f30fc31489a857c7417fd20c7996401949f4539fee7b93f2
BLAKE2b-256 checksum
How to use checksums
67f8106cbd86103c8552ec42eaab78b266b4347baab6737866417f389fba8362
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.dev47-cp313-cp313-win_amd64.whl

Download URL simplepyble-1.1.1.dev47-cp313-cp313-win_amd64.whl
Size 393.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
d27d49093656d57a3f1bd8b3f6e57e93f319f5553581a8795f8a5849b9fcc2e3
BLAKE2b-256 checksum
How to use checksums
fe3c7a9984676568375d4773430a0e97ca978453da9826552db336ea2e4fd87a
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.dev47-cp313-cp313-win32.whl

Download URL simplepyble-1.1.1.dev47-cp313-cp313-win32.whl
Size 357.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
37b501bb65eeaff6a0067d2e339bf0c8b5ff7829cb6925ae67f408bd2c986c74
BLAKE2b-256 checksum
How to use checksums
3fe161c93a510f6e2ffd53c8bcbb835b414c16b88792e497c5239cfdc7202fd8
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.dev47-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev47-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
2ded7f90f2f78910097f4cd40d19803e9f804f6bb926a9a792d972056e8a2aa3
BLAKE2b-256 checksum
How to use checksums
de47e42d56af12a07c57c171ad749d9fb6b429be369ea9484030c2f45bfe9a80
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.dev47-cp313-cp313-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev47-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
7ba295a0962e17ebf142bfe7296cabca3a2f1aa356e0c17ecfdb67ecb3596d87
BLAKE2b-256 checksum
How to use checksums
df69688298a64dbc26f072f4fc1da8d167d963f5eed198e19b2db8b8f2e110b7
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.dev47-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev47-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
5f829c2530aab676c47befd5bc2bd559add33c793fd4d6e42bf610ff42d66c63
BLAKE2b-256 checksum
How to use checksums
3005d424cc7c655605616086ebe284f40daee40b69d8ccc64305421b6be534e7
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.dev47-cp313-cp313-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev47-cp313-cp313-macosx_13_0_x86_64.whl
Size 375.9 kB
Tags CPython 3.13 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
b566a251f3723c118019a216136ec1cbf325d25c1a2dbf736a0c2022a587565b
BLAKE2b-256 checksum
How to use checksums
77cb7afe097774acabbeb19bae059a0ea88b97cebcfeef6d65f49710f135a7e6
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.dev47-cp313-cp313-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev47-cp313-cp313-macosx_13_0_universal2.whl
Size 701.1 kB
Tags CPython 3.13 macOS 13.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
fb51672c44ec49c1c001cf203fdb167c5ed52f0a26f40428a5abe3045b9adb2f
BLAKE2b-256 checksum
How to use checksums
9d31e9376851658c59e6dfab02ac3c6fc43aa6091b7721d7b243d48cb559eddf
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.dev47-cp313-cp313-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev47-cp313-cp313-macosx_13_0_arm64.whl
Size 338.1 kB
Tags CPython 3.13 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
5accde025cde50b0fb9a63c849028f2edb2bbca15cbb35e49f8fcc70017cba1c
BLAKE2b-256 checksum
How to use checksums
e4661ab896b45c7c8d4824b37e7f4c725d307b1d28b2e21ead1a7289f7b43a90
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.dev47-cp312-cp312-win_arm64.whl

Download URL simplepyble-1.1.1.dev47-cp312-cp312-win_arm64.whl
Size 384.0 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
d993b905901a8c5bfc36981266006170801c700d50e9d1894e385625200f9eb0
BLAKE2b-256 checksum
How to use checksums
0ad7597ae328b0c0757fb602b48494128956fa3f46e8ec3c2d8fc3dd9132174b
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.dev47-cp312-cp312-win_amd64.whl

Download URL simplepyble-1.1.1.dev47-cp312-cp312-win_amd64.whl
Size 393.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
5c3b97b163c90091bf058c364ca400717211a9a631344d0d4af0f96b3be7d5d8
BLAKE2b-256 checksum
How to use checksums
2de757c8ceaa15f307d68591ff6764770ee5cf34525ca3e7efaffff5c9f2a9d5
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.dev47-cp312-cp312-win32.whl

Download URL simplepyble-1.1.1.dev47-cp312-cp312-win32.whl
Size 357.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
03ddd90bfca3400cf164b16530c2182adb3a74f0cf4ee33456454ceadc1d12d4
BLAKE2b-256 checksum
How to use checksums
8510fe8596aa100305441878b0a924147480a5a4035181a71f8f12bd0e1ece12
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.dev47-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev47-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
810989ad98d62788b0971a3f6415c826233e69f28c2048ff77839bbef9907e22
BLAKE2b-256 checksum
How to use checksums
d15f390ba9b3986f143824a7a5ffeed4db91260e9b398b874a0427d69e31bf99
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.dev47-cp312-cp312-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev47-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
5dd43b710616a6502066d5bded4772a1306aff4a2b7bcf5b14735c1433cee376
BLAKE2b-256 checksum
How to use checksums
fa08e213d7504c5e3d5a90f125f665074fce5ed28a0de2b8c0a89e0d56771635
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.dev47-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev47-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
5e0330affaf2aa259887bc50ee15bb6f77a645ba567f04b3438d253f30634a71
BLAKE2b-256 checksum
How to use checksums
b911dd66fd819fb3e4c038346ed4d300ae7db1899c3ae29c6ea932004d9f9989
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.dev47-cp312-cp312-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev47-cp312-cp312-macosx_13_0_x86_64.whl
Size 375.8 kB
Tags CPython 3.12 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
5e7c3ec3b791563879c9770ddb466391c1d6e3e5adc72c933a5232b2e88d24e5
BLAKE2b-256 checksum
How to use checksums
d56b06cfc1c045eb9b1dccb47111adae8b02537f104612ce11cf1a9eeb7622a7
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.dev47-cp312-cp312-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev47-cp312-cp312-macosx_13_0_universal2.whl
Size 701.0 kB
Tags CPython 3.12 macOS 13.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
d3b32cde7162508d64b32edb04f745f07836acf24fd9d2aa60cda9d8e13dce22
BLAKE2b-256 checksum
How to use checksums
9dd8ba876a933be054bf5e2cf8645f4b64a0ae75104d0dffc1027d102fd3a960
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.dev47-cp312-cp312-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev47-cp312-cp312-macosx_13_0_arm64.whl
Size 338.1 kB
Tags CPython 3.12 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
ce9a22a90df9e6c68d84cdda1aece215c93b65e528a34b3d518ab3316e303bd6
BLAKE2b-256 checksum
How to use checksums
c7515a6c5917e117e7c9d1062f3e3bdaf26357af9375f19d22d279586cbba9b1
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.dev47-cp311-cp311-win_arm64.whl

Download URL simplepyble-1.1.1.dev47-cp311-cp311-win_arm64.whl
Size 383.3 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
9b779e893b28e6893a3e3d44bdebf5e28dcf8f6ca190a60b7c0b7c837a5edc9d
BLAKE2b-256 checksum
How to use checksums
dce24ec9d3555a5c329d3ba4f684ee8689050244bab2d5dc212bc54eeeaf3bba
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.dev47-cp311-cp311-win_amd64.whl

Download URL simplepyble-1.1.1.dev47-cp311-cp311-win_amd64.whl
Size 392.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0e0fe0b9750810d4f52beae7953c1907251f71d2e5ce8f0d8eaa4e35a3303697
BLAKE2b-256 checksum
How to use checksums
2a6c538b64dfb1d9e37e8b131a18b19f49503621afedb76892086e3fde507cef
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.dev47-cp311-cp311-win32.whl

Download URL simplepyble-1.1.1.dev47-cp311-cp311-win32.whl
Size 356.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
40ed3bde6720e29c2c9c7a34c20d6726ad38eacb2b25b115d912761f1dfd6c7d
BLAKE2b-256 checksum
How to use checksums
269a80b14a80f5eab06d3701629bb12eea0eef4f5724c53fee9210eb6d7b5e9b
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.dev47-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev47-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
4f396b5836f2b6f64a2a0a17e5f665250f3d864175d4fe7b7f068c30b60ca4dc
BLAKE2b-256 checksum
How to use checksums
1044b144176cdc31c0146b40de6b1e6aad9aa6a02b1dcb79438f87a88ef883a1
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.dev47-cp311-cp311-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev47-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
f2843e4942d77a27ce050ede690fdac0268332ba25e93f3eb38c129af1176fd5
BLAKE2b-256 checksum
How to use checksums
b95e62d24a496a003e920ec567c5bcfd5536132f6faab82d5b1b64a88e5bb750
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.dev47-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev47-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
b15595ce23a188354b3293fd2663de4bf3d6f045cabcdf22e4b9039121304611
BLAKE2b-256 checksum
How to use checksums
bbfa305d77b22f67c82a8de06a085746a6fce5abb1594692fc31b4a8e05421e2
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.dev47-cp311-cp311-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev47-cp311-cp311-macosx_13_0_x86_64.whl
Size 372.2 kB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
ad759e17a713942b5d2477744db014b2e6e61fef1d06d9d80715e6e2c40a8358
BLAKE2b-256 checksum
How to use checksums
6adba05cf02441b0eaed462cdf0d5b1d13505d2f4495cd122cecd9267b07ee47
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.dev47-cp311-cp311-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev47-cp311-cp311-macosx_13_0_universal2.whl
Size 696.4 kB
Tags CPython 3.11 macOS 13.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
dfcf8be7cb0c2e7b14f743767fa3f2953b1a64046c839e4002a93140cf50d7a6
BLAKE2b-256 checksum
How to use checksums
969b6ffc3706e7772c81ec5ec15db879a8c56c6acc8b11bb4881b3a5b02f948f
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.dev47-cp311-cp311-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev47-cp311-cp311-macosx_13_0_arm64.whl
Size 337.0 kB
Tags CPython 3.11 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
fc7a34aa86c870cb3f0eb094d038b3eea43dc667d2b4e8ecd944242de0be91f3
BLAKE2b-256 checksum
How to use checksums
399f26cd0eaeab6e829f7429d5493f82c173f4eb9f4033e7514a2f397c868fd7
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.dev47-cp310-cp310-win_arm64.whl

Download URL simplepyble-1.1.1.dev47-cp310-cp310-win_arm64.whl
Size 382.5 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
858906d2e30d3265bee21277ceb7b6ce68fbaa38c422caa75eec7207d20834bd
BLAKE2b-256 checksum
How to use checksums
af0484d9ef8c803fd0e556287ad07fcc068a3a266adc74a8afb90de47a3e15e8
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.dev47-cp310-cp310-win_amd64.whl

Download URL simplepyble-1.1.1.dev47-cp310-cp310-win_amd64.whl
Size 391.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
2fdf6d7d0df60678461957a0e05adbd55dd6e7a24734edc7f3df3921ea941633
BLAKE2b-256 checksum
How to use checksums
20b942e20489aa51352318d8e52327509321f60e7dea9672365001dd60584af9
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.dev47-cp310-cp310-win32.whl

Download URL simplepyble-1.1.1.dev47-cp310-cp310-win32.whl
Size 354.9 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
007ea50532f7258f427610954234015d23962076c22ac08673cdf03a3d095c3a
BLAKE2b-256 checksum
How to use checksums
edd4c9df36687ec83dc0d9bf45b2d95387bba80c40e9a0be5ba422d4bf0c5813
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.dev47-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev47-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
b2fc577f5ebd02d8fbabb63bd6b7ee49cd1ea2b27faee1e1ef9dfc819def2169
BLAKE2b-256 checksum
How to use checksums
d48570e515affe83020fb7b852d26be7f600fcca639a62312ac23f2f42ba5b59
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.dev47-cp310-cp310-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev47-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
2d1c2cf96b8d0bca33e7d161328aba534b2dbab2a16df2258feeaaaea98f5375
BLAKE2b-256 checksum
How to use checksums
6c2fecc6864b175e4bd83dc86a3d3f4b541206c55fb102bc2f42238b33f6415d
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.dev47-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev47-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
e5d27bd711005fc8c8b7dc600aa83c92ced7d2952c4f72c7ebc8bffb5ff7350e
BLAKE2b-256 checksum
How to use checksums
277e7823b9774c1a711ead48ddcd6b184c225615dcc3bd004feb3c34eaf44153
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.dev47-cp310-cp310-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev47-cp310-cp310-macosx_13_0_x86_64.whl
Size 370.8 kB
Tags CPython 3.10 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
9357ac33c3fd537872169bfdd2e48db8a465c67c5aa1f55aae337dbbe41c8243
BLAKE2b-256 checksum
How to use checksums
ed77c0d1cffb5ae0cf78d199bcc9dc344ab28fec0bae6bfb8623d2b9e8b3b491
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.dev47-cp310-cp310-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev47-cp310-cp310-macosx_13_0_universal2.whl
Size 693.5 kB
Tags CPython 3.10 macOS 13.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
2ce35edebe308611ca2aceeff5ccc4b4f48b1e719efc727fc34e4d663eafeeba
BLAKE2b-256 checksum
How to use checksums
65f73710d4771f990c0b40327ac620a62a29bf5c0493e853a5cf2d30df8d89d4
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.dev47-cp310-cp310-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev47-cp310-cp310-macosx_13_0_arm64.whl
Size 335.7 kB
Tags CPython 3.10 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
e40001f40c2400bf6785bd0828036cbe1b00cd4a4d4bdc9aced63145aff0cc8c
BLAKE2b-256 checksum
How to use checksums
23c3979008c0cee3070c70f82c7a023f3f8593530a57fbd89544d3b9867d163b
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.dev47 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