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

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

Built distributions (wheels)

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

Total release size: 59.1 MB

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

Download URL simplepyble-1.1.1.dev56.tar.gz
Size 402.1 kB
Tags Source
SHA-256 checksum
How to use checksums
9ac83cba7b7df0f7d1718d5f48d7ffed44aae6520b9fa0e089864f51070f615c
BLAKE2b-256 checksum
How to use checksums
bd38cc455a0a0b3f12e854b8b9b9c60990aa42b65cfe17517a2bb508beaa73a4
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.dev56-cp314-cp314-win_arm64.whl

Download URL simplepyble-1.1.1.dev56-cp314-cp314-win_arm64.whl
Size 394.3 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
bdf3dca46a129388489f4d841a167b81b9510a1a441cecab1bac007a1274fd98
BLAKE2b-256 checksum
How to use checksums
3bdea057c31e9a3de53fbfa407c024b4c3255c402c7174f7ed160db08e3563bf
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.dev56-cp314-cp314-win_amd64.whl

Download URL simplepyble-1.1.1.dev56-cp314-cp314-win_amd64.whl
Size 403.7 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
fcb4d0792ed781ac4d0c8465e743241ff0a8709f4acca21a665476e00a40e39b
BLAKE2b-256 checksum
How to use checksums
725b80d8124bda1a65e4ddc89e04288ac561bb7c2dc4aaad10d999a766936318
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.dev56-cp314-cp314-win32.whl

Download URL simplepyble-1.1.1.dev56-cp314-cp314-win32.whl
Size 363.9 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
06616a94321bb41c8631661c6b9b23e9ce5f2e335ce7440f0fd7e043c6feac14
BLAKE2b-256 checksum
How to use checksums
983ccd66213116c3af25659bd9a7aefe2074bd847804a82746b313195a371d1e
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.dev56-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev56-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
db07a131e90e876876147dc72638c9241a59f5182c5d9d4e8185150261bf2530
BLAKE2b-256 checksum
How to use checksums
08857da13cc1558622f41b1dd15b8b4fe3044d3a692dc7dab0e6702fa8ddffec
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.dev56-cp314-cp314-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev56-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
e94c891a7a1103d4f078f8fbd2f144b939c44d1422ded9d931f3d4a227bfa61a
BLAKE2b-256 checksum
How to use checksums
50f2f6577524d5f287510675dd4fe52bc89fd57af148049c5e31b31f98238199
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.dev56-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev56-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
08b346a1350ba328196ec638e9844aa6e5b6873197992ec11c5b167cdb9d838a
BLAKE2b-256 checksum
How to use checksums
506be11238a60612e48d3ef8981bb55f2c457c08eb16f8fd1a877930abdcb6ae
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.dev56-cp314-cp314-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev56-cp314-cp314-macosx_13_0_x86_64.whl
Size 375.3 kB
Tags CPython 3.14 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
d44404c48b780657175ef7b151d6609e82bb0d6a4ae8dc804f1834d73e8b9c9f
BLAKE2b-256 checksum
How to use checksums
b1f5c326b4d4a7a25b583d42822887f43a7370cfc19b466970dc58127e6c1250
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.dev56-cp314-cp314-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev56-cp314-cp314-macosx_13_0_universal2.whl
Size 701.0 kB
Tags CPython 3.14 macOS 13.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
22872b28109c4c9e473a64e47a0053ddf3bdfb6e09d83b4ce68cd88b8dc42bdc
BLAKE2b-256 checksum
How to use checksums
17e71461dc57012db3fd3415a723315e04e62dbffe8d4a45963788fe82085166
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.dev56-cp314-cp314-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev56-cp314-cp314-macosx_13_0_arm64.whl
Size 338.5 kB
Tags CPython 3.14 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
dff48c31161c62e658bf55d91e1f68bf6dcb0e5cade938efce9cc363eb1d5dce
BLAKE2b-256 checksum
How to use checksums
8e141fee7f4f562fbd1bb2861eef6024deec79c1e36a1da7ef3ce377db968c24
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.dev56-cp313-cp313-win_arm64.whl

