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

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

Built distributions (wheels)

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

Download URL simplepyble-1.1.1.dev55.tar.gz
Size 402.0 kB
Tags Source
SHA-256 checksum
How to use checksums
ace0575452d65e1581939799b57bce256a0f3822b8a4c465346b63ec940c0ff5
BLAKE2b-256 checksum
How to use checksums
b3f4aa48997e4316adc7c9aee4101359452f3334b677442a5a3e269cee628e5b
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.dev55-cp314-cp314-win_arm64.whl

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

Download URL simplepyble-1.1.1.dev55-cp314-cp314-win_amd64.whl
Size 404.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
087ce261ee07ed81a53f4211f88675e2424a63d8dc5b01ecc60a598b6383d6ce
BLAKE2b-256 checksum
How to use checksums
12799822c2457ec9a6de84d84cafed68759f793fe2b2b2e9c05580bf2c31a98e
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.dev55-cp314-cp314-win32.whl

Download URL simplepyble-1.1.1.dev55-cp314-cp314-win32.whl
Size 364.7 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
7db9507b4ead8cb344d570b4d4a9daabf0d87b701672651aff138fee56fc3e49
BLAKE2b-256 checksum
How to use checksums
63b21ead8cc53dec0493f50ba3228fa27eb74c19198f8b5660644562cc503867
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.dev55-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev55-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
8056152d400ca0efdf1c3b1ab5d58190f6ac53cea1724c209a29750eceb44bc7
BLAKE2b-256 checksum
How to use checksums
ab7c8b10be17d7983e549a4e8ab0e7eaf187dcae8df3519e98da4919eb7d9900
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.dev55-cp314-cp314-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev55-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
a3da8da86d3c2ddcf606365ca52fba66b8180d343e68868165bba9eb2f167bee
BLAKE2b-256 checksum
How to use checksums
e1b0ef1f4920d29b29697c4fdb533f2b17a94a135c286321ebbd089d10302baf
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.dev55-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev55-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
a4ac779ee8b97789c32255cbc800da609a39bbed6f8fe2a9cc2f1c10c9eceac4
BLAKE2b-256 checksum
How to use checksums
5cae3c91fbf47dc8bdddc54207679ad4aa1871eae36c96a47193559b2f74ca36
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.dev55-cp314-cp314-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev55-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
6235c9ba15846c7a0489c1393b7b46c0fd20ac9c55c33d07f7a05f6e477da3fa
BLAKE2b-256 checksum
How to use checksums
1a205160bd8f17c77d652ec103b8c9cebfc36ce1e2e29f378421899d73c540c9
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.dev55-cp314-cp314-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev55-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
7e2e91fcbab7bab2c4e684292d7f49162d6df93463f2103c4331345e4ea26d6b
BLAKE2b-256 checksum
How to use checksums
b960c474d7e177fc68762322212a5ff8b27eb03fa6ba0a3b6b78180154b00e32
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.dev55-cp314-cp314-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev55-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
672e789e98db89bbf54172d77b38e29f51e6845417830dfaba323063b5a21ad5
BLAKE2b-256 checksum
How to use checksums
35046d6e042dff7b31fdb5f7b7aa9bcacfaef80a6eff3e4f648c493dd4cf5d8c
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.dev55-cp313-cp313-win_arm64.whl

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

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

Download URL simplepyble-1.1.1.dev55-cp313-cp313-win32.whl
Size 357.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
4308e9c5a7ca831456656a5a6577b8199e976252adc40a27014990ce15456487
BLAKE2b-256 checksum
How to use checksums
fe72102c588b94f2e5c0100d44e6b046f94adc16652e19ddb0ce38ecd8b0919a
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.dev55-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev55-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
b3f3eaaffb86347d9bf46cc1dc0ef27a723895144a764e0b1f033757fa3cc2c3
BLAKE2b-256 checksum
How to use checksums
5f74a9fb5aa75705e86aa519939bd6a35e5160fdf4b8f0bb3fbe43a944bf3766
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.dev55-cp313-cp313-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev55-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
2273325903833a846fc7f6aa5da8dcb039e87e45c1c81419e4a7732d88dc0356
BLAKE2b-256 checksum
How to use checksums
fd82849f3e66ae41364badbb16eb3b96ed4072fde0d73414df5a62793f00a5b9
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.dev55-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev55-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
196fa8ac9bb76cf6a53627dd37703b6dc1b53791d7bea1f633ea8dfc9c00a113
BLAKE2b-256 checksum
How to use checksums
f6c3ff501916b5602afa5350a7d676150af5032c37b88511289624eadd960209
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.dev55-cp313-cp313-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev55-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
e6b616701cb80c8730b4434a5a89c6cb2a9c24d8f4f8d97f943f7ed65f61c7ca
BLAKE2b-256 checksum
How to use checksums
d9f72742d0dd6bf8930a4e1cef924e81ca3a8c184297bfc608066fe401dc5b42
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.dev55-cp313-cp313-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev55-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
1ddfd5d194926f4ce8fb9fc8b7d564825b4f462c4025ae60edce09d84880545a
BLAKE2b-256 checksum
How to use checksums
0043e72f868fe04baa3b898b57c8fa2fb4f9d45da75a40de98c41f9b536d645a
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.dev55-cp313-cp313-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev55-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
79e19f62e2d4e5d19a8228a2473f211cb2ebc013777af968ba427e5332052cbd
BLAKE2b-256 checksum
How to use checksums
bf80ea4dcf528dda0549a1c5575147b80314d3ec3d79a442931b3b444e99082c
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.dev55-cp312-cp312-win_arm64.whl

