Skip to main content

A drop-in replacement for Python's ssl module, backed by rustls

Project description

Rustls-backed TLS for CPython

Ever dreamed of getting rid of OpenSSL within CPython without creating a custom build of CPython for this? Tired of waiting half a decade for a solid and up-to-date TLS experience, shipping Post-quantum, and ECH support by default?

Then rtls is made for you.

It's a drop-in replacement for the ssl stdlib! Support CPython 3.7 onward. Including freethreaded.

Getting Started

Install from source (requires a Rust toolchain and maturin):

pip install rtls

Then swap ssl for rtls anywhere in your code:

import rtls as ssl

ctx = ssl.create_default_context()

Or use it alongside the stdlib:

from rtls import SSLContext, PROTOCOL_TLS_CLIENT

ctx = SSLContext(PROTOCOL_TLS_CLIENT)
ctx.load_default_certs()

import socket
sock = socket.create_connection(("example.com", 443))
ssock = ctx.wrap_socket(sock, server_hostname="example.com")
ssock.sendall(b"GET / HTTP/1.1\r\nHost: example.com\r\n\r\n")
print(ssock.recv(4096).decode())

It works with asyncio out of the box:

import asyncio
import rtls as ssl

async def main():
    ctx = ssl.create_default_context()
    reader, writer = await asyncio.open_connection("example.com", 443, ssl=ctx)
    writer.write(b"GET / HTTP/1.1\r\nHost: example.com\r\n\r\n")
    await writer.drain()
    print((await reader.read(4096)).decode())
    writer.close()

asyncio.run(main())

Feature Parity with stdlib

rtls re-exports 93 public names matching the ssl module API. The table below summarizes coverage across the main areas.

What's different from ssl:

  • TLS 1.2 is the minimum version. SSLv2, SSLv3, TLS 1.0 and TLS 1.1 are not available.
  • Hostname verification uses SAN only, never the Common Name.
  • compression() always returns None (TLS compression is disabled, as it should be).
  • security_level is always 2. rustls defaults are strong by design.
  • load_cert_chain natively accepts in-memory PEM bytes as certfile/keyfile, not just file paths.

Disclaimer

This project is in an early stage. The public API is stable, we do not plan to diverge from stdlib. It's not pure Python, so you'll have either a pre-built wheel compatible with your platform or build from the sources by yourself.

A notice is present to acknowledge CPython rights on the ssl Python codebase. The project itself is licensed under MIT as we always do. Rustls is also permissively licensed.

Right now we deliberately focus on the client side. PRs are accepted to help us finalize/improve the server side.

  • We are not inclined to enable FIPS mode via aws-lc-rs for the moment, however, it's on our roadmap.
  • Do not open issue about "JA fingerprint", "Browser impersonator" or alike, we'll most likely close them on the spot. We are not interested in pursing this.
  • PyPy is not going to be supported, unfortunately.

It's not faster than the stdlib. Expect roughly 5 to 10% slower. For example, a quick benchmark reveal that ssl stdlib can reach 456 MB/s raw throughput on my modest laptop while our implementation reached 410 MB/s. Why? We heavily pay for crossing the boundary between Rust and CPython. We could implement the Buffer protocol (avoid needless memcpy each time), but that would cost us our high CPython (i.e. 3.7+) compatibility. That trade off is quickly hided by the fact that you will run a memory safe TLS implementation. No longer in C shall we do TLS!

Contributions, bug reports, and feedback are welcome.

Versioning

This project is based on calver (YYYY-0M-0D), it does not need semver as it aims to be a drop-in replacement for stdlib ssl. You do not need to constraint the upper bound version.

Prior art

I saw https://github.com/djc/pyrtls a couple of months ago, and it inspired me to write this alternative. Why? As you are aware, we are maintaining a fork of urllib3 and requests, and having to handwrite a support for a non ssl compatible lib is going to be a nightmare. We just can't ask the maintainer to rewrite everything for our own needs.

Documentation

See https://docs.python.org/3/library/ssl.html as it's fairly detailed and spotless. We would host our own version later having unsupported feature removed. Amongst import naming, etc(...).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rtls-2026.5.14.tar.gz (154.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rtls-2026.5.14-cp314-cp314t-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14tWindows ARM64