Download URL simplepyble-1.1.1.dev56-cp313-cp313-win_arm64.whl
Size 383.4 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
b0c3fd63441979311d636f47a1c56582dca96c0eb9cd077262a5d83692aa7a80
BLAKE2b-256 checksum
How to use checksums
0e20258247ca1310a6a214bda878e81fa613575de520574fc3ae2c04e0d7a8b3
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.dev56-cp313-cp313-win_amd64.whl

Download URL simplepyble-1.1.1.dev56-cp313-cp313-win_amd64.whl
Size 393.1 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
069a50f9c7302a38a0d6eec7380d5ec5b1801ae8743d6ae9d00d9f2bce708f14
BLAKE2b-256 checksum
How to use checksums
97e2bf6133c06392c54996faedf63fb52d76e1087ce92642b76d8efc3f9e98da
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.dev56-cp313-cp313-win32.whl

Download URL simplepyble-1.1.1.dev56-cp313-cp313-win32.whl
Size 356.5 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
e5ddc0c5f3360ce2df34b9033968bd7903b2baf901214aa7f6fd5a5f89cc50d2
BLAKE2b-256 checksum
How to use checksums
0f119fd6f2a1761ca3255296e774a2d3c57d05526f703b5f575a8a3bf7056c8c
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.dev56-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev56-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
d65269ee429c4e4c46356b8f040f3775ed74573eaa92dbcce472c85ba4009e3a
BLAKE2b-256 checksum
How to use checksums
432f123ff10ccc6ba362f67392f95e2d0e0c8d4c05e8e814d9a0bec30ffa6110
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.dev56-cp313-cp313-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev56-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
b9ed40e5d18241530ae865ed9ca6870fb3f8b6ae5b7567d8569381bd3d35540c
BLAKE2b-256 checksum
How to use checksums
04b1018f946ef2ab08746ccfb7a5ac1a06f2172c192a7b88bcd81b07312ea4d8
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.dev56-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev56-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
906df96684ffc86787492929803535e723067819300f9fe9729f5a1023013b3b
BLAKE2b-256 checksum
How to use checksums
e079946cd886cdb4e6a55d92bce6120eaace78d27cfb4ad05abcba1bb52e1f25
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.dev56-cp313-cp313-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev56-cp313-cp313-macosx_13_0_x86_64.whl
Size 375.3 kB
Tags CPython 3.13 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
9dc73329721ad4a051532d0e97b6ea739f4b9b5cbeb46344f39b6deb2a2255b3
BLAKE2b-256 checksum
How to use checksums
f7d2ab2094d2479f4f0afcd1b63f44b95f70671025c800e72bc20a8d7f95a07d
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.dev56-cp313-cp313-macosx_13_0_universal2.whl

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

Download URL simplepyble-1.1.1.dev56-cp313-cp313-macosx_13_0_arm64.whl
Size 337.9 kB
Tags CPython 3.13 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
0a029a5d7065e9f44b9704cb703bf7ade1e665d3a3589fe0167f96472bc8c7ff
BLAKE2b-256 checksum
How to use checksums
d5f3475d7686328925d93402972c8fcc344968aaf82df91a6453a08f6389c5f2
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.dev56-cp312-cp312-win_arm64.whl

Download URL simplepyble-1.1.1.dev56-cp312-cp312-win_arm64.whl
Size 383.3 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
2e9c4b09219965294ed51d4ff0f5783f8447ba74000169a1cf86862dd159bb0a
BLAKE2b-256 checksum
How to use checksums
6491368793dcf87954c673710ede2cd7ea8a58a17009a2741165263923af2eeb
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.dev56-cp312-cp312-win_amd64.whl

Download URL simplepyble-1.1.1.dev56-cp312-cp312-win_amd64.whl
Size 393.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
fc8514d977668e2cda569a63d320fa25cf6c9fa3578f18f3190811c6e45fa313
BLAKE2b-256 checksum
How to use checksums
c4296d60d794678e2919d2b69e70c9b8866d72b2717ba5a460c8f7d164efa80f
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.dev56-cp312-cp312-win32.whl

