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

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

Built distributions (wheels)

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

Download URL simplepyble-1.1.1.dev49.tar.gz
Size 401.7 kB
Tags Source
SHA-256 checksum
How to use checksums
1111b4309a872b2607795d41b1d2671fcea561b8b2c0d8d65a0f5a88f91b54f2
BLAKE2b-256 checksum
How to use checksums
ad25fae4cbd88df908414bbaf109f8ddff5b14bb3f560f3153dcfaf14b824d97
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.dev49-cp314-cp314-win_arm64.whl

Download URL simplepyble-1.1.1.dev49-cp314-cp314-win_arm64.whl
Size 395.0 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
5c8d938b84afbf4856ee9e6b1344c5d51206bde6161feed039d8d416ebca9529
BLAKE2b-256 checksum
How to use checksums
24c7c405b9ee63cc60a20df9ca27919c86b758c784010d0448822d43803e5919
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.dev49-cp314-cp314-win_amd64.whl

Download URL simplepyble-1.1.1.dev49-cp314-cp314-win_amd64.whl
Size 404.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
680991e3a909cfc056e6d3ef33af78e34bbec09a50e00928351a0e8a118d0e25
BLAKE2b-256 checksum
How to use checksums
5ee980a2ae0861c6b67c8a6a0b0a3fa810c8f3e590b78e4f6b071fdd329bb239
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.dev49-cp314-cp314-win32.whl

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

Download URL simplepyble-1.1.1.dev49-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
81d059e32be011a37bc706fc73daa52927587ea166f3bb0d8f2b6b4f2ebc9d21
BLAKE2b-256 checksum
How to use checksums
50ccefb47a445b8b8825f43435e9ac71a1a25b71fc8fb723945c7abc73cbe5ec
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.dev49-cp314-cp314-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev49-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
7c5967f5fab7923f568b8284b3d1a3857fc9fe3b274d53edf1fab7faec9511db
BLAKE2b-256 checksum
How to use checksums
5f3b42f3b80efa2f3729d917673d2a4d029410a522813e5be6c09bad277593a0
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.dev49-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev49-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
5fbda4571620d4f8dc62b86433943bc0873cbf3b25ac201b177675eecfa60e66
BLAKE2b-256 checksum
How to use checksums
5653bdffd11ab213a4d78c7a855e9199ad1cde3dfa2c286b87f0fb54fa3b6f13
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.dev49-cp314-cp314-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev49-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
ab01df6caf365451c55641eb97d5b7952c51b497c6eeb873d659532302d142da
BLAKE2b-256 checksum
How to use checksums
3bf35453796196d5e268eb0ac53f1df595fbae4671693da0d5493226295d707b
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.dev49-cp314-cp314-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev49-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
e9f136ddf5903c85a850a8031bd77f063b8ebca30329fc5f344d7e64ab2828db
BLAKE2b-256 checksum
How to use checksums
5e0f7a2d9c2ff9b8eb7ba1aba253eb61116665da3096ee38b7ce6289edc7bb31
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.dev49-cp314-cp314-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev49-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
bdf986a53f46c6b61f6ae5d37ae8d8aad327029aa3f5048caa436ba9e7d8c1a2
BLAKE2b-256 checksum
How to use checksums
326e50333b19562f24044d0e08d20986fafa7a01cab16d94ddbaa8df49712bc8
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.dev49-cp313-cp313-win_arm64.whl

Download URL simplepyble-1.1.1.dev49-cp313-cp313-win_arm64.whl
Size 384.1 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
06e79091503e944eb44231aa8996e423a0ac779833d012de672242eeacdf40c6
BLAKE2b-256 checksum
How to use checksums
74d148751fe918efbc2fc4cd85e7c84faafbb1185167699e5928e0ac8b7fbd38
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.dev49-cp313-cp313-win_amd64.whl

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

