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

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

Built distributions (wheels)

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

Download URL simplepyble-1.1.1.dev48.tar.gz
Size 401.8 kB
Tags Source
SHA-256 checksum
How to use checksums
88fed032dec20a78e89cc4c8e1e527dd28a4abf9a480a01e5017fc8dc7e8d7a9
BLAKE2b-256 checksum
How to use checksums
5d6cb0595e5fe856324f8f717c62d4b042ab176dfb134e200428ab6bc673cee7
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.dev48-cp314-cp314-win_arm64.whl

Download URL simplepyble-1.1.1.dev48-cp314-cp314-win_arm64.whl
Size 395.0 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
0bcc4194b5cce21567a7fd6cb456aebf64d9237b35a175a2d88127e17f8cd9dc
BLAKE2b-256 checksum
How to use checksums
1a82aebd7353c0fbd3005ff814574b3b2ac94ff08619c4f60b079f36abb0c16e
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.dev48-cp314-cp314-win_amd64.whl

Download URL simplepyble-1.1.1.dev48-cp314-cp314-win_amd64.whl
Size 404.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
c976ec21c75f2c0f46ca08354620151aba8cc2705979b990da4d1baac8aaed7e
BLAKE2b-256 checksum
How to use checksums
253b2233236366a68b428051dcd1bee698371267edf5e90fa7a1772d0fb8f54e
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.dev48-cp314-cp314-win32.whl

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

Download URL simplepyble-1.1.1.dev48-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
14f460b85caf8d2c069a77d2bbc6086a92f23ddcc394442312d6746b37505f31
BLAKE2b-256 checksum
How to use checksums
4055b52838b213caf21d00a70227202c543e01133d35df6a0ac9431053de4081
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.dev48-cp314-cp314-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev48-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
534cb3df3d9396d7c073d94e347cf8ac003f9512932a94e62db119ce6c78a584
BLAKE2b-256 checksum
How to use checksums
999751f1876a46e0d158032e71673df5d183836b212e15e29d5104f7aed2313f
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.dev48-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev48-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
0d528bb874f14a356ca8716a91ee6419a0e798286ecf907a63c2cf15a0522d0f
BLAKE2b-256 checksum
How to use checksums
6ca2a78141bba7f45e24a5a0fdd2ac53e0ec507206247c8cb0d4426b0b36bdbd
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.dev48-cp314-cp314-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev48-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
a4a379decdd64b41e782ba93af4433a3ada5c75114097fcfee319c5162f5b772
BLAKE2b-256 checksum
How to use checksums
093524c38e5948757031e69db8cc29b45ba43e6bcd4a8687d1b497bcb0803d3d
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.dev48-cp314-cp314-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev48-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
e03ba05649624727a3e2b46908897b5acad80c16513096750dd2ffda6dcd50f5
BLAKE2b-256 checksum
How to use checksums
d14649bab1b24018d49c5387d74e6f230ce554ce34f35ae493f353257f391419
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.dev48-cp314-cp314-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev48-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
d8403dfaad6813ed7d4713bd608615a4948d90f9d5e0d31b7ffc028d6da353c5
BLAKE2b-256 checksum
How to use checksums
ab2b9898c1e9858b926fc1fc7f2255b86099c2d6b1bdf1026402f1b4ef9829c6
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.dev48-cp313-cp313-win_arm64.whl

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

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

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

Download URL simplepyble-1.1.1.dev48-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
de8bbac9dfc3fb0e13de49af1c6e9b44638cc6643673dbac6cf14348cc19d55c
BLAKE2b-256 checksum
How to use checksums
b5e78130ea28501eafd10533494f19b9275e7a7848745220922b06d44d24a61a
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.dev48-cp313-cp313-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev48-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
71f7c7152af65c94b647209a9e67f744c1b8c3eb08736549cd8aec9c04702830
BLAKE2b-256 checksum
How to use checksums
1e5e7327228729dc4e5cd804d3f1280fc51bdf3a5364a86655e988c95234a1f3
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.dev48-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev48-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
a392f4c5e7f5de0d33af08375d170a6fc7efcb1fd25360802de7a8f1427259ac
BLAKE2b-256 checksum
How to use checksums
11d7b87d9f11d816ed5de61861d18e1f6bcbf1c792657985ce380edefed7306f
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.dev48-cp313-cp313-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev48-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
cf33703b3b13213de80c1d7ec7e428f067409d2d32662058fcb374c8d2fc2dd3
BLAKE2b-256 checksum
How to use checksums
bc44a49dcb440ccbbbe4142910b103c506f499db01c6bee9aa11a21862ad65e3
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.dev48-cp313-cp313-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev48-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
bfbf425a5cc8071d0667421c45cfd026db0a39db64212bc311e1beba3cf96f76
BLAKE2b-256 checksum
How to use checksums
8384fb5d98e568d09700eb120599e28dd72bcb08b44d9043ed14041b5b93a830
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.dev48-cp313-cp313-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev48-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
2b34eeaf5f72d5081f61029e763eba68d4e13a81caa386d0d6bb53e53b2e41d0
BLAKE2b-256 checksum
How to use checksums
7b6fbe361fc4a3531ded7db5e0fa23c9b1485fd6ad160049f6da74e46737e36e
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.dev48-cp312-cp312-win_arm64.whl

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

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

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