Download URL simplepyble-1.1.1.dev55-cp312-cp312-win_arm64.whl
Size 384.0 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
720b8624d4d13f7a4f514f9d96a7f419f3902cf7637e711da428b235b87acd17
BLAKE2b-256 checksum
How to use checksums
3764c4c6c0f5d839f0a7fab6a40c38ece9eaf6dcfce5bd1f425fe060e31fb27c
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.dev55-cp312-cp312-win_amd64.whl

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

Download URL simplepyble-1.1.1.dev55-cp312-cp312-win32.whl
Size 357.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
980eb24067795922c7f61b2a33a18b48ec543136f23786c14d8b01d59ec192b1
BLAKE2b-256 checksum
How to use checksums
1a16e422301c73f897c40891741fcd00369846b97854bc22fdf51e2604ff7dd7
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.dev55-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev55-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
9decabc0d3580a8a465b42f942094b414077d7922945f5d7df1e796a3ff7db1e
BLAKE2b-256 checksum
How to use checksums
3359fdddfa1375e696b4239c4ffec007777a9afdae9dd866f5e0c8a805504fc4
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.dev55-cp312-cp312-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev55-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
bfd63bdeff5f73f65a0de64182f2f9f1bf4946907601757fc313ac4901c8ad4d
BLAKE2b-256 checksum
How to use checksums
ff11820860d2ef2d297566bc4cb4333d12ec757d9bf9425cf03b8ed17615de9c
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.dev55-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev55-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
dc83f29644505463f78e776b3e9e7b24ff7c54e6c2b109b1777591c2f7fed8bc
BLAKE2b-256 checksum
How to use checksums
6f1dcce72d95671858872840db80f4ce2b3082d926380e5e2680a58debcf9383
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.dev55-cp312-cp312-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev55-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
46c9d863b77b512c9fffd44f40bec5c470ca166ede412a36ae081a798032f297
BLAKE2b-256 checksum
How to use checksums
0d0ae186e355d92d7b757cdbf74ec2183157f611d2f7d2e56b3b1620a467bcc2
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.dev55-cp312-cp312-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev55-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
d6d73f2b2184c8cced1793ca00dcc3b587f3afa4bf3e116ea99e5b3e5e12030a
BLAKE2b-256 checksum
How to use checksums
4529829d0e8f3d71db6f8eeddb42223290ef6d79d47cf3727c63c18fe5637f72
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.dev55-cp312-cp312-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev55-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
9d820cc3eb55714221eb67f6ad6179354ed01f5b1613ae0e1399ed5b4a114c96
BLAKE2b-256 checksum
How to use checksums
a1e25eebf1a5e99d23e70a0e682294afb5d285aa8ee9130922957863042a85c2
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.dev55-cp311-cp311-win_arm64.whl

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

Download URL simplepyble-1.1.1.dev55-cp311-cp311-win_amd64.whl
Size 392.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
1d99e7e525c81f755ee371a83fba9e3f552f8a7415c2119b468a51d58c2b5644
BLAKE2b-256 checksum
How to use checksums
545c599a53738929fe3f07f83727e60e654f89ef0d8c31c845e5f2e5cf0b579a
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.dev55-cp311-cp311-win32.whl