Download URL simplepyble-1.1.1.dev56-cp312-cp312-win32.whl
Size 356.5 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
a778c1a92f44f9f34767ccd4558ea8fb19b100cd305f8c4cc34cb16005c88ca1
BLAKE2b-256 checksum
How to use checksums
440f2cf1e4e440a5bacb6a6c08b339db117b68c80c35b73552bbd4c64c0967d5
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.dev56-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev56-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
2b00b80f2f8e82aa25fc5035c723744e2dc57ab2a83aab9f659d31c9182b0b57
BLAKE2b-256 checksum
How to use checksums
65c2a076a49d7cd90146068d3d894e1ee6aaf8c0cffb2ce894f3004354f509b2
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.dev56-cp312-cp312-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev56-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
7bc32f354cbc05681bfa52edcd96965bbc2928adc36df6dd3390c4b1073228ae
BLAKE2b-256 checksum
How to use checksums
733b72613146072ae15e906e592e7bcc96c050b0c4e2ec347973f5cc8911e8b6
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.dev56-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev56-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
77d5a4291268f314858e2cc2ab2d532c69bab72b7684eb3b70d02d36df956030
BLAKE2b-256 checksum
How to use checksums
9f4fbaa5c6002961fe3b97792b81bfc0664f14ff6d096044b6427fe14c083941
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.dev56-cp312-cp312-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev56-cp312-cp312-macosx_13_0_x86_64.whl
Size 375.2 kB
Tags CPython 3.12 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
c992882214169103f0459cc0a31b2bd9ed91b058d0457f3020696124e8c9dab6
BLAKE2b-256 checksum
How to use checksums
d9db5b3f8cf2808f7677babdf8749d264566d39e8dcf986f8a37c4887153cf7b
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.dev56-cp312-cp312-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev56-cp312-cp312-macosx_13_0_universal2.whl
Size 700.3 kB
Tags CPython 3.12 macOS 13.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
600bf16d278953b0d91089bed3340598e3fa9ccd79a068e1d729d15d6ad69c41
BLAKE2b-256 checksum
How to use checksums
92c5357191046318413113ae2bf289a8a989efcac4a9e0f24136b7a6b7e0ab73
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.dev56-cp312-cp312-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev56-cp312-cp312-macosx_13_0_arm64.whl
Size 337.9 kB
Tags CPython 3.12 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
8c7ac17e6108c2e626d31a80c694f40fe0a3e52a0894339ca88e2bd9f45b14c5
BLAKE2b-256 checksum
How to use checksums
2c36a35c481620b13f7bb09d1141f283a57afed73659515b9f5196b8cd61d915
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.dev56-cp311-cp311-win_arm64.whl

Download URL simplepyble-1.1.1.dev56-cp311-cp311-win_arm64.whl
Size 382.8 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
1ae6aa277d881c99c92e2005dec34cb831f090eff900073ba8b244d5eeaaa558
BLAKE2b-256 checksum
How to use checksums
3a1bf48f1aba11bd0a40bd5d3b7a740deed2d76d97c66ddc712233a9221867b9
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.dev56-cp311-cp311-win_amd64.whl

Download URL simplepyble-1.1.1.dev56-cp311-cp311-win_amd64.whl
Size 391.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
e7e7ca5f0c0d7cd812e43f4ee7262d09ee8ee320ddcb8657768cef2fd8f74a3b
BLAKE2b-256 checksum
How to use checksums
cfa9d2a5d15b07b2acda75a517379542307c6ae992835c462190cab75afdb0a8
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.dev56-cp311-cp311-win32.whl

Download URL simplepyble-1.1.1.dev56-cp311-cp311-win32.whl
Size 355.3 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
c4eedb10e358048b27008be69038091025fe363857228424dacc16a2e35ca23f
BLAKE2b-256 checksum
How to use checksums
c41c9d86f9cbfcfd55b8ac206bc8fd3130f2845e3e42c037c9a1c99e8242f1b0
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.dev56-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev56-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
41462a6db99b035b1b2003dd5f3e4444d03ab92d2a952fb94a2ec90f825cfc54
BLAKE2b-256 checksum
How to use checksums
2384ab3b3061ea8fed2c7326dadb56723b7ea476bac35873a26c5f151e7ed395
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.dev56-cp311-cp311-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev56-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
0ab7de17d536482f36e612db573779349b2971fa5e7c969601630db2d866718a
BLAKE2b-256 checksum
How to use checksums
53422431cf70d5366c260d92a4f6992ddc582d7b162ce264953b2bc14ccfdec8
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.dev56-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev56-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
8d1ea8176dfb2475f02130ecacc6ed33b77fe60a6f866531fe0b02e94a3f54ba
BLAKE2b-256 checksum
How to use checksums
2d1e611b6fa71f7a9ddfca445dd4383899ba81ce8a6771548942e9ddd9c32fb4
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.dev56-cp311-cp311-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev56-cp311-cp311-macosx_13_0_x86_64.whl
Size 371.6 kB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
bbdd99eff89553e0b20a1df111d6cd7e143e496d66e866e967dc83375b1b198d
BLAKE2b-256 checksum
How to use checksums
3b1742ee2b29689172451902919eeb7c2000269e2e752625ead989790f25de4b
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.dev56-cp311-cp311-macosx_13_0_universal2.whl

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