Download URL simplepyble-1.1.1.dev49-cp313-cp313-win32.whl
Size 357.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
42e6971790027bddbee9dce034a65c13b83c722354156e30348dbf09631f0a9c
BLAKE2b-256 checksum
How to use checksums
064eb3d55673e4b4412ab95a72d86133a03b27589c05c0f8fb158551f5d1c4d8
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.dev49-cp313-cp313-manylinux_2_28_x86_64.whl

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

Download URL simplepyble-1.1.1.dev49-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
45981a5ee5faf3bb467fae3a8ec85fbfdaf85a38a9c46cf86a88af5b8200949c
BLAKE2b-256 checksum
How to use checksums
8a4cdd5ed11fae3c0f96d1f3ad8fd0dc0ee3e2a1c4a04c1d26eee19c1ab2c6eb
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.dev49-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev49-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
c85b132dbaae81ab03c3a635b206cb8b36f4cde0c0d7ff6c5ce8923b3b5ed2e4
BLAKE2b-256 checksum
How to use checksums
7dd14dc5667fd36f9f88ad2af545eae356098923038afc986e8a388bb1f768f3
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.dev49-cp313-cp313-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev49-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
4e44a803acdd00065751c360443addc21af0fa66ddd7c62927fa38b486f8681d
BLAKE2b-256 checksum
How to use checksums
b0e111150a18f6c78357542b3694192cb49394779b6104d5f9fcfb2ddf961b55
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.dev49-cp313-cp313-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev49-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
d27fea20fb2129b5eadd72814dd9902bc4f6a0d8158db20d7a5582534d967cef
BLAKE2b-256 checksum
How to use checksums
51ea4853f8493a2469e60ff1f0af8e670b07edf2bccda410d714caafea0d81c9
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.dev49-cp313-cp313-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev49-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
08ca7f9548fdc7faddc26d7d87e280c0baabea9605c46b09ad8976e56a94f74c
BLAKE2b-256 checksum
How to use checksums
6392d90cbd5500d9779d69d2661869c2d12aabb6e62c4d9c8b74b217cf4c43f2
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.dev49-cp312-cp312-win_arm64.whl

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

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

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

Download URL simplepyble-1.1.1.dev49-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
0fb968dd08ef25662ce9740fa1e18934cf3eab5e9297ec35c822ec0ad1fbb4e3
BLAKE2b-256 checksum
How to use checksums
79962584bed0c67b6bc996eb610f66ab7511d6e9adb3c1ecacdf1ee202bf37c5
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.dev49-cp312-cp312-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev49-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
af5b989afbce3ee59843250d217959083d6a6b644fd7defb9636ddbe4b484787
BLAKE2b-256 checksum
How to use checksums
00b167423f588b7662cd80b12ac362c87789757e24f0fe5ebc4eb91543cd6e38
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.dev49-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev49-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
a027e2198e9bd26450faa291f6b0c8056c6c6b6ec6003311ec85befa79be3573
BLAKE2b-256 checksum
How to use checksums
d265016681eec45dd007a796f372274ac2d8b2776e28c54dc51577b486eb2b99
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.dev49-cp312-cp312-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev49-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
3f312a526139574b81c96706bdb4f4622db09abb6dab74ca999362fc88f92b0e
BLAKE2b-256 checksum
How to use checksums
d7667d55ccd1c73aa7087911fec9cf92019d7fc5011713b2a9e4452e52f43ee4
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.dev49-cp312-cp312-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev49-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
c13f7559d988eb3ffb6962b2aeee51d64c1c856ec9be934e149b65d11051a54d
BLAKE2b-256 checksum
How to use checksums
285f7bd56985e743267440c0aaa3fe98e4a33a9332cea22ac82ade528e68b452
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.dev49-cp312-cp312-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev49-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
e838925fbc30efec955c16534658ba40befde07e229fc3200d480513e4054756
BLAKE2b-256 checksum
How to use checksums
e3302ee7a0f2ef246996ca24bf0c3b85d806e914e43f95bfd83826a3c9bf54c6
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.dev49-cp311-cp311-win_arm64.whl

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

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