rtls-2026.5.14-cp314-cp314t-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14tWindows x86-64

rtls-2026.5.14-cp314-cp314t-win32.whl (1.3 MB view details)

Uploaded CPython 3.14tWindows x86

rtls-2026.5.14-cp314-cp314t-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

rtls-2026.5.14-cp314-cp314t-musllinux_1_1_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ riscv64

rtls-2026.5.14-cp314-cp314t-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ i686

rtls-2026.5.14-cp314-cp314t-musllinux_1_1_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

rtls-2026.5.14-cp314-cp314t-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

rtls-2026.5.14-cp314-cp314t-manylinux_2_39_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ riscv64

rtls-2026.5.14-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

rtls-2026.5.14-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rtls-2026.5.14-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rtls-2026.5.14-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64

rtls-2026.5.14-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

rtls-2026.5.14-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rtls-2026.5.14-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rtls-2026.5.14-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.6 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

rtls-2026.5.14-cp313-cp313t-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13tWindows ARM64

rtls-2026.5.14-cp313-cp313t-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13tWindows x86-64

rtls-2026.5.14-cp313-cp313t-win32.whl (1.3 MB view details)

Uploaded CPython 3.13tWindows x86

rtls-2026.5.14-cp313-cp313t-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

rtls-2026.5.14-cp313-cp313t-musllinux_1_1_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ riscv64

rtls-2026.5.14-cp313-cp313t-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ i686

rtls-2026.5.14-cp313-cp313t-musllinux_1_1_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARMv7l

rtls-2026.5.14-cp313-cp313t-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

rtls-2026.5.14-cp313-cp313t-manylinux_2_39_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.39+ riscv64

rtls-2026.5.14-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

rtls-2026.5.14-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rtls-2026.5.14-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rtls-2026.5.14-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (1.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64

rtls-2026.5.14-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

rtls-2026.5.14-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rtls-2026.5.14-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rtls-2026.5.14-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.6 MB view details)

Uploaded CPython 3.13tmacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

rtls-2026.5.14-cp37-abi3-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.7+Windows ARM64

rtls-2026.5.14-cp37-abi3-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.7+Windows x86-64

rtls-2026.5.14-cp37-abi3-win32.whl (1.3 MB view details)

Uploaded CPython 3.7+Windows x86

rtls-2026.5.14-cp37-abi3-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.1+ x86-64

rtls-2026.5.14-cp37-abi3-musllinux_1_1_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.1+ riscv64

rtls-2026.5.14-cp37-abi3-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.1+ i686

rtls-2026.5.14-cp37-abi3-musllinux_1_1_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.1+ ARMv7l

rtls-2026.5.14-cp37-abi3-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.1+ ARM64

rtls-2026.5.14-cp37-abi3-manylinux_2_39_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.39+ riscv64

rtls-2026.5.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ x86-64

rtls-2026.5.14-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ s390x

rtls-2026.5.14-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ppc64le

rtls-2026.5.14-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (1.6 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ppc64

rtls-2026.5.14-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ i686

rtls-2026.5.14-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARMv7l

rtls-2026.5.14-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARM64

rtls-2026.5.14-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.6 MB view details)

Uploaded CPython 3.7+macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

File details

Details for the file rtls-2026.5.14.tar.gz.

File metadata

  • Download URL: rtls-2026.5.14.tar.gz
  • Upload date:
  • Size: 154.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rtls-2026.5.14.tar.gz
Algorithm Hash digest
SHA256 a2cadabf979f8d8e76b0e6928a75c2e62401ef584e4f6e991600d6c1aa0eab79
MD5 9aeed3870fc43cce9554edbf5ec802cc
BLAKE2b-256 afb59ed18a90438076331fbf3b557e3af1cab0f679dcc8efa34cefe81fb95ead

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14.tar.gz:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: rtls-2026.5.14-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 76d107289eabb1f30643426f39a76012da6b06176fbe1bb67081b29c5fbfd47e
MD5 bfda6b97c505a0262bef5c9f1fb9741f
BLAKE2b-256 0e927315905b1f326ae65b413b3192eb4102ed923359325ad66a5c2d94674e65

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-win_arm64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rtls-2026.5.14-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0f5d636ca40f9f8f0e906f2b419dd27e969adf0d2a7948564924d9b639e967bf
MD5 4551fd8e5b256db956fb410d20caf5ea
BLAKE2b-256 b396b451797da4b872f9a594e8bf930c1b3d4b601ddbe9acf63538c6ed191f14

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-win_amd64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-win32.whl.

File metadata

  • Download URL: rtls-2026.5.14-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 1ec5857a42922a56245b814a0432e133ca4eb6bb1adbd85185879edbc04331f4
MD5 18480780f2205e5fa9e79e869ae18565
BLAKE2b-256 ea9ebd525fd177fa7a236181413de5069b70049d4bc44198c06e11addd78b294

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-win32.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e64be5f1f5dd2d632820543f661a04eb8ec3c86741ebd467b204bc95d0e9746b
MD5 1ad6fb2289620d97bff9f89b403fa38f
BLAKE2b-256 69fb4d0474b1344975c8f59ee73f3f7ebe330c9c4ae481f463928b3752969583

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-musllinux_1_1_riscv64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 72f01c5ce75de3ad8af3a5ffdab82e1c422b345d6d6b55a6f77c567525dd81b6
MD5 cc419d70635e132aab0e63e13fd84cda
BLAKE2b-256 835b2ac6f1be7d9c239a338505b5810d988a768d9937ea8408542012150e2e84

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-musllinux_1_1_riscv64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 502d30332480f0719d206f262b3f4b2f730c913d13f20d54acfa9c99b3bb60a5
MD5 746c3cc5bda5207ddd85576176207996
BLAKE2b-256 c2b60d3cf605fd27e915976c46f192d8f14c136a597324227f88e1a194d41087

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-musllinux_1_1_i686.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5738ac82b1da7e1770cb03bf18f2827f3980c352f58d6c2b76a40c3c64b055d0
MD5 5eb3d71d61ec18216f242de65706e35e
BLAKE2b-256 7b808187326f7daa547979e5a6e222675f6861ea9994f036d992fb9846bd1daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ae0110f48581ca8e06836ba09d935e531c1b0e3a95a10a93f583330b782e3103
MD5 d813e8e6ee665727b50d294415993856
BLAKE2b-256 6046a5b19db13ef438a19fb17e00cd21014e693d44fe73cec36b4c4a17784a42

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 48f3443d3f479cbe66ee15bbc1ed1c8d4494113de0302d06b8b5bd64048057d8
MD5 164d840131fc7f89bc2fcc6cdb0df1bf
BLAKE2b-256 a4ce17a7c4827bb4a567db7f7ac9a003f1a2a6e597298ad44e4a0593a768b6e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-manylinux_2_39_riscv64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f2da17d5a21483f41045b2b9e08cd576fcf22b8d2bab21a85f8abd816202fcd
MD5 54e8821363a2c9b1753a8c6fba8126a4
BLAKE2b-256 03ea9275a9be4a7c45dbf20bedfa2c6b5edb83f91689febf9dabd15995140664

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0bda07b1702a0efd898285fdde442ed5950d789d233b8d405e9825fd19dc7266
MD5 8a0140313aab02cf580b91422343869a
BLAKE2b-256 58de5c9bb862c911730b9c350578b1fdbe99bf8ca4bccf021829c2eb27757720

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04aa3dbc32f6443913cf4a410c37306b540e3fbe3d5571449ce96eb47f0056fe
MD5 3bcac961d98d2fcf0cd16efef8581f32
BLAKE2b-256 7cf46605152a84353325044c4fe2ef7a75cdd14dbb49140d67aa66bac5f8614e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 2f83d9539c79a85234b6e7181cb205d2e892cfbb831fe1adcb74093a728bd5c5
MD5 889193f75b40acd00cc3ea202401ccea
BLAKE2b-256 d4a2a0cd420568ee7feb614c1e4f673e1e6c6ef906d08fa84600047ddd3db786

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fd805b4cc905f50f6eafc8c2f7d28ffb4b7aa831d3b1158f7926b5ae422ae10
MD5 2183b3a1469bc41c55a939a62c214340
BLAKE2b-256 c0e22f8a1070eaade152117935ccf167836e6acfbe2fd07539ea0e632a8242e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c2f6ea715c62bafbfd3cbfd20599df3e199f77f79afaa7a1ed5dddb6b80b6d8
MD5 3cb8b1db1b69a6690933f3db395258ef
BLAKE2b-256 c40de26c71f05be255c55f221d214d73d3da1abf6891102ef32d2ec720903768

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf6958a995f1847d8e5ef53bdc34d259b016334fec558283287609f462e31653
MD5 f681daba9effd6be47c26e9d89b2e0de
BLAKE2b-256 9ecab1654433ec8dffc2ec5846cbebab2b21f9d58d45c22d02b8abf2a32d6ac8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a01b405010155fd671acef92fcfaf7e429e298d1408af4da74cf22fa2a99292c
MD5 6956a62bdb5f53f1dabb39eeb832f399
BLAKE2b-256 da273d1424f5a80220cdf87b4c211fd3d69266e1aa99ea0e77d23b60360ead9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: rtls-2026.5.14-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 dab4d6156b49ae75020ebff4d585dfa104e9b50085862801dbec1ede4cf63609
MD5 0685e144f1ced62fbac58c669fc437ea
BLAKE2b-256 c017638567a16e4ec4322bf0ac3b619c507b3bd42ea309542a89b19939a2d59c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-win_arm64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: rtls-2026.5.14-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c47ab8ad174b8cf842c876c2ec986a559def4a7e337c4774f62fa6a67ef4df56
MD5 2a560f2384a2778f0754de8b7b46b4a2
BLAKE2b-256 7ccfe54ee7a9882b4a560a0abf0f833d4ec5d37e34f6d133db79f693c4d0e76d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-win_amd64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-win32.whl.

File metadata

  • Download URL: rtls-2026.5.14-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 d008081ba04a11c59dd5b87b6e50b0a31625735e42ef2f8d9bf21056bcc6a495
MD5 97e4d96dfb6a498212db055dad648bb0
BLAKE2b-256 067a185eb782a518f92204e759ab1790cedaccc7c6705883deba2573d2238618

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-win32.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a0849b6c9394c35e134b9e4ca902c8b6a7e1963857e7cb77362f434c93c3eb59
MD5 1424601ee738c2e4a772200cd70aa906
BLAKE2b-256 04f33257368b441f2e545c21b27a741b81c4604f2543827893a54e0e41b7e89f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-musllinux_1_1_riscv64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 93f58150d799bd58a9d11acd699ae7d7592781586dd99448353ea77a5412ea59
MD5 248b2337f84a00941dd4f70fe24ee3d8
BLAKE2b-256 af1d2733131ba9f7a39c6e505ade42b05a11b08af24e0ecba354ecde9886f0f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-musllinux_1_1_riscv64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 14e116c4164279cb0d60eafdfea9aac654aeba3149d74cd8680edd32eeb0bb3b
MD5 58f3625b00072928559bdc2351d0b55d
BLAKE2b-256 1887b844682f392451086dc00d90dcfc4851648cd891b018b2fce2f942d5f232

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-musllinux_1_1_i686.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 0ed8feb9e26f2892a0ac1356f3fc07274afb5009a5c73899a22241e098f91047
MD5 f6a92a09df4f847dd7fbfdea4e04d9c2
BLAKE2b-256 baa1d391582cec2b9bf392bdc5f0a81cad6b8453cb66763d1591355ef82d24b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7abcdf1631d3afbfebbe91a5edeb33c5f88aab8bb86406dd812345d4b7913ac7
MD5 a5c556b3a20cba942e558c0f8320b573
BLAKE2b-256 8436c38c7cbf28f4f5d8ea570fe8ddaef167d9328bd6811cc346d198d38b72c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 59d818779c511f29833ae01d76ba5c4660a0ca60fd7be2c5983124884aea7953
MD5 10ec1fac952543147c44eac84c14e140
BLAKE2b-256 341ffe044839e6911cc6667b567d63e7a3f2b6dfaa256a47b3885ea8f4b77e3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-manylinux_2_39_riscv64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4058f896f55a01035a0df1e7a3b6b507afdaacc254842011626e64290752c9d
MD5 070e0c9bb9fc8acb8ae9e551c1df5b14
BLAKE2b-256 e4baf469758501844c8b5ba7ac7ee86814e997cded341be9152090a69c865285

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6acfacb86085661aaf224e7f8726167c7c4c137d9597f5cd543f9cf48cc294f
MD5 109e51c8d4b2d9148e7db42a8e77b595
BLAKE2b-256 8623fc55e5780c5f52e8d6d48546bede28b75b681e917e0e2a6883f1228cfaba

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2cfec4e7ed2f48ec0cbf105f0bf9c2d776330fb53512a350c1a53cc23ad4f8c3
MD5 0de0400b42b76f2021a798fc7e0b6b5b
BLAKE2b-256 24d91eefa3d4a58fa38f6df5c7e0863eb41cb0ef6d13f48f79b857cb4650a845

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 08590224b719a18c786741dd898c05db42b186294e861907a56cdcb72139889f
MD5 ef6f14bafbf9f9550d1f1da4c8351fee
BLAKE2b-256 70f619470d2675edecfc842c3af8c4f57e9fc949289be7c238457a06c86b95fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0050756d43cdc85727b401fefaad99c1f59c35251073b50d7ddcd4b34c1c7db6
MD5 d5cd0a681523526388203c3345d29e7c
BLAKE2b-256 a1b62af330478f9fcb46cddc930fba7d4d535b6788b0a45363ba33b28ee412c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60fa2166943881ab7043a9a46d14499bd20826d790aa625a3119e48638c0c5d5
MD5 511bc7a454288930f28acd791aeba8de
BLAKE2b-256 ad11f0146716e8b8a8878ac8d3848116a515f81fabb39d3586f71e4e2ed19d45

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db87e093257744268d69ba1cd5dc20d7797f22b60d25baa6a204fc27a471daed
MD5 39d167fd7c29ff2cfc5b34491d45e414
BLAKE2b-256 5fbac0f6a6d0c322ef8b1de6e1004a97d99a85b1ed6d1f8f297f2367e5872078

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 43733a2eb0ca61ed5ba7b44718965057ed4c975af09983e146d714dea41e5cf4
MD5 04172c0c79d953f6f817782b54b340eb
BLAKE2b-256 ca47dc62dfb907a36ccaa759c1054b335bdc8b423580ccebf247dcbc51d01e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-win_arm64.whl.

File metadata

  • Download URL: rtls-2026.5.14-cp37-abi3-win_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 32d3d5b11e0d20a2cc256a948b44d676756aee1d7d039d8c5256f48172fad53c
MD5 e0fd797c50d2431be8c8b6b13b5890fb
BLAKE2b-256 c2ecfb8eb54330f42d0d5e8163bb8fb12b6a836d0ae5be053d96ef7e2e54344b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-win_arm64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-win_amd64.whl.

File metadata

  • Download URL: rtls-2026.5.14-cp37-abi3-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 41e3a6c2295c1b68d48098355418a4be164fd2258fb83f224f55581f618d4d03
MD5 5d006de6331393e8e7ccb7696a1d12e7
BLAKE2b-256 46f12f201d6b9dae1d676884d3a1eba3d01830ff1d401cc4c23d9bf2bc78d0a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-win_amd64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-win32.whl.

File metadata

  • Download URL: rtls-2026.5.14-cp37-abi3-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 132db51f44ff151de416066068981e6bca5628ad5240b2abab75a24716e2d31b
MD5 9db126578737fdf840ae940d6cfafa34
BLAKE2b-256 5a0865301aff507f0727fefb0bc9026a6c197ad08c931111b818ff7e6d6b8dd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-win32.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fb8bf4da59d087f381ada88cffe9b77230d7576d9d506774022e52f462cb21dc
MD5 d1c0725d92271a6237015daf76edcbaf
BLAKE2b-256 2fb028713b10327a7b9ab98556725fc68f7ab679cde1b81bd2166ec808ff32bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-musllinux_1_1_riscv64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 94bd5183b2a9ad926fcad7d2b0ff5abc7789db03800f6cdbbe4eef866acaa6cf
MD5 7428ebf3243219c074f617c9af19a099
BLAKE2b-256 58bc5b2fd2bde218e7a43476fea16ce03f73018a3fc74870ac63d90309e51875

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-musllinux_1_1_riscv64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ac05716288c2b5bb9a7476a09978a214f0b94e70e87218229b4d272bc96f40e5
MD5 74b44ee81731c17f904318ba5a9a6065
BLAKE2b-256 74b4044d93af2df8df705b7ebd9f1407930df976259e24c76648545b0903062c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-musllinux_1_1_i686.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2737f0ae9e6ef6462c4c16a98e0c57978d0995e52b232ccf9f53ec03acee6053
MD5 3ab0e5f53233e6c50be9f989e0e71813
BLAKE2b-256 d5a66a32115e1769ff49518c4f70f38f117e2c25807ea91225e4bad11cf9252d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 906a376961ae5d60e4555ec9c97a4b79ae868ff41664a6e7f3f9cfb00b65c7a8
MD5 8cb5c4f99536608b63574e4f0593c894
BLAKE2b-256 89f1ce421082fdca19ad6a07abe3a609ed87e7b5968b7971041ec0084b017308

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 08550565cc17bce3382cdd765e483726ae034e5ff3f259c2601a6ac714a107e4
MD5 4a54a1a06b7bd8280fc0d3e5b4833d22
BLAKE2b-256 5157df7a33d6c810ea36e9ab7e669b423bf73d93aedd9673531bbb355f51b0f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-manylinux_2_39_riscv64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ef116abd4428a310441a00dd099b920ef1775dec98f6a7da4e3d0f1d30befac
MD5 200cac06b56424bf3f0f04e38b9eb256
BLAKE2b-256 3b92509b9024cf2f89f9b73332b8168240679ba7c8d9632e0b744d87e71ec94b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e0f9e099a7766fe63ec65404a1d4b99011751ba765a29c7524b8a1f440d5ae0
MD5 ba74b8e15b38c76eb2ef6e3dfe3b5e99
BLAKE2b-256 50270d0ff7b7408da6fbd3c3e1f8fd5fe932fa8d9e1b8bad5e104bf0cf2dee85

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2dd2ce597a055dc9aa20cb98899002359d2f5a9761a6770ddc24929a856966e
MD5 52b4c04596509c5cfbfd482b7aa16689
BLAKE2b-256 f95280effeb83a8f64ae9d63efdf03530aca2732d4c4898ed6b4d663561af5b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 e2834034ac05a4196a883d70a4a557cbb83bc23273d842f76ec7f0a14048128b
MD5 ebcbad2d1cf8830cc89224d6d4ff01ed
BLAKE2b-256 06b232df967d088b751f1f1d1257df88328a4e07d8902e09cc2f323263897c28

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e3175e54b76d4b1957460b3541e425b79f08d89ff39ce752bbded28e9066afc9
MD5 b3fb3c3041a6d13a0209a0df9a14ecbd
BLAKE2b-256 8b944ffc41f2ecaf1599e3a6dc558f5bcc43022eeadc366bfee0d286df584108

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8bdaf922ff74d05e215d1b5330884c4847e32608ef0515212c0b860ff3aff4d3
MD5 5754680a2b94465941c61883f8bebb95
BLAKE2b-256 b72856b24632a904b40eca2979010c0a1e76a894c4bba7310bfa6823a4213e64

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14ee12d999cf38641d29aa5b37959b72a4da611d8adf8b9e1cd99836677945e0
MD5 141646576650a5e0b84b41c2056a93cf
BLAKE2b-256 809963679eff970ba306dcd2d8ca036cd93b31a00ff2b908bdb0dd51cd984184

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtls-2026.5.14-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for rtls-2026.5.14-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 6b515bfe8e55f0ad635a3b3cab23e24c5da6d016293e1eb10a271a54811438a6
MD5 5db0a05dbe58a51104c310c708d8e736
BLAKE2b-256 51f4109099ac4cc3abff2a17886aea164199a65db87a2f0137bd4f30b133beca

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.14-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: CI.yml on jawah/rtls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page