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

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

Built distributions (wheels)

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

Download URL simplepyble-1.1.1.dev51.tar.gz
Size 401.8 kB
Tags Source
SHA-256 checksum
How to use checksums
d63b3eb5353b54fd9d72057b4e4d5f11ce92a3aeb226d6bbf6941cf4eda6b754
BLAKE2b-256 checksum
How to use checksums
e947c771c50d882881454b1c45af28158a0e08da277a7e6fedd5bbe5db69d41f
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.dev51-cp314-cp314-win_arm64.whl

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

Download URL simplepyble-1.1.1.dev51-cp314-cp314-win_amd64.whl
Size 404.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
414c4c915760bf2eb5801af7b5f65a0af8b167fa66b899f8fed6ad3ed806ac28
BLAKE2b-256 checksum
How to use checksums
9696181089728ba4b7b1af0d00b723d2c4812d1cb95bfa1272c86a5fcc31e4ec
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.dev51-cp314-cp314-win32.whl

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

Download URL simplepyble-1.1.1.dev51-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
e7d8b1c9625d862ad68cf21bfed351e2c2f2b203a5eb1a607cf8c99692164e6b
BLAKE2b-256 checksum
How to use checksums
78443cc67800abd585836a6a6a05c2df99e9b1559cd0bd57b49b2025921e0a2e
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.dev51-cp314-cp314-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev51-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
65616e219139842658ced952ffca6eacdcc68260fcc233d2f605af5263d5d68b
BLAKE2b-256 checksum
How to use checksums
1b52845382bb7d9b4ec23b19c61d4a576d0a5ad2cac287caaef7a98df4b6a289
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.dev51-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev51-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
a1d445621956b6409dda259f5548f06f3d2d559a6339c99bdb19511a0afd1767
BLAKE2b-256 checksum
How to use checksums
d59d9e429abc8813f5031326b297cddd2bce4a2a536b7238f3bfca0eb51ce023
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.dev51-cp314-cp314-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev51-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
e8212b9d263a97e84943d27ea0d1b1650d2267da56a43f00e63e4dadc108aefa
BLAKE2b-256 checksum
How to use checksums
fab6be168e1ad4828aa015a5cc65c78c81affddef5f4fc07269009a5dd232bfe
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.dev51-cp314-cp314-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev51-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
9ecfc8e43cda80325c4c7d4b52a670504fd68fdde85993bbabfc0315907cdf4b
BLAKE2b-256 checksum
How to use checksums
1ea7e6426e3087acc2a9eda5d953867234be97af939c832c186acf71cb754fcd
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.dev51-cp314-cp314-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev51-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
befdfe78a00820a8c71ad13d73dc2567250d4724a941061479bb5587846f5196
BLAKE2b-256 checksum
How to use checksums
d113621fe55000603202926420cdd5aa45624757ba02725f1da523353c94aa6c
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.dev51-cp313-cp313-win_arm64.whl

Download URL simplepyble-1.1.1.dev51-cp313-cp313-win_arm64.whl
Size 384.1 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
427abd6a85aa79145532a327ac8f7fe087fa6d351ff4331e160495f419ec5195
BLAKE2b-256 checksum
How to use checksums
50a1d8f2f8de5ed75b70edd1c4905abc7925d2eaf223bb239b1df297c42df789
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.dev51-cp313-cp313-win_amd64.whl

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

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

Download URL simplepyble-1.1.1.dev51-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
e4d96a12659e5455b4958eeecad23b6a7b0ee1cdf75934c1f8bea101e1137830
BLAKE2b-256 checksum
How to use checksums
f348a89d293356f23a1323630285f9d0f3c79104a0f3414571a0731a4efafe66
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.dev51-cp313-cp313-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev51-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
207e81932cbae5ef75c86c515dfe4288e83304eda171332654bd9af53f6586d0
BLAKE2b-256 checksum
How to use checksums
53da193f24b4885373b847aa842c1c2b3472cf523f3f0e612d7b0a463b404e28
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.dev51-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev51-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
861fb48b60971c891ba512d03b5c13aaea8aaf554e700337f0c42bf554964644
BLAKE2b-256 checksum
How to use checksums
a76da12f8880f9d4d315fb45c59fd8534f86299639cf11f4f89f21947f80160b
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.dev51-cp313-cp313-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev51-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
111a2cfa1796489f64860970a6df1075ad3116feb413fb28d6d5e35b50276675
BLAKE2b-256 checksum
How to use checksums
aee3ba9281fd3cacdea23ef6c39113b1a8752c008f119cb089cf1f35028f546b
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.dev51-cp313-cp313-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev51-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
bc7d45dcf1eac661b7663e7df6e6a5fc3fe69d75b31635c6210680ecc9f7eb37
BLAKE2b-256 checksum
How to use checksums
1f575eea62f6f0a9eeba9f168fda416cf5b7620605b6ac15147f5d96a11c1ea1
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.dev51-cp313-cp313-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev51-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
fd978311b71908063898f95553e9d84989c8f36c33643bc44d0796a9e2a4b5e2
BLAKE2b-256 checksum
How to use checksums
aa8887034977083b3a3452f10fb62a304face1241caed9be3723d1f2d1f7fca0
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.dev51-cp312-cp312-win_arm64.whl