Download URL simplepyble-1.1.1.dev56-cp311-cp311-macosx_13_0_arm64.whl
Size 336.6 kB
Tags CPython 3.11 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
0364796a9696cee6a4cdf8e6adc7923cf0c0875e4117d8d426ef4177d1015239
BLAKE2b-256 checksum
How to use checksums
24736d44fb7318edbdee10154c4c6677f0600875d8e6f3a46517f8cbb0874e73
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.dev56-cp310-cp310-win_arm64.whl

Download URL simplepyble-1.1.1.dev56-cp310-cp310-win_arm64.whl
Size 381.9 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
da673149bd2e14d4491ec855b2f3767ff070e82a5a35acc18d9705f3f724e668
BLAKE2b-256 checksum
How to use checksums
51cd38bbd1beec10cc0e9694e2cfb52463079ca9ee6b0f077189c64dd7eb1832
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.dev56-cp310-cp310-win_amd64.whl

Download URL simplepyble-1.1.1.dev56-cp310-cp310-win_amd64.whl
Size 390.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
6b8189f4ac620cf2ea9ada67853bfdc5c7893944f2ce08fbf5b682de702ed11d
BLAKE2b-256 checksum
How to use checksums
447749460c3f4ba5b2b45eb11d225db5f71db8149d0854ef244730aa65290b67
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.dev56-cp310-cp310-win32.whl

Download URL simplepyble-1.1.1.dev56-cp310-cp310-win32.whl
Size 354.1 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
1a997144590b59aa165d41b3ed812cc5921d613c6ab12c6316539a907f49b6ff
BLAKE2b-256 checksum
How to use checksums
4b04247f14afb5ceb68455c0bec9146c333e13fe989415a95fbc48662ae2bf8d
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.dev56-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev56-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
8adf17673931830978bd8a71c68f2f2580f4389442a39bc085e556e674139d71
BLAKE2b-256 checksum
How to use checksums
ba50296b114d8471c5a161631ba24a41710d003ffd6367493eb939d9afe633c3
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.dev56-cp310-cp310-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev56-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
d98258b15375906fca18127ca03c1ac8bc8df06d01733441c1041f40ad2fec6d
BLAKE2b-256 checksum
How to use checksums
418c676d38c2050bb0c9cd27b4c88f53c0208f6912dc42511672e5a93fd50728
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.dev56-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev56-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
9f99d52604f21a49ba6565b7a274fce1500c7cad441effaef78fa2be9c1a6655
BLAKE2b-256 checksum
How to use checksums
740606a64bca3525a95ce144ae8f6cdb8cb7f43f1f571aaf2c6a006dc579032e
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.dev56-cp310-cp310-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev56-cp310-cp310-macosx_13_0_x86_64.whl
Size 370.2 kB
Tags CPython 3.10 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
4d7022edd80fb60ca19be5e56ae697b0514ed275759299e2ab1e9a2e6dab323c
BLAKE2b-256 checksum
How to use checksums
c259d3bce10cbada740e3fb04a12daa6f1dcaebe55935a7bd21d8fe5d9643e2c
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.dev56-cp310-cp310-macosx_13_0_universal2.whl

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

Download URL simplepyble-1.1.1.dev56-cp310-cp310-macosx_13_0_arm64.whl
Size 335.2 kB
Tags CPython 3.10 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
de7a8747d6077d29a19b35deeaeee58235916899a1840643342fafd6b7a0008e
BLAKE2b-256 checksum
How to use checksums
78786954cac87f6015647dff129619b211744f678dc881bbdbc129d92b1fc9ab
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.dev56 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