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

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

Built distributions (wheels)

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

Download URL simplepyble-1.1.1.dev53.tar.gz
Size 401.6 kB
Tags Source
SHA-256 checksum
How to use checksums
066f816ddf57f512e19c39fac023242e3a54a2009635c521da40988c7c30c78c
BLAKE2b-256 checksum
How to use checksums
9f4e10f2ce436590e40093e00ef425c95dbaf48ba38351e3f15bcc5465b05e70
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.dev53-cp314-cp314-win_arm64.whl

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

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

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

Download URL simplepyble-1.1.1.dev53-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
420ef2618b47105a7276f1b058b999b1f8ab0e02210f62fde9581994cea451c8
BLAKE2b-256 checksum
How to use checksums
1f80ccffc82e0c95b3e56c7f653f951be007906e4ca241bbc1528158190cb862
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.dev53-cp314-cp314-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev53-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
ec423ba86cdcbeb18f7765b7df9107aa68aad1243e0a6178d348c12f50b91f7e
BLAKE2b-256 checksum
How to use checksums
09a2d6f111a8fb9e61b52e8a6a305eda38e5d2e09f6875ef83509abcb89cea55
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.dev53-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev53-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
d79c3f2a163c3b2ae779927e722d4ee4a3aad433b02ed3a2e10d16eb1def9b83
BLAKE2b-256 checksum
How to use checksums
7b5f59313bb8db98c52a090efe29dd833593fd2fed0461c60086981337362fad
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.dev53-cp314-cp314-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev53-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
71a6301b182daf2acd0a0d7953a2bf5f93f40aabced6e63a6d921d07204a2299
BLAKE2b-256 checksum
How to use checksums
867f32be00e72d0ae1445e60e1d83b1f0fcd8a7cf8d31cfbc36d46f800fad2d5
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.dev53-cp314-cp314-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev53-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
ac90f68f51c7852589789b7d74a5809c25c50e56a798f53fe71adc35c23e319f
BLAKE2b-256 checksum
How to use checksums
a33b89ce3edb20ca0ced3a6353ff6f2548082036a39351defa944b7cf6a726b2
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.dev53-cp314-cp314-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev53-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
cb632cc34c4c0b2f02ea4052cf7b0830759cd6894a5ee53fbc69b5de1be49c88
BLAKE2b-256 checksum
How to use checksums
bbff2cb5869274133cc2902341c5b07b9c9d2372df135a395e5d70c6cf7744b8
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.dev53-cp313-cp313-win_arm64.whl

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

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

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

Download URL simplepyble-1.1.1.dev53-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
1522c09b544ce632993b63ffb34e3b9932cc0624bf02d7634aea38230a512828
BLAKE2b-256 checksum
How to use checksums
ece205fd1962e56b4ea8e3d65ccc8a2f63b79566e7d4ff0207d118760f5c3929
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.dev53-cp313-cp313-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev53-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
db611f4d441e57aa0bd8a927775dfa9985e44b9a8cafe6a69f52e5b9d10e25da
BLAKE2b-256 checksum
How to use checksums
1aff785eef937f3f3b7d08cc0a5e1da2324ea5a7830a44c06019050880b9870a
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.dev53-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev53-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
c855617dd8cc6f51f655a293c8d5f3484fc4cf7d7004a786a742a496efd420b4
BLAKE2b-256 checksum
How to use checksums
2864a838b68ae8257e6b9f50359223f863d7b5031c61ba6dbeabc272365b8991
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.dev53-cp313-cp313-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev53-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
383a78b5811664d7a2d63a4784d9cd7f153a4678a3e30e30c1d8847ec7d4e3ea
BLAKE2b-256 checksum
How to use checksums
9917489d88f7eb916475150bc2b83362d348630986ff3843b0f5f3bf8a362ec8
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.dev53-cp313-cp313-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev53-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
fde8c6aff64fb5f007a9bfd0f42616c9b60c1d0927771958e5e3422663c6a9ad
BLAKE2b-256 checksum
How to use checksums
231cf4139350b320eed7c92c411fb5aa45640dea285a92f3becd36a10b3f12d1
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.dev53-cp313-cp313-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev53-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
42aa76a776255e57abcc43a62312a7e3d287eea6fe529a7cc8f8aa63cacfb4d6
BLAKE2b-256 checksum
How to use checksums
85d0d5cea4476d3697b865e0e8b4e6fdcbb5ae244a53aab8ceb9741139a37a90
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.dev53-cp312-cp312-win_arm64.whl

Download URL simplepyble-1.1.1.dev53-cp312-cp312-win_arm64.whl
Size 384.0 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
6493248da2287bcf0d8a452a6ba1952b2a46fe4daee16c5e8e38321de9782759
BLAKE2b-256 checksum
How to use checksums
413cd281b265058efc852211497502b8276e06f4a4ec5d57ea030b0a81c32146
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.dev53-cp312-cp312-win_amd64.whl

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

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