Download URL simplepyble-1.1.1.dev51-cp312-cp312-win_arm64.whl
Size 384.0 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
3ffd502740e595a367fb10743c208fb2e5fc07c50b031d72ae12860ca29d7a26
BLAKE2b-256 checksum
How to use checksums
57d200b0f672a4bfd1208c6648e7a6c241c9023ac8d27e7a6721029a8ab63f5b
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.dev51-cp312-cp312-win_amd64.whl

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

Download URL simplepyble-1.1.1.dev51-cp312-cp312-win32.whl
Size 357.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
e21937f48fb9cbe4c29a858d3993ce7412b6a7c936f09c45c79dabe2f66c6b30
BLAKE2b-256 checksum
How to use checksums
0a14a2d04bfcb5f4d46dd7333b9b7b63eb3f6658651f7adbcf9b959a3ef0843d
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.dev51-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev51-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
f49eeb89630ffa70727aa96062ea8658ab41a53fc6e2a6932a81b7c9070eda64
BLAKE2b-256 checksum
How to use checksums
76d1f8241b23bb46b3875a1fca63fc91d6db5de3e0f09a7185a6b3f87de0317a
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.dev51-cp312-cp312-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev51-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
ebfce4e92df70a9371151289bb8cc7a2ea140eb00a435f3263c31521bb905020
BLAKE2b-256 checksum
How to use checksums
d5c737cdf52b755b58735ebd0f36b4ff3080bb3b7947b54b674dd778857e1eba
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.dev51-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev51-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
58224466dfed111acf6f4692b918490a005dae62b7f474509120359846121af5
BLAKE2b-256 checksum
How to use checksums
7e980ea2ba65432fe6a7a42ecf03209fb678273a9e8a9f6a1dacebec23399120
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.dev51-cp312-cp312-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev51-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
750d2799c52f6303ab541e72b6d7cfccc43597a6ef7e83cca166f0c26ce2af28
BLAKE2b-256 checksum
How to use checksums
5fd5ea973c2fa51277d59323690b2026f5ed83f99262b7c9fc5bc19604039f1a
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.dev51-cp312-cp312-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev51-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
40da47db16a4865f75e434c812cc71ad2de6450d90b778ee22f18f013d7ce81b
BLAKE2b-256 checksum
How to use checksums
4dfae77b2476233d09e4a4c0ad8ff2659e7818cd9304d133c854f730da208c80
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.dev51-cp312-cp312-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev51-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
369d1d41eca0dcdf87f9b5b9f8bc47ddb3767e4256825aad330463a5879d1a2b
BLAKE2b-256 checksum
How to use checksums
f8667e99c712ae7eb2c7bb3f70104cc4049c61550698ceddf0d82319291f634b
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.dev51-cp311-cp311-win_arm64.whl

Download URL simplepyble-1.1.1.dev51-cp311-cp311-win_arm64.whl
Size 383.3 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
8b30fbd2b8286041e556ba2a4d2bcf000296b0e534b97ff742cec51d9b7e678b
BLAKE2b-256 checksum
How to use checksums
63e49fc8d76cb5eb96d7de47f44393bf61e96e0c1a0262a535dce4ef0cfe14c9
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.dev51-cp311-cp311-win_amd64.whl

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