Download URL simplepyble-1.1.1.dev55-cp311-cp311-win32.whl
Size 356.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
01c23d2586b01bfb163a21e92bb88034b0490635df7e130e4a817544a6eed885
BLAKE2b-256 checksum
How to use checksums
73165ef32e795b8225193385774c8a2d7259f73a460fd05e9ec497ceae439a09
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.dev55-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev55-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
30aec2e6f5d3b07e569db221ab87181440b3dfd77e14e40f00fa22eaf2345efc
BLAKE2b-256 checksum
How to use checksums
300c83c8760fe4f0c0ae688a23442779ef8007fb586a1cd240e1980fd61e6f4b
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.dev55-cp311-cp311-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev55-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
6e79eea3e954a6a734110d8672b7e0673e0e80552a4f66e5f4074aaadb6023bb
BLAKE2b-256 checksum
How to use checksums
e0862a08a922c14c424104570ba8de9259fa9552f715f12098874c26a85d576a
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.dev55-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev55-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
5209c31fa10f599d7ff4ecf8e45ebcbf2265ce063c145e4fedfc5e7cd082fd30
BLAKE2b-256 checksum
How to use checksums
c8e58efe618bed208218df8113170159f9e34923cbfe8521e32a331e4b9c96de
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.dev55-cp311-cp311-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev55-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
334fa4c36ed710570abc08961492b1b5a6347a8ccafeb07de1ca82cd38ea3621
BLAKE2b-256 checksum
How to use checksums
37e6063d0a75dce3631a9a5c3f958ff9ee7574eea6c30a01f1e0d64d8b1ba7e8
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.dev55-cp311-cp311-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev55-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
fbd1deb257db7a8c7520cda5eb3e1aad018e08f6cccf56df052b434d51fcc5f8
BLAKE2b-256 checksum
How to use checksums
e94f7c40c1e2ef0c4363a2f3ac313acf7b5c831794187f6f021a94041d97dc64
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.dev55-cp311-cp311-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev55-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
bb455b34162444c7a4309f679160eb97a923adcf105709ec92cd6f0c9a0c75e7
BLAKE2b-256 checksum
How to use checksums
2a5e6b0ba3bddbc07b3d1aa5fd79795f15bd16be3c52d837aafbb5ba7e588415
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.dev55-cp310-cp310-win_arm64.whl

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

Download URL simplepyble-1.1.1.dev55-cp310-cp310-win_amd64.whl
Size 391.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
4a6d14e60fdbf8e9ba9f494b0e474654611465ad3e7cda4fd39b930e0aec1374
BLAKE2b-256 checksum
How to use checksums
37f0f098c41bbcb7ac4ef5ec9b2ea99a98579e60e340796af041db4942d1058d
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.dev55-cp310-cp310-win32.whl

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

Download URL simplepyble-1.1.1.dev55-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
5d352c31cde8fe8c5a77e4d718633f8dbacb26cb99e73cc2f8f52943b88c1067
BLAKE2b-256 checksum
How to use checksums
fa1d44d02fee049cea282e25015a7bd57ea2f10cdb33132d1a59bcf06361f05a
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.dev55-cp310-cp310-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev55-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
52c2e9623a4313a453a5c610a4611e7da51d001102f3fd51bba8fe30079e63da
BLAKE2b-256 checksum
How to use checksums
e0da858f82a5b2452866c7a92c02d2f5e0ab18e401864403666bf7418d488c35
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.dev55-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev55-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
1ad96c0d168a0ac49b9ccd422168d547405bbdd2dd05519e3213bdb762e45706
BLAKE2b-256 checksum
How to use checksums
c6ea3f09f4f14c8bd6bfa7699efa47e4b23ffe56fb45ab1ac1512f69eef2aed5
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.dev55-cp310-cp310-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev55-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
cacb356e76e898868f1d3c9367fba0c07930205841555c40ca2a30a6a980f5a1
BLAKE2b-256 checksum
How to use checksums
da507fb882a0df898d4aa7355df9ce5a4cb5d412965a125a53c8ffb76ee4ed38
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.dev55-cp310-cp310-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev55-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
6fb55cd221c364d6829534c0a30fcfa8134ee1d9e1f69faefbba95ef0e7d8bb2
BLAKE2b-256 checksum
How to use checksums
cf69eb9d3d17e70e0cc5ed8e2f38dd9c05a0f2db2f063f709990d27cad03067a
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.dev55-cp310-cp310-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev55-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
9058d16f3d30ecb2545004cad59dcb4f5c8ecfc998eab7eb925a9ff544504064
BLAKE2b-256 checksum
How to use checksums
a00619e70346aebe1fed992d5c2b7b701e8c955240b4d03b5e9420bc78d35b79
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.dev55 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