Download URL simplepyble-1.1.1.dev48-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
06930d3f161afc08f776c680e911a50e60a766c6b9454212e0a015098e44abf4
BLAKE2b-256 checksum
How to use checksums
f47905846afabce4beb9c301f0a5424ed8ade70bd21a0adb4c96a33c0e06cb85
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.dev48-cp312-cp312-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev48-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
d97d53af53f3cd428a8511ab7ed6603a765d9f741b882605e9078ee1ed456ca4
BLAKE2b-256 checksum
How to use checksums
19695ab8c80be2b3fbee327d572fedbfd5552e9c818a174e2662003046f61103
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.dev48-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev48-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
39a8513e4ddaea52651f7703bceeab2e4307afad4e58b5057eeaae8a72bfeb56
BLAKE2b-256 checksum
How to use checksums
8779eef742fbebdcea25a01231103d53b5a1ff43ba9fe9d1180bf884a28b1e15
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.dev48-cp312-cp312-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev48-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
a6d7f773d8b717c87c81853fb075372ab9d3e64b37d0367aec48a6ec9e2248bb
BLAKE2b-256 checksum
How to use checksums
ca9a1c81bb630549a95de1ded3ba1162bd9dbcfa41fad61a4cb18bdb8dda9505
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.dev48-cp312-cp312-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev48-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
ffbf74aa36c3ed9926f668641ccc13417e07b655d40122551cd5bfad450f81c6
BLAKE2b-256 checksum
How to use checksums
a30cda0de33c1e512b6aa9eaf91f26fb1c3f9f7e21c01476e92297a75d9a7682
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.dev48-cp312-cp312-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev48-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
f94b614814d8eadb0c4d3acca8102c9b8feee638c4d73da9c84db21e1e1f5659
BLAKE2b-256 checksum
How to use checksums
f7639b1979180792cffd5b2f5813b975252c8138eb8f241f2658f330088c1cd9
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.dev48-cp311-cp311-win_arm64.whl

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

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

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

Download URL simplepyble-1.1.1.dev48-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
d3fc37f391c8e7d64aa8e7b5c4fbc43d4f32f46d1aa837889b205475207c5584
BLAKE2b-256 checksum
How to use checksums
e8deb72a39886ff36a1269b6916b3be63320313770f4fe27b371dac5d16cddef
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.dev48-cp311-cp311-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev48-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
a80126c855b4e49aab58fee636f00a24bdcf8637ce4daa70c085e5f7999bffc4
BLAKE2b-256 checksum
How to use checksums
41df34b06b0d085a1a8a9ff5d237dd82d6c5959392428431f639c3937423cc5f
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.dev48-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev48-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
a656fc3e6e84f7b1075f95500cd8fbdaee33ac9a3f1fb54eef1e2601473fc5da
BLAKE2b-256 checksum
How to use checksums
4b21e056c5935de66e0a578b9c1e32a95d5a4dafde64f3c9e3bc6b0fcca7db66
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.dev48-cp311-cp311-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev48-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
3ba25864a6d69b91baa85191d3021ea5a7657e267eb2752e183a0d30e5d22111
BLAKE2b-256 checksum
How to use checksums
09d07b06147a2cd8b54be5ac68aea264c7e6a28437a77e6b194adbfe149eeff9
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.dev48-cp311-cp311-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev48-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
ccf41dbf3fd35ec22ad183b1040dd28ee20e915dbbad8c804f958a66f4a8867b
BLAKE2b-256 checksum
How to use checksums
b3dee6793888c3891407a47507e42bafab6616da6a2cb41f2c96cc6e3fcd26b5
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.dev48-cp311-cp311-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev48-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
61cb52dbc7bc2f67fba717f9f691c00adf2772400032203ea1d9759af24bc87f
BLAKE2b-256 checksum
How to use checksums
dab3be6150adc3960498e3251db8fd7f62dd36814e7afef436fea414b200fc49
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.dev48-cp310-cp310-win_arm64.whl

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

Download URL simplepyble-1.1.1.dev48-cp310-cp310-win_amd64.whl
Size 391.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
1203f58cf77cd1d09745655b46ced951c167cbeea0cf1b4b72df4f52d4333ed8
BLAKE2b-256 checksum
How to use checksums
5e41e7ceae393e6de56aa672505dd55c2c63c3941d78f24f35d6b6f9fa5e7f49
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.dev48-cp310-cp310-win32.whl

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

Download URL simplepyble-1.1.1.dev48-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
9d7b32a790640a52e27f431765b3d0617505892f3630402dd7b29d82eea781f2
BLAKE2b-256 checksum
How to use checksums
5facde6f0416482870ccbc9f15b4e74e2b848f787dc98886d00c41d0718d7690
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.dev48-cp310-cp310-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev48-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
ad4914a8b43bb8ad601cfd999627e3982dc1cfd060b780bd95c40e430a83a42a
BLAKE2b-256 checksum
How to use checksums
ec053701075df9da378e71666bb2c3796e09244292474c400f0987488a4ee65e
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.dev48-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev48-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
0ee09f853211e00cab7f7746a03f9f5e22752e40cb816e6987b4018a767e5610
BLAKE2b-256 checksum
How to use checksums
2231f809f1dcac1786e1b437a348a4251f0ff5fb394244368495e2b2d0326867
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.dev48-cp310-cp310-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev48-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
795b62aa897964e74524251f3ac70cbeb7b6de7832a8a83ca329b334cc79da12
BLAKE2b-256 checksum
How to use checksums
dd4b4c6016e9aeadc6270063514ea2fecbffea4417b8c4d02373064030fb8f79
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.dev48-cp310-cp310-macosx_13_0_universal2.whl

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

Download URL simplepyble-1.1.1.dev48-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
3cbcdd7970da2595cda298849fc3e1d274ad5fbf19d4f43a4ec2e19249b6dc03
BLAKE2b-256 checksum
How to use checksums
1e0bde2b4cf1ab760b108ba388a330f34cc2276c52496a565e61a21ba481f065
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.dev48 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