Download URL simplepyble-1.1.1.dev49-cp311-cp311-win32.whl
Size 356.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
2364ccaccf267311d1dce7e7c6e3b0325643868f9c94450b057b20d7b807fc4e
BLAKE2b-256 checksum
How to use checksums
07a1ff1f02a9b685e04f3b14cc27d0c9eb54c444ce9ca06dc88ba8394d3f6e14
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.dev49-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL simplepyble-1.1.1.dev49-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
1181fc4cfb8c55e165ee8d03827a0c017060752c6c31472ace4cad1d683a9d68
BLAKE2b-256 checksum
How to use checksums
65bb5ae4b23e44d981518aace040398e4ad59ac83509fd906d17acdc1b6d1250
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.dev49-cp311-cp311-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev49-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
8268139406624dfd6880ed9a4c5542f5264dcfa94728c1c7023c467a523acbc5
BLAKE2b-256 checksum
How to use checksums
7cfd6589d034c97ca73ab101ddfbad9a88467c74dec0125b3f1799ce0e5e58e8
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.dev49-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev49-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
63388764146bcd502d3dfd58be6c5671fcbbd41e19162ee4227dd42003256780
BLAKE2b-256 checksum
How to use checksums
c390b4b50d636a7186acd2b18061dbac50c39a83f109cf0b16c4205ce343b6c6
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.dev49-cp311-cp311-macosx_13_0_x86_64.whl

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

Download URL simplepyble-1.1.1.dev49-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
f878e6693b678ec1fd044ddc10025df469dc570d44c1ea055ee2cc771a6298c0
BLAKE2b-256 checksum
How to use checksums
d977fffe7285a9f5b6558d6b5990db05b8a139965f113e60d6f6b1b0dabc4b6a
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.dev49-cp311-cp311-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev49-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
ab9e1ada65fbfc56cb74b447bf55db09f6ca1b30df578e7844431e5da869ca34
BLAKE2b-256 checksum
How to use checksums
3a1ea82a5d36f02ac38680db6face6bc12220933b7be4f16ca6437525ec03196
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.dev49-cp310-cp310-win_arm64.whl

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

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

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

Download URL simplepyble-1.1.1.dev49-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
0cfad143cd62f76242e8663cea7b30c09af5709c3398494a09c384938023031a
BLAKE2b-256 checksum
How to use checksums
91592419227ffbd0604a66a1959089bf482f98a0d5171e7a7f0b34a8d0b161d1
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.dev49-cp310-cp310-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev49-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
4ccf61fdd0b5f6392b987047657b9dbb8f4003b1f417b8b4337f17e39b1ff34b
BLAKE2b-256 checksum
How to use checksums
c8ce8ce9ee96f3628d1b1e8b1819165410d607954c1a1f088168a589cd0bf298
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.dev49-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev49-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
5ffba0852b053f2b153f8966e7001256d87fe50d33219672ce2e648e83e33705
BLAKE2b-256 checksum
How to use checksums
1d666153ae83ecb6fe2e0ed0ee1ee2c52b9203b3083024bfa09c2d6aed778c6e
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.dev49-cp310-cp310-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev49-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
d807f69da7d62c586c08f7776201d603138d729f122512d238831549fffa160c
BLAKE2b-256 checksum
How to use checksums
265368025559502ea2982c3e6796bfec3a43d1c4750accf179f1534308358183
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.dev49-cp310-cp310-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev49-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
70d30fae7a64664d8e89325d73ef69b9bc011acc712688a352dbdf2a8136fe3c
BLAKE2b-256 checksum
How to use checksums
2d3a38e359ab227b937a04186a4da7bc7c5f68ee9a46803eeee5c3b3d7b30cff
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.dev49-cp310-cp310-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev49-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
18bf5b1c1d36647a227495ae1bdbb9d258da841f37e94f9a6aaf31f5ed264fe7
BLAKE2b-256 checksum
How to use checksums
409e7cbbc0ed8d2ed39fc2124353f132db2229e1014200b3b7f2022573c48d66
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.dev49 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