Download URL simplepyble-1.1.1.dev53-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
bf03a798a3ec508685b3e71735bbbacbdd4b988d20173f754a90e0552e088a5b
BLAKE2b-256 checksum
How to use checksums
57a5db13046683b11c222f918d8f89e1c74121a5fc6d9a53c9d47e31741094c3
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.dev53-cp312-cp312-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev53-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
b8927ffce8ce0dee505e248f7de04baa4887acb13b0d0cc4123eae686cc933dc
BLAKE2b-256 checksum
How to use checksums
a477412aac7ea1911a0bf61b21f4daabc7153d7da73c16527e173a2ef8389556
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.dev53-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev53-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
28d757eb5c528fef7074746cb0ae6ba33b06ba399f0c03bf501ad57edcf6e63c
BLAKE2b-256 checksum
How to use checksums
c632783b3e862409d563c911210146f6f178f93f1676d008e035aab43b7011aa
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.dev53-cp312-cp312-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev53-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
cfa46765e27dddc6a29779a45f12ad1665f446463ce2efd5d205e1a62e0f936e
BLAKE2b-256 checksum
How to use checksums
1dc8a1d67158e3f9d970703f0c741925f841f36054a5409dc8fb5a85b614dbd5
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.dev53-cp312-cp312-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev53-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
e31e4e8d29ab5cf6f60a2091d4ba7900e20e9ec203bf9c731596cea4ea079d04
BLAKE2b-256 checksum
How to use checksums
78fddf5c9347d8eb9bd55fe50b8f929f483a5988d035904a79c7fd3d6a7fbde7
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.dev53-cp312-cp312-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev53-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
7d56d600605b0c2ec76b9798b21a021acd1809f09d611dc77a067cf57e543b6c
BLAKE2b-256 checksum
How to use checksums
85b7ac039e159fe7aab0215af090db0baf41f120f66922b4fedbe8a343941e74
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.dev53-cp311-cp311-win_arm64.whl

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

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

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

Download URL simplepyble-1.1.1.dev53-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
fdcaf5c87b438e433f390bb0cb6e70368ee3c57615e8a52e50d4dc0330203c1f
BLAKE2b-256 checksum
How to use checksums
c0cf2ad1033352d3364efd0743ea25abc690fac79d71c3314b3aae9c5131ac7e
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.dev53-cp311-cp311-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev53-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
881a883f3886a244398654dd9011d158426c44686cf1a5027211a5f224e4b07c
BLAKE2b-256 checksum
How to use checksums
b6d201a0b8736f904378c474646a4cfac0954db28b88447ee8fa42dbe73c36cb
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.dev53-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev53-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
0596d6a2ea050e1d587e17147a6f737ae260ca67e282b2ac2cd02150984d39eb
BLAKE2b-256 checksum
How to use checksums
d8cf326f7f5e110c2c3f49087c5fa7b59df854041912c95b4f412aba200e64e9
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.dev53-cp311-cp311-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev53-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
8b090c93594e3de148d92bc307f0d784576e38c9e8de5359190488c17ba28a0b
BLAKE2b-256 checksum
How to use checksums
639e531733a93208b58b3fe287318824fed54d2c773e43ec63203b54a8777021
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.dev53-cp311-cp311-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev53-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
574ea5907603f0a87ccb70da6c1607f0807a63e1d91680737163ba04625e83bc
BLAKE2b-256 checksum
How to use checksums
bc46b7e96de399b1702136edc3aa8697248b66edec7bff23e16c4334294adce0
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.dev53-cp311-cp311-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev53-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
a9c455dd82e79eedff1f6acbe6144945c09febe661e8208f92612320e441d5b0
BLAKE2b-256 checksum
How to use checksums
4e980e873e72d81739d6e483dafebe2f4dfea08f9824a8cbfc43aa4fc0699ea5
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.dev53-cp310-cp310-win_arm64.whl

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

Download URL simplepyble-1.1.1.dev53-cp310-cp310-win_amd64.whl
Size 391.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
3de27b7dc84796470c1715dc064d0800070853afcee33abfac48e1f939211647
BLAKE2b-256 checksum
How to use checksums
1384cd4141f7a3474b109ebe4325868e05f4c737d7012ef478ecc2703104ec2d
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.dev53-cp310-cp310-win32.whl

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

Download URL simplepyble-1.1.1.dev53-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
44151b6fb08a93c3f306d2be50f6b762269068ebdc91cb144b9c10664396f757
BLAKE2b-256 checksum
How to use checksums
3590614701f0fce98620722ced6e625fdd2eb0486f44dbe3dc9e43fd6ccaba65
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.dev53-cp310-cp310-manylinux_2_28_i686.whl

Download URL simplepyble-1.1.1.dev53-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
5a1839f0ecce975aad3e3e14cfc66c71524d3ef95894595e54b995431338b810
BLAKE2b-256 checksum
How to use checksums
39d6da4e2aff6c4bdf47e806525a9f979845cb0c08c1b355812d8197b58d8e47
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.dev53-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL simplepyble-1.1.1.dev53-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
de807950ea814543c961256e4d84d406e7003f75ef59cf7fd3f5f83c7639934f
BLAKE2b-256 checksum
How to use checksums
4334f80116b127ffd9351d9bbe8957825427f6c7099db27e1820069107b35208
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.dev53-cp310-cp310-macosx_13_0_x86_64.whl

Download URL simplepyble-1.1.1.dev53-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
d9b7a307083b94adda44644ab5391c77412c28a1cffc7cb9115092236adc8aaf
BLAKE2b-256 checksum
How to use checksums
2a74884f81a835f0e5c42c08f095771f72ef536821a54f2a47454731e0112233
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.dev53-cp310-cp310-macosx_13_0_universal2.whl

Download URL simplepyble-1.1.1.dev53-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
ffa6ee62d82e1ad1e8b0c58ca8ab5923b7fcdc476181a7f8b8628749d271c305
BLAKE2b-256 checksum
How to use checksums
f5f995a4fddc09f3230c0f64d3d8270492928470e859fe91a9955fc75019d779
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.dev53-cp310-cp310-macosx_13_0_arm64.whl

Download URL simplepyble-1.1.1.dev53-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
e35a922e5d078eebd0c0bb400b93c5f1afe350460062e393d7f6deb4ef3ea8a8
BLAKE2b-256 checksum
How to use checksums
6e8a04165ddb0908730dcdd535aab44f372cb7cc6986a0e2e7baeb4f834c487f
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.dev53 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