This release is a pre-release and may not be stable for production use.
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:
Documentation: Visit our Documentation page for comprehensive guides
Commercial Support: Check out our website or email us about licensing and professional services.
Community: Join our Discord server for discussions and help
Dongl: Try the official SimpleBLE Bluetooth dongle for reliable prototyping and production.
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.dev52
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| simplepyble-1.1.1.dev52.tar.gz | 401.8 kB | Details |
Built distributions (wheels)
Total release size: 59.2 MB
Release files / simplepyble-1.1.1.dev52.tar.gz
| Download URL | simplepyble-1.1.1.dev52.tar.gz |
|---|---|
| Size | 401.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6b5ca85c32319bce333110be21746895e41174e09cd268f1afd5d1091b95b37f
|
|
BLAKE2b-256 checksum How to use checksums |
b9ed0dd9532ef4ae471cd8033f531d6226596b022d4839c59b21359a5da3568d
|
| 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.dev52-cp314-cp314-win_arm64.whl
| Download URL | simplepyble-1.1.1.dev52-cp314-cp314-win_arm64.whl |
|---|---|
| Size | 395.0 kB |
| Tags | CPython 3.14 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
fbf29c5c5f7f441ee40e6c43cfc23c99b4027967aaebfc54ee2d1d65317abe49
|
|
BLAKE2b-256 checksum How to use checksums |
91a3a82d1b518d44900b4e291217ee4c603f2776f2967797327cddac87dd5ddf
|
| 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.dev52-cp314-cp314-win_amd64.whl
| Download URL | simplepyble-1.1.1.dev52-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 404.4 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
363a9573c2164d03ead46aef8858459ce90e82adc486c6ceb8a45d5d4ce97632
|
|
BLAKE2b-256 checksum How to use checksums |
2a48b4b25230f58ecaba079df8a82bdcf52107b72afe1cee6eb414c6b4840f09
|
| 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.dev52-cp314-cp314-win32.whl
| Download URL | simplepyble-1.1.1.dev52-cp314-cp314-win32.whl |
|---|---|
| Size | 364.7 kB |
| Tags | CPython 3.14 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
f244486806758d4a8d1d433d3911ad61ba4e0e77b6eaecad1ae43e3ba320049d
|
|
BLAKE2b-256 checksum How to use checksums |
397191be44530c6c8e3af1d8d916b7119877c16e16a6ef641f39e5f0a58936fc
|
| 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.dev52-cp314-cp314-manylinux_2_28_x86_64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
bee211ee9823215efe44370ac4d5c945363c899442281449c09c1c7ef9144c46
|
|
BLAKE2b-256 checksum How to use checksums |
5f457c8a5bce7c4867d9451c8b2005a7e83163960cbd2f963d2ccf386bcd2dd2
|
| 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.dev52-cp314-cp314-manylinux_2_28_i686.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
05d833523a07257da9470661c3ce4ae7e0b79f51f9f0661e6efbc243e05eb617
|
|
BLAKE2b-256 checksum How to use checksums |
60f8af7368773ab0697cde316b1d4d0ea1f3ca58880a9d198e2de732174ddd78
|
| 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.dev52-cp314-cp314-manylinux_2_28_aarch64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
c6996735f5c1fe778962a49b4a6f8e1173fd7de64b9a1163f4dfb63e262eafee
|
|
BLAKE2b-256 checksum How to use checksums |
b692dcaedc795f04e12a7e330aa491ec4294af702a60a0d6070e37dc08a3c766
|
| 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.dev52-cp314-cp314-macosx_13_0_x86_64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
eb684684601ef1ada5b98b8a03c7b76d1fa2ba88dfc07a2be7458431ab98e493
|
|
BLAKE2b-256 checksum How to use checksums |
dfb598134c4df1c452173b6652fadde06f55c92959d1237f691dc27662e62179
|
| 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.dev52-cp314-cp314-macosx_13_0_universal2.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
287aa4444c3342f4fa351db4d98ea517fb56cdd82cf4ec42c7a16e7986174c9b
|
|
BLAKE2b-256 checksum How to use checksums |
aab7a6a3852cfaea6ae6b3a640ecd1d4ac97d7470891637278db71ea1ddcee03
|
| 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.dev52-cp314-cp314-macosx_13_0_arm64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
17901d15388123070da6251ab6106754cb991302c14c556cbb62cd2f9e8f437b
|
|
BLAKE2b-256 checksum How to use checksums |
e879b5df104052852e4b4732c2e78d043e22a7106a9eb884f27b888edaa6ec77
|
| 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.dev52-cp313-cp313-win_arm64.whl
| Download URL | simplepyble-1.1.1.dev52-cp313-cp313-win_arm64.whl |
|---|---|
| Size | 384.1 kB |
| Tags | CPython 3.13 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
ae288a8305c1258cc8d80258ea7d1d9aaf677e4edf0da3af2d2930ca05eb5d4a
|
|
BLAKE2b-256 checksum How to use checksums |
c853874d64551e1e99d8fb007eb2baae3f98fb3c5541b14af7e16b2ff340c968
|
| 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.dev52-cp313-cp313-win_amd64.whl
| Download URL | simplepyble-1.1.1.dev52-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 393.7 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
85f5b672eecf84636dc51d68ac0193fdeb92b0d5085397c41e3e19dba0f5318b
|
|
BLAKE2b-256 checksum How to use checksums |
c126ba12d15153fa928e80a49e662c9bf9ca89681c87156c2554e91b9c6f7980
|
| 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.dev52-cp313-cp313-win32.whl
| Download URL | simplepyble-1.1.1.dev52-cp313-cp313-win32.whl |
|---|---|
| Size | 357.2 kB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
d473aa0896e2b1944fbb4c2800aeb38bf6c774a0ed3c6ed15a6ff30d2ae3dca6
|
|
BLAKE2b-256 checksum How to use checksums |
4a9a9d29e3a2da4fb12391457f270e42e1eb61ff01d6bee272e12b9ec4c4e0c1
|
| 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.dev52-cp313-cp313-manylinux_2_28_x86_64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
9e66b6d2248a757699f0b0639a0f3f726e11a195b5b88cd9094e4e71d4adc5e8
|
|
BLAKE2b-256 checksum How to use checksums |
1565697e92b5e1f087dc769935a9e1a0f95538ebd5f4323bdb1ff342de771a31
|
| 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.dev52-cp313-cp313-manylinux_2_28_i686.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
0c2e60a224d2260170487cdf1be20d6256f80484c3e46cc2805c6780c96bd39b
|
|
BLAKE2b-256 checksum How to use checksums |
40ffa9802a691d1df7efa20f26032c5ee486da8fd9e01eef3399e83166846888
|
| 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.dev52-cp313-cp313-manylinux_2_28_aarch64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
bd090e1381aeacb443b85fbc2e69d93df2424a2cc9690500e916551e227fccb6
|
|
BLAKE2b-256 checksum How to use checksums |
ab3c92f81b07b13bfc1989f461d448a8b52a271473ee95b1705b7c4df94fd447
|
| 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.dev52-cp313-cp313-macosx_13_0_x86_64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
fe449967193271fd12ae501206c069569f2c4d76a134a1b28a4e3de887d8707d
|
|
BLAKE2b-256 checksum How to use checksums |
a430b8c7e5c0e5174942de8916f89fe4bd8ff23233b77928f0c35a424c49dce0
|
| 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.dev52-cp313-cp313-macosx_13_0_universal2.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
8583496045b9f33b29e148fdd5c52564a6d6415b412d57ac16f22e81f899d0fb
|
|
BLAKE2b-256 checksum How to use checksums |
70059372bbff9faf86c9cd2e6634772fa854e8ca24519d67e7a32c3e5d9fe421
|
| 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.dev52-cp313-cp313-macosx_13_0_arm64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
6bbd25d6b608d5f61e47e5beb4de8854ee0baf6b353c74ea634e4fbda069ca1c
|
|
BLAKE2b-256 checksum How to use checksums |
aba396883ee2fc10f865648260c46b92fc65795e86f049696e06873a6baca4e1
|
| 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.dev52-cp312-cp312-win_arm64.whl
| Download URL | simplepyble-1.1.1.dev52-cp312-cp312-win_arm64.whl |
|---|---|
| Size | 384.0 kB |
| Tags | CPython 3.12 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
4c07e8c8fd5fee571cbbb5f1c6efaf1726e6bc4651bb6c52a2715227e491e09e
|
|
BLAKE2b-256 checksum How to use checksums |
c67b61b8edc31483b9b63fe2ff885c08a6c850ade82d41c0dc04d2d6cf524697
|
| 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.dev52-cp312-cp312-win_amd64.whl
| Download URL | simplepyble-1.1.1.dev52-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 393.7 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
dc1c740075131a8df25e7063794f75de75f611729523704c0801d91dd7627333
|
|
BLAKE2b-256 checksum How to use checksums |
c8c322c68914536b691bfff697c528b1f542fa9dd48379f1d0102c8a330cc5ff
|
| 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.dev52-cp312-cp312-win32.whl
| Download URL | simplepyble-1.1.1.dev52-cp312-cp312-win32.whl |
|---|---|
| Size | 357.2 kB |
| Tags | CPython 3.12 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
00c319d58a63d4139239096e1d3906d740df738e3d84460ebb8639d780e84df2
|
|
BLAKE2b-256 checksum How to use checksums |
b2bd3445b34f4b47d4bdcbc0ad4c5e3364455cb62370e7e2d3265f67965865dd
|
| 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.dev52-cp312-cp312-manylinux_2_28_x86_64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
3d9fb29d583cc8dacc1c0fb3bcfeb2cd40bd93a46e0ff7a78d691e4f6b02accb
|
|
BLAKE2b-256 checksum How to use checksums |
e3da4c876068bddfeb8726f3c5b94c96c7bee9352744f0500c726a16ffc82131
|
| 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.dev52-cp312-cp312-manylinux_2_28_i686.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
f5b9296978689fa8a6da9d76639a77cbb08293f90478fac084690970d4bbdc2d
|
|
BLAKE2b-256 checksum How to use checksums |
078f02e82d20c34fb484c8dbe49abd08e2787ef77d713bca8c8273a2a4ae1d54
|
| 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.dev52-cp312-cp312-manylinux_2_28_aarch64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
0b944ad3a87029a0e188e20cab68d14931cf13810eb068064864eb017a441b89
|
|
BLAKE2b-256 checksum How to use checksums |
1baea47b03c652c4e68c919dc80da6372a1f6267a92bfd3b922529d056255cb9
|
| 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.dev52-cp312-cp312-macosx_13_0_x86_64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
98055cdb4617e492cc98516022f224278c251ab13a637795d835b5c212a84b4b
|
|
BLAKE2b-256 checksum How to use checksums |
9fd8b7b0fb045877286e4737284922bfaa9a4b97570f546f6223f5566ae6af8e
|
| 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.dev52-cp312-cp312-macosx_13_0_universal2.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
10f0029c485590057fb23bc82b0f8d7aededd98b266929cff5b7da25aca691e0
|
|
BLAKE2b-256 checksum How to use checksums |
54531106efafd10d5a9eaf1b76436451f49d7085fae0e63ac717436fce35eacf
|
| 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.dev52-cp312-cp312-macosx_13_0_arm64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
00f8453258ff1406cf92fa3f1b7c7ae4e88b6861f2e018bd47a9e4d2f1297ef7
|
|
BLAKE2b-256 checksum How to use checksums |
33d7724c347fe19b9a4f6b825c5e17c19e9e5c3162bcbcb16c282a8714fdca41
|
| 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.dev52-cp311-cp311-win_arm64.whl
| Download URL | simplepyble-1.1.1.dev52-cp311-cp311-win_arm64.whl |
|---|---|
| Size | 383.3 kB |
| Tags | CPython 3.11 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
61fd24c2bc53aecb5ed3556f84f9c7a2377efb195c30d634f9c2bc458e31b68f
|
|
BLAKE2b-256 checksum How to use checksums |
a7d38237007d066bbd623300a5184c43bf8e75d71f04c699c6cdca789cb41120
|
| 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.dev52-cp311-cp311-win_amd64.whl
| Download URL | simplepyble-1.1.1.dev52-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 392.7 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
5f82d76ac84e2de7e692c642707d7fcc03ac9e0fa4729e3e64cee63eecd68e22
|
|
BLAKE2b-256 checksum How to use checksums |
7b732861beaf04919c73b215dd6d0de11f2676005677374c55a781705e83b3af
|
| 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.dev52-cp311-cp311-win32.whl
| Download URL | simplepyble-1.1.1.dev52-cp311-cp311-win32.whl |
|---|---|
| Size | 355.9 kB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
21d8a3d1382b837d35f448c2666eab81764816db6046fffe2ac90a333e16b861
|
|
BLAKE2b-256 checksum How to use checksums |
63a6013089a873d125447f0309a5b8ba690d02e2a0161352c3994f203e6cd8a9
|
| 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.dev52-cp311-cp311-manylinux_2_28_x86_64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
2c6d47269ce3adfdc36118e8f3535c32d935b1297100b4b7494892a5e8929e50
|
|
BLAKE2b-256 checksum How to use checksums |
50de924407bc4870e5874a2c9dd37ae4ce37cbe94b147fe69fc25d59f53bf697
|
| 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.dev52-cp311-cp311-manylinux_2_28_i686.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
5cd35021ca2cfa85ca0fdf90876ef66464ef9f9e5a98bd82112745e870b93fc4
|
|
BLAKE2b-256 checksum How to use checksums |
8ed7540699afaf7c15abe9767529fd450696a59f1f16f461d0db683a7a6aa8de
|
| 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.dev52-cp311-cp311-manylinux_2_28_aarch64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
f97e5e4b82d7772f075187eeb2a05e6e7129bea20aa1ec4d3c90c4ef9e5e57d5
|
|
BLAKE2b-256 checksum How to use checksums |
44678140040058be4f4df2b3a6dfd6fce726bd39a86afd9c7a06c7e99548e9c0
|
| 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.dev52-cp311-cp311-macosx_13_0_x86_64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
a180acd553a042ead8c71ebd75c1efd1cdb25abadc6a62d635fcef6b9cb2e2e8
|
|
BLAKE2b-256 checksum How to use checksums |
e3325f57dd0ee68b6569960c755bf73165692bbc31dc7dabf7bc188e31945534
|
| 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.dev52-cp311-cp311-macosx_13_0_universal2.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
4cc528493b7ca9db105fcdd883b2330861ea217cfa0b442c023d6fc552b0aa7a
|
|
BLAKE2b-256 checksum How to use checksums |
a90610f38dc00e3887812010bbbd7b7d5850b8f60c6af36a351b538258d36b02
|
| 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.dev52-cp311-cp311-macosx_13_0_arm64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
6ee825a0b56c28ab8d4144f78b135b13981d22956d6a7f7aa10db8282c721d2f
|
|
BLAKE2b-256 checksum How to use checksums |
8b6480e92005851603c7253679dc66787a003b668d1bdc79537259c9e592bd38
|
| 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.dev52-cp310-cp310-win_arm64.whl
| Download URL | simplepyble-1.1.1.dev52-cp310-cp310-win_arm64.whl |
|---|---|
| Size | 382.5 kB |
| Tags | CPython 3.10 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
3b72c06350ad25990f35806fe89eaad80a8d183989e4ffc439f4efe85bef46c2
|
|
BLAKE2b-256 checksum How to use checksums |
fa0059ff53be8cd0b0169bf2d9acea164819da99402cec277ac16b429acd7456
|
| 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.dev52-cp310-cp310-win_amd64.whl
| Download URL | simplepyble-1.1.1.dev52-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 391.6 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0b204574ab5b83bdf7151a8141d429f40223271b5ab98cdce253ae2a3b83129f
|
|
BLAKE2b-256 checksum How to use checksums |
be207db4aff9f37819375bd9b31794815c176f4aaa09308724f476901201fde1
|
| 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.dev52-cp310-cp310-win32.whl
| Download URL | simplepyble-1.1.1.dev52-cp310-cp310-win32.whl |
|---|---|
| Size | 354.9 kB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
b993e082c73975256a7bd62c05917f2e50aaa8eebdf655d79ddc8c3d9b8c6688
|
|
BLAKE2b-256 checksum How to use checksums |
b7787f4ad8e00fbe15a53153ef04946535aa2d96bd0eb934fdb50513951a47a9
|
| 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.dev52-cp310-cp310-manylinux_2_28_x86_64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
a0aee00f78e0bd08d570ad9b0651255527251f6661e69b0ad31dcc398bcbd84b
|
|
BLAKE2b-256 checksum How to use checksums |
9772e068c07596e054dad622be420fa407a6de8c096f49a449c52ac61e108bc2
|
| 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.dev52-cp310-cp310-manylinux_2_28_i686.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
12d9bb98a060205762053ecb959282711549085f8f340dd0403a083f77c031f8
|
|
BLAKE2b-256 checksum How to use checksums |
e38afc93bbe248034c172cf84aec6778f9866fc2d3f2c581cb2ee77767e078e3
|
| 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.dev52-cp310-cp310-manylinux_2_28_aarch64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
2e394c74ddd4b6fe361d99dcb573d0c8ed8770f6beba55a89a71894528e35470
|
|
BLAKE2b-256 checksum How to use checksums |
1a1586c2a34a5b35d704b5d082962d3814796329fafd42e6bf13fa2278268db6
|
| 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.dev52-cp310-cp310-macosx_13_0_x86_64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
f5572872803eaf0ddf665bac44118da395063df7b41e116c942494a6f89e94bc
|
|
BLAKE2b-256 checksum How to use checksums |
b5c84734185aa7192bcf58e2e76ac57367e749d7a635b3f853eb2b53f810b92a
|
| 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.dev52-cp310-cp310-macosx_13_0_universal2.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
30a3a1d429a0fb35157659753ebe857c94ad808a92ba89a50829b6749b0d6cbd
|
|
BLAKE2b-256 checksum How to use checksums |
2967eb25bfb4a0bf13d20f090ff041037da6322e7b9be5d2be840a178914ea6f
|
| 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.dev52-cp310-cp310-macosx_13_0_arm64.whl
| Download URL | simplepyble-1.1.1.dev52-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 |
3e3f35a1e7ca36e4f8d7244ded4c1513c99db7e845117c0443aee1df1611cc21
|
|
BLAKE2b-256 checksum How to use checksums |
04dcd86296366e3bcfa0bd9ed2c1ebd0ef19c3e6044a3224c1d66864dfff8113
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|