Download URL simplepyble-1.1.1.dev51-cp311-cp311-win32.whl
Size 356.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
6dc964266ac5599734ddfb196c7294ad609b3229468d878a4ac7f85c272f8cf5
BLAKE2b-256 checksum
How to use checksums
abdd564c3aacfb323b9592bf712c45c5a5e49dcd6892e365a7b0e31527ffbe0e
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.dev51-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev51-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
433d60f630c8351453c9dda3e16e9f2cfaf44256ed8d8e38b36af0a66f0cef46
BLAKE2b-256 checksum
How to use checksums
68c42d00c044b2352579b67ce569d0053ef8ee0ef72ec9633f4bdb65ed2421e5
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.dev51-cp311-cp311-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev51-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
7c8d4a8002c1ac69b89d430b4ba0ecd4f8fa3c42002c9fc8987618c3ccfc8b9b
BLAKE2b-256 checksum
How to use checksums
9edc3a9fd7cee0f20132867f60bd0c0fa1d422a3eacc08baf71c3974cd4318bd
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.dev51-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev51-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
9e6b10f659b8bc92f8d687f071268361d78b31835ed68c1a2ef08e138e779712
BLAKE2b-256 checksum
How to use checksums
7d9df6db5df7ad0e25d557c450cb83627d557e9ee020ed1320520c0d16a4d470
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.dev51-cp311-cp311-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev51-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
5a98ddd46a0138264c1ac69470ab6e2fabb4ab0be79a0caf4883b5739470b258
BLAKE2b-256 checksum
How to use checksums
abcf6b9fa37154dd61ac6cc858af99f2a5e812c4e9fbfc70a6861fc85b5caace
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.dev51-cp311-cp311-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev51-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
a9db727cc97cfad90860d60fc863030d6fa5c472ffbaaaef231934f65e893ab9
BLAKE2b-256 checksum
How to use checksums
048b6794bb5a6812c82b5c8e9c1dc82dbc957e894f37a58ceebc72fadf6c6c94
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.dev51-cp311-cp311-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev51-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
df7e7603caa788a0ebc6d38f54705adfc72081a57c1438181d5c6154d35b9cc1
BLAKE2b-256 checksum
How to use checksums
bad497d1059f2a72faf112e42d770f4adb882e92711787a82c418d8ca8e761dc
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.dev51-cp310-cp310-win_arm64.whl

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

Download URL simplepyble-1.1.1.dev51-cp310-cp310-win_amd64.whl
Size 391.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
9003c67c8de2b544aa627d9884030042776e9f3e83a8d47f5dd5d5b7b2a8ca4e
BLAKE2b-256 checksum
How to use checksums
df946b68cb9d519a4adf6e00f53da8487a52197f6bc4549291dd5be8342a1642
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.dev51-cp310-cp310-win32.whl

Download URL simplepyble-1.1.1.dev51-cp310-cp310-win32.whl
Size 354.9 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
8a9ee8910e0c6f1bf2ddfe6d592a74417e232eb29de3261a80b2a5f35e146a90
BLAKE2b-256 checksum
How to use checksums
9031fb7951a9605011dcea03031e0e4d02ecc1086f61a62a10d981b3652f149e
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.dev51-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev51-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
68c07b68c779242d985f29d11fb79321185bd41203027d35415ff0d9cefd887f
BLAKE2b-256 checksum
How to use checksums
2bea3f7c8e5d6cbea9ad35911ac3f569be30a4e242d080a78a2e431c346bcdf1
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.dev51-cp310-cp310-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev51-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
8992bbf75f5c781148586f79b759430d4c671b6f625a6c87bcac21632f4f94d8
BLAKE2b-256 checksum
How to use checksums
4bdfb6386415736ed1cdca259b9da48da5e6bbfd9a8aec0da43381d07aa12a5b
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.dev51-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev51-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
bb544c82996f92de767c066689e47d22751a0750dc033ee8cec473960a9626eb
BLAKE2b-256 checksum
How to use checksums
cd11bce8fe6e54d4ae152216bc12832b4db5f59de78d372f101e3c98e5facd31
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.dev51-cp310-cp310-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev51-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
0cbda6a1be888c0b0dcc26a77104681b890a50320d8683282025937fa0e4248a
BLAKE2b-256 checksum
How to use checksums
e2ffb2bee011ba2d3e826bac2bac2f0435e7cf8a4b9a8ebfc1b3172120878c5b
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.dev51-cp310-cp310-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev51-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
1fa133d5e893738bc9c44095c73acf061394850b193633f4842df973bf2c3e25
BLAKE2b-256 checksum
How to use checksums
a04e5771bde5d53b7cc02661b6a856fdafaa134b0daef437890a2eae1c499bf2
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.dev51-cp310-cp310-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev51-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
6d8938d7e9293c8542e83e1c33a3967ba4245a227aa7282f915c183fa7134777
BLAKE2b-256 checksum
How to use checksums
85293182c21bb12e2e0b2fe4406a8923ccbb5461073fdfb690277b1745638ae4
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.dev51 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