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.7.tar.gz (153.3 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.7-cp314-cp314t-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

rtls-2026.5.7-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.7-cp314-cp314t-musllinux_1_1_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ riscv64

rtls-2026.5.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-cp313-cp313t-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

rtls-2026.5.7-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.7-cp313-cp313t-musllinux_1_1_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ riscv64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.39+ riscv64

rtls-2026.5.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-cp37-abi3-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.7+Windows ARM64

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

Uploaded CPython 3.7+Windows x86-64

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

Uploaded CPython 3.7+Windows x86

rtls-2026.5.7-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.7-cp37-abi3-musllinux_1_1_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.1+ riscv64

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

Uploaded CPython 3.7+musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7+musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.7+musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7+manylinux: glibc 2.39+ riscv64

rtls-2026.5.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7.tar.gz.

File metadata

  • Download URL: rtls-2026.5.7.tar.gz
  • Upload date:
  • Size: 153.3 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.7.tar.gz
Algorithm Hash digest
SHA256 e28d77f7e66e6f302d784ff335518ac63af30c7d905b6edde2ceac558f95d14c
MD5 51cf62e3cf65d70202f3487632f3f0e8
BLAKE2b-256 6d41f3530e35caddbb279701d7da009b17125eabc36caacb813e9603ee2f88a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7.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.7-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: rtls-2026.5.7-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.7-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c26e476f3b19261f615707350f0867584678222228245c86dd367fadd44c3179
MD5 9470bbe585ba4eb65b0a4c0a6a5304e9
BLAKE2b-256 d4c8d494285d3ea4cf52754998b6e1ecaa7f8c624be77b1eb382fe9bc3101f77

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rtls-2026.5.7-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.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4e3f1b690b53d0c2bd2e712fd260ea95667d43235283a918ea0aa7f9861f9915
MD5 8424d741065f612671227197fba2343d
BLAKE2b-256 cfa865e2b1ce0d1e53468feb1fbcf20f5567d89545ab203b1691a30c16814261

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-win32.whl.

File metadata

  • Download URL: rtls-2026.5.7-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.7-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 818a946f7725cfd7ac577eef6a23a8cd5e02ee4ceda66d58831f52bcd5edc9f4
MD5 4c9550d8c040b45e3720ebc845c6ce7d
BLAKE2b-256 d3618dbcfd964a209ee94bf7df34aa28f30ca7f1202c38d1a0854c0b5cbf3b22

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f84f4bfc69ab1396930e494e2dc0717795d04487dbf81b1535d5e188f7a22ebb
MD5 d563dce63c2e987efe342388a5d0c8c6
BLAKE2b-256 44666980fbe1851eb6e6049ca56b2dd5cdfb6927ab951140b0a7c790d77aebd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-musllinux_1_1_riscv64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 950e8f37762c4e890450624d3b76baf3a219c44b818f4c9f9423845e997b3230
MD5 b54e427a4850a205dacac942c01e4371
BLAKE2b-256 59151f1b1bd1dd413acf0799c8e6c4309f1d6b441562a663e1d498995e9c962b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 56db46cc6a5d688879a29711def178886457d8835dc71cd6db7f60fba1a587c2
MD5 6262e63d20fb299c101d7566cff64da9
BLAKE2b-256 2b07ef2a2198f3c139ff9080a88de4861aa3186c3490ba9379a57a6209dd0a01

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2cd73b878ad38379536f3fdf6cf90b7a9ee13f3c12505aa602ae3f21cc2e581f
MD5 58ae16929a7a2248c7dc5d74ab1e2ede
BLAKE2b-256 08e21d106ed95b97cb3072b44afd7352f88b77ebbf02658154d0cb1fe2b8d286

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3189485a2ce20146777841def5a4e3ed4a3d26b92c09577921161bef0e46f2e0
MD5 234173b86b77b75db59d8222b102e554
BLAKE2b-256 a08f48a8dd990f9d44bd1d8ba6b8627ace177089807d482fe7644d20397b6cfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 19e5a9ecc838a4b038a1050aab0dc983d15a534d2aacd0adda9164ba136f84cb
MD5 726fcbfe0722c679f850547f84331445
BLAKE2b-256 efa019cf8bf5de6665d9167846002e17d449fa63e88dcba3eda61a558132e633

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74750b909b35c6012f1a9354c0cbf69ce5eaa474d08245a43847e6f1eae70621
MD5 4ee162c699938a21bbfe08780c09a7ad
BLAKE2b-256 7a90a004a17b9968c12d569f4b1c630d00e2282e7449ff2a32574f28785c4e0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a30057a20fe5b34e134e07b49d8ba89f28b8f4078dd10deb8d462ce75f544a79
MD5 a472fee79b4d409235b79672f855ffd8
BLAKE2b-256 18240f7361484c7884217393979964fc09f5ca8677138670e0335afdcebb861b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9a5cc416e173f2682b31314ab43ebbbdc43cc72b3d1bbee84715405dde34f0f
MD5 1f16503058d6e04ec2d7aa7f8df75806
BLAKE2b-256 e689854d3534bc0cd7e1c13599a49c30fb7bf109f9adaddcbb4e13c3b77c7663

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 f7a07acefc293a17561b9cbb70237fd99c5777e33dcbb29561d995cf16e06179
MD5 014f72c3a8a955e5e0c8ec9ebf877898
BLAKE2b-256 edd0a1a0105d5ba1784e7df6ebf0e7ddfaa73796976c60e8f1d9c681baa0dcba

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2a73a0952dc1545a9ee8ce9196fb81e95e95af6a6dc70d2cf202b5e4f599b30
MD5 615739bf0e2650efd64808a40fcfadb9
BLAKE2b-256 9ff5fd413209c901e69fbc6b8cb0ddff405ba6342243f5d8148d67093865b2f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d28c421129162340c1a4ebd2976335bdfec7cfd3effae19ec486e8fbe8fd5e8d
MD5 a98fcd8277cb0f3428dcd3b89f3b5c47
BLAKE2b-256 35c63775f5c44659d26cff98a6ff90d1061251e5c956681984da223a06e75c45

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5cb138c18b89421bda9baf0fd1ed184cfdb136eb5ffa4c667185e4bf12bb3175
MD5 d35ceb3aab2fba3d72098d9b8efd25f9
BLAKE2b-256 c1fd776710b45fef493f05d158b2de579c3e9af1eddbe26f29bbcd933fa514d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-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.7-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d56d85606f80a68b11770c537c52a23f716e0399b1595497234627a661ca3cc7
MD5 a867309b5793a14eb924fffb965f6fbf
BLAKE2b-256 b0fa0dc70115bb308153a853a0bf81a085ba115a82bf65c49349453e6849456d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: rtls-2026.5.7-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.7-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 8bc187372d6c5a14dcb4084e0ad6d1418a3739262eace7726281496645f7d50b
MD5 b68142da09aa1daca88e40ce5b5c4b43
BLAKE2b-256 a6bfdbad908d4511ec74191a1eb71500b1bf9885d78c1d765f5f2baa2d77f154

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: rtls-2026.5.7-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.7-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 0172fc5b15a86f58b30513b93e24a20918176cff4b217dc16bb06e0f1d78d7d8
MD5 509befb3d652ddfe2da95dcb6aa0fbbc
BLAKE2b-256 ee3754a36f9ea2ea3e6f5311a9c8edc276bf7a6393bf2a56d54961d5cc829360

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-win32.whl.

File metadata

  • Download URL: rtls-2026.5.7-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.7-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 3ffa8a6d698e13cd55ea049c78d7dcb519db3de602fe7c5ec2fa9f95647bff29
MD5 375be6ec52ae51705a6b17b00abf30d0
BLAKE2b-256 2266c7877dd6e0ce855a8fce9392f8b1a760f0b0062afd0d93e9bb1cb82b5d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e78ac336fda3e0115aec748dd3285f51318dc1f00f1931af5282ea0c5eaaf964
MD5 c3bcf3102071903e153221359aebcd23
BLAKE2b-256 537f39f778a4aed8fee43478899be29520f241cd9c8ae5eba0886b412439b39b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-musllinux_1_1_riscv64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 cd5f318e84e6c9679b4b040bc7ca1e204d2e3ef18fe28e8d9351c1df7d153247
MD5 2dbf85bd01aa66601b43d8ca815f3db1
BLAKE2b-256 34a5c89e7b6ef972af0e7560f7e607ee077ed449e6d8cf394ae145a893a2b9bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bae05ad31d19aa0abba5c4130c1ef69a43f37a98f69870813cd0c107ffffbe51
MD5 a4fd9e7a00fa6f94a2edbc191c831edf
BLAKE2b-256 a2a5ee143dfa6738850b5c54d86483b33debbb80a1cf9dd4d86a47443b21e3be

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 0e9e32bd406397b3478b703743bcb02c7124d23c737fb50fda191cba0033293d
MD5 384229875345fe08fe9bbe3c64ed9373
BLAKE2b-256 b956091b9759db290166b3474cfb495b5f5c35d3091c3fe6d4fa117c938fe155

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 570e0c310a2aa3ee1f8552bebc3d1bff6071dd9607c307b2ef178eb6188fd071
MD5 490535676ad6747ea898a65795e72311
BLAKE2b-256 afb106db2ce338c85bae6b9f542be6613112d0034216b4ac59fa0c5cb6a66703

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4ca65e25aa97d3df7022dbab40197db96d3a4772351d135310949c6947c1e730
MD5 5d4f0b8e71e200215fafcd8c29cf80ab
BLAKE2b-256 55d7d2ad584a6e26655cfcceb4f6be83975eec8389b4a3b76a40e14bb0c3c0dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50da597ccb44870e673df47ab8ca01695a8e39d7be592abe67f7427325c4b4e6
MD5 38fbace763e8a6ee047364ec7dd337b7
BLAKE2b-256 df5972fb690205ad3d2c0fc6d782948163d755f09ab77d0700c3ff3e2b56fb9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5244484d81cf807f3733deeaceb7c2b2c0f8ea0845c9a57456e844a4e20a1cde
MD5 ca4d2cac9923e94a1ad717277d008836
BLAKE2b-256 5dea2f793f5c0dffc9d1522149b6bf1f2ae7093be5c863871d481d6ad2238e0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 386bd2b144a1cc12d77081454d0c3f42170e840cca2e98d2a834921425e2ac1c
MD5 dfbd94e6da910aefdff5b9cd553ee3eb
BLAKE2b-256 d44960807afedfaeca47695fa4e8886292d1293c8418fffd3417b37f1356dd8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 9f24c6b3c1837db4f59f6c03d1e8a0989f85a1079878e1425e274b792fe02815
MD5 9c3a6eb7ea510a9ec22ab3e61c1822c2
BLAKE2b-256 96d6d29d53fa6e0d4615e201fb1f8c1a268bb1aad0db6d75aaf8eca6dc43f05a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b3aec3d470480c7885d69c891c62798d6989d8e891c5467f04f19e6619fe3e8
MD5 8ecb45329e091820d0ef83c9f3000cf2
BLAKE2b-256 eb5dbdbee6034f8fc55f04c996bed8a3aa9224b58acb8fa1f105547e07226600

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b29ec737ba26131ba817fb1d886bcf08c16c9b64099b5594be12f1d011816d74
MD5 d3e020d94a10ffcb792eee6282d66be2
BLAKE2b-256 aa33e5e8a5606e40c9b2abfccf3ed29f54fd07c9628023c42fa6efb8630afe37

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2e4e54a6d64883d7ed5ddc264fbf481dfcfa18f1698840c9d5bcf0eef7e34b5
MD5 ca376fa62f156b3859039128cb7705ba
BLAKE2b-256 f2a73e844cb81e87643c43693b309d4b4eb7307acda2c19725ffe9729c272265

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-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.7-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 ce6bdd35fc1681589a9d99a9e09b138caa96b4875f9f73db636c49c3d445020f
MD5 a505c18438e71c86bafbac0d9d686a20
BLAKE2b-256 8e4ca84b169722e60bd0dac9b4a3fb07a4c79068c6183adf9df211b832dcf0f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-win_arm64.whl.

File metadata

  • Download URL: rtls-2026.5.7-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.7-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 439b126c49da0e3521763536962b215d3c498a9d5ef24866bd24d348afc66c00
MD5 42b7534a1417752a59d951a378c4299e
BLAKE2b-256 f2c7342d2fb3b739bf1b1c58cf9ae76f26e138de65342f5aa572f7bf693fd28d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-win_amd64.whl.

File metadata

  • Download URL: rtls-2026.5.7-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.7-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 fb96400e5d566856255f3aa9e3b11bd80c10bf62931f448448913db3aa501c6d
MD5 efe12e4aa470d9e0b40e23051e0b3e32
BLAKE2b-256 3a4ea9f2dbacb1ce21eeea9229dd593e73b911f94380e1fd123e0ec72021ab5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-win32.whl.

File metadata

  • Download URL: rtls-2026.5.7-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.7-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 1638ced21a5ec83bc311d454a7c65ecfb0b1ff33da4400bcd30f7085c13f1c2d
MD5 788b01270a00042bc05784c80ae398a8
BLAKE2b-256 9ff76a47727c4760f511aa9e55567390234a9272d2d45373e57ea5f3527740c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 22394cf450279d791aeef37d1a8043b05574cbcb1ed726d0a0b6f5b044e11c56
MD5 a6f3984b6d89b78d3a9005e2c7acf0a6
BLAKE2b-256 0b3db5efa2df80c90e7f29ef1353c61e2c1b0b6ca2eb0bea90f6dcc04c96ccbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-musllinux_1_1_riscv64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 6ad32870cf870408f17dc34f78dcf91b3fe245b79fcef089183ec66b5c4ebb99
MD5 3b1bb54c7e58cc2e1938edc5ebb0edde
BLAKE2b-256 431490b12078a27a6245d901a5c0a0309a257208157d1b8277fb13a327b86a76

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f1915bc7a2090ad5ea08a3aa57659b994ec7dfa454cc85ee08174e8168fc170c
MD5 79c23bc38a9fdf6908c109f1129ffbc8
BLAKE2b-256 109910b8fa7fefb4f34a04b98688df9f501af8e33ff4d8cc354f4d98be4893b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e8a413f1d5920f6cac2c76eb23e155d08f53b0ae38637802299f727987bee1fb
MD5 d672142e63248ea33c54c866d6af4965
BLAKE2b-256 18bac4e3f7f248744cc973eefa709f05933f763f5a2a5f4c167fa9558a8ae429

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0133a06cd3aceb313c1a989658e587d8acd50b4e4a1d84d4d3765392165f2d0d
MD5 12aa17f26f99c2f3722c8fea3524e111
BLAKE2b-256 eb9b8f92898a0ebdad3363eb7c521ddaa6ecf5e6a557a06109dcde391528c50c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e2b73ca2c2eccdccba9d8e20a01a75952bbed705b5db280c0d9fd707ca1414e2
MD5 8a36d1183f764d771c9efc7cf274953f
BLAKE2b-256 834f6b5ed0d17829e51fb1ff849fd67143f62ed84eaabb66b53cfac1555513d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3cf0aacc59572a89b5ae668ba1a250e10ab0d03200982d01e15119675e21e6f
MD5 10b5aabb21f6bca35a0486444014534d
BLAKE2b-256 d1619583567cac4ad504427875f8083d5f6aef57e9e8f7146b6ac89c3fe67ea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0ccb371ba9e72f1b459f8222af7524ab326f80878277329cf311ab166529154
MD5 1173773f83db9caaee9cfe404c3962bc
BLAKE2b-256 ff520742a026357ebfa28d9ca8a01672f935c3a2d7e445ad6b4425e85136f666

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db961b72c0f4853275da1b90435f9b02bc53d9578fe5e99ffb729a16a437f53d
MD5 7c4ca70ab361108abaf094e99a0ce5ed
BLAKE2b-256 fa06f20688f6cbdb59637180858fcab46adb9fa7f702f363b459ff732227d3d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 0ed67fcc55046b29d85621b428af2f50a636e4637158c206b8f506d4b1b81513
MD5 50cbe29237a0456a8a5dde2427c5a8bc
BLAKE2b-256 2b0cbd0a3d2111c94a661d9d507d856c36dd1b170cfc82a2238de5d703430a2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 118e856cd896f43bc0bba8477c580aadc82a94c8eaec45f366442afb5617720b
MD5 e26d6198bf842ea8c7cc20ac91f08abb
BLAKE2b-256 d282efbf0e0a09ec09f67dbfb6eb955915d0a5a0f0b9c37016d30486d9f8809c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a3b4977b854a82ed8efc842058f7a8d9fd2f60806170b3888af19006eb32ec4
MD5 fc62ea4226f327a340412a6d5a04a261
BLAKE2b-256 9561f523b74198832ae21186dd3d9794c1569b95e82126f2df4bd7706b1ecfdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtls-2026.5.7-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0eb47e78955e7f31a0419815efc87912400c41cac7edc526c9b40e343e3abca
MD5 8bcfade2e527613fd85891eee1c39901
BLAKE2b-256 f2fc5964e401b85f6f89b146c4bbb891e1752c085346490419fc6933679c169f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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.7-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.7-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 ef510f02d25061dc53d8046466da360ab4c52b11bb9c922073b0aeb9d79ae3c8
MD5 a335034d21c780c6848ce9bba4249b0d
BLAKE2b-256 f53929a88bb133f09ec1fdd4e3985cd3b10e94d7a5746ef042678413ac053965

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.5.7-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