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

Uploaded CPython 3.14tWindows ARM64

rtls-2026.3.26-cp314-cp314t-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

rtls-2026.3.26-cp314-cp314t-win32.whl (1.2 MB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

rtls-2026.3.26-cp314-cp314t-musllinux_1_1_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ riscv64

rtls-2026.3.26-cp314-cp314t-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ i686

rtls-2026.3.26-cp314-cp314t-musllinux_1_1_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

rtls-2026.3.26-cp314-cp314t-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

rtls-2026.3.26-cp314-cp314t-manylinux_2_39_riscv64.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ riscv64

rtls-2026.3.26-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rtls-2026.3.26-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

rtls-2026.3.26-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rtls-2026.3.26-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rtls-2026.3.26-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.5 MB view details)

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

rtls-2026.3.26-cp313-cp313t-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13tWindows ARM64

rtls-2026.3.26-cp313-cp313t-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13tWindows x86-64

rtls-2026.3.26-cp313-cp313t-win32.whl (1.2 MB view details)

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

rtls-2026.3.26-cp313-cp313t-musllinux_1_1_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ riscv64

rtls-2026.3.26-cp313-cp313t-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ i686

rtls-2026.3.26-cp313-cp313t-musllinux_1_1_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARMv7l

rtls-2026.3.26-cp313-cp313t-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

rtls-2026.3.26-cp313-cp313t-manylinux_2_39_riscv64.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.39+ riscv64

rtls-2026.3.26-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rtls-2026.3.26-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

rtls-2026.3.26-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rtls-2026.3.26-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rtls-2026.3.26-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.5 MB view details)

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

rtls-2026.3.26-cp37-abi3-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.7+Windows ARM64

rtls-2026.3.26-cp37-abi3-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7+Windows x86-64

rtls-2026.3.26-cp37-abi3-win32.whl (1.2 MB view details)

Uploaded CPython 3.7+Windows x86

rtls-2026.3.26-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.3.26-cp37-abi3-musllinux_1_1_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.1+ riscv64

rtls-2026.3.26-cp37-abi3-musllinux_1_1_i686.whl (1.6 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.1+ i686

rtls-2026.3.26-cp37-abi3-musllinux_1_1_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.1+ ARMv7l

rtls-2026.3.26-cp37-abi3-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.1+ ARM64

rtls-2026.3.26-cp37-abi3-manylinux_2_39_riscv64.whl (1.4 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.39+ riscv64

rtls-2026.3.26-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

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

rtls-2026.3.26-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ s390x

rtls-2026.3.26-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ppc64le

rtls-2026.3.26-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.3.26-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.3.26-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARMv7l

rtls-2026.3.26-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARM64

rtls-2026.3.26-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.5 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.3.26.tar.gz.

File metadata

  • Download URL: rtls-2026.3.26.tar.gz
  • Upload date:
  • Size: 143.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.3.26.tar.gz
Algorithm Hash digest
SHA256 2d81798424b3554552aee347d1ea8d0289f2506e7bce8f0f4fc4038126d0871d
MD5 9627c23687aa8a0f8b24bee611aadd15
BLAKE2b-256 ffd3cf19258bad01c576b1fe09b6b051d9ec8065f769e737d42f902fb440dbfc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.26-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 1.6 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.3.26-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 bab6447dfecb0eda11ac2963734d9e007cedbb6b997e127e94bc6f7e9d1c45a2
MD5 a907420a62b07b5c839e9c7ae4dd0ac5
BLAKE2b-256 95a181c93d42b625647675483290ebfdeb377dec596a5bb75046c88a18d0cb15

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.26-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.3.26-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a503d682118dbd651b6a2cb28150cca8c1eae3d72a2e768149eaee108e13cdd0
MD5 56f58773798488f0300e5296b3c1a347
BLAKE2b-256 0b7999fbb00c9f6731941fe4193f0eb248539e33d7ac0441852be6fe760be0c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.26-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.2 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.3.26-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 be4eb38accb1285681c819fd4a871e55b21a03afdd2ff1e00d8d46b74b067640
MD5 cacea703dc503dca08b2d5d428ed4cd2
BLAKE2b-256 b1041ae78371023066bae6587a5fccf87a22c9416c2ba352744be98bc69f5c0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c27470432e902aeb85b7370a738c71404b82657c1b1bade1f0c55fb01a28c8c7
MD5 14468d3c46af223b09aa9b89be268834
BLAKE2b-256 077b7e20837bde89cac4db00b327a496d138a4a77a241263c348fee4af735794

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 6cb6c453d47e1a1716f1016268f6b7b765f7b88f8b7cf623b7bea948f09d70e2
MD5 de78b68f381640512727df550dad5f54
BLAKE2b-256 ed4362a1e8d143babdafc22cad1ddd182eba60537047d323c7220e73338282c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a9b5182cbd5376907d74318877e7a2f42f287b267f371926f58616fd9d2afd7f
MD5 b17955fb65facebf3d3965dba0687772
BLAKE2b-256 c6d701bf11f09fe6de58332f14c927844cb7d1aabe2a7f8fdfcb903f2db08f9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 aafbf00ee1f984d2aedb9884a16b1b53bfd2e4ab4935119b937d2fa5d6fb4d64
MD5 4b1c763d84168bd81f5586cac1ab44eb
BLAKE2b-256 2be91d32d33b86e086e98c1dc3939f4eda1eac06f05b0f4221a11346db8ebc3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dd1c21652bea158e86bee058b2910694476076803d09dedf4525497898f48952
MD5 fe817d0e8ae42ca6ef95bdb64ec5e2f8
BLAKE2b-256 84f3988a16ffa187c900ee3c17cdb6b1a67dae820e9fdfa8bcf1b24cf111b112

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 90911c9e4475d8152599a7ae72569a13c94431be94a6c1326576bd5675a7866b
MD5 e82671dec346f346b025616f27197821
BLAKE2b-256 6480cf5cf14e12f57c91f836800da8b89744483bdd2bc83382b8e8c6f682f458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cdfd4b0e28686474837126e01959b8d7370a8ff42cc2cc1356dc11538bad76f
MD5 56eb63da563bb4636f8a67be8ffa7e5c
BLAKE2b-256 58b2faf851ac8e5bf156705b2c0ff08d6f080c42ad636adf37722d3642519a2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1155b5b9e0b72f475ae94784eda2a2a54aa11abac66592d518b7adb0db03153f
MD5 db2cd1fd465793e00e28739810f6b00c
BLAKE2b-256 af93cd6a1e47ca65b3431a58cad068bc2f68de2a5a7ce9941ea80c4cb2a773e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a1358f791142997aa8f2e0c15444cd92f10ef1314aed4526487f1bfe862d288
MD5 6cbabd553164522ddecb9f01003d6c59
BLAKE2b-256 45b311726124fd413d7dadb0ca58b4297c4c267b5725e30da84d53539dd66ef1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 e4f58a95d3d7be622dad971b6ae4b4163e99f4ea6daeafab940c31ad60f6ace2
MD5 18b2b96139cf486581efe0b47a6616cb
BLAKE2b-256 6ea59c92b73e308bbe666e015f85ae1bc0cc815a236128b7841ce4e5091a3b85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d753b83ca4763ac43ba97f76b85cd8672765547d40ada7f9dcbe27fbfc3cb6b2
MD5 22868f591765a7cf81ed49b1b6aee83f
BLAKE2b-256 ce50f5e946233abbcafc047595d50edbbe6748382a0056f4eb9ee2db5152bf60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80951bfaad9c047d029a0dd173a54d34bc63819a50832d98bb7ce5587e7ca297
MD5 a295a6932d66999bb2d7824da86fda9e
BLAKE2b-256 afb642f44f8863ae14c108a62fdb555a0410a63558b07bf401a3532eaeaec534

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 108f031498eaa141f85e5751d75fb5d99012b733deba898e509bda7739ed82bb
MD5 bec95fb23a2d756b22bcc1fffab0a8b8
BLAKE2b-256 685a31ab144deec94bb565c3e25af9b9e5f0bca93a873d9038ca42a38fc32ad7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.3.26-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.3.26-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for rtls-2026.3.26-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 bdfd0b645ddd36774558c93ac17f9d4b81ad4a54851aa260053796a79636f69f
MD5 2c9890aa7de019431841db809be1353c
BLAKE2b-256 f7810e6fc818214107ee4b1bc22286b86e25b08be293098dfd1c6ac41acf583f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.26-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 1.6 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.3.26-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 5db8d806397855dfa48dc6bbb1135bad8351883347f6c9781c4df036e85edd5b
MD5 f766a04b8b4a32a5bf25fa75e4d1dd1f
BLAKE2b-256 32fff3947253a3ba37927f1bb227640527e82cc181457b356453fa079c998230

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.26-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.3.26-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 10c0ce5b87281c0f73db277f724c3eb1f71aa55698ad74badc6e90be4e3df428
MD5 bc5969af81ac21a558b05f7d7c3aeab9
BLAKE2b-256 c851ebbdf8490d653c15983b0701f84214f3d20b911c402d3e0ac4b19fde8eed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.26-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 1.2 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.3.26-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 265d5e84724421ad17f1b0dfced9209e69c0eca37d7d9335be667d8ea2ee1c22
MD5 72f4c733cce3fbfb864aa84b509ef1ca
BLAKE2b-256 97b4e7a19e21e34e21e9a65cf6fe9364caa06834b2d22a5aadbc66755ec2b44d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d61297e15bb2209ac7162167224caedce83f2a6adcd6a9343be579a525cfcd19
MD5 cbe170aa81a40125116d7fbc18396ffa
BLAKE2b-256 9be589523803109db92e6b8af2bf9959ae938ce82eb662ebbb34c44bf75b88e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 359f5942a8398f09d4ddfaf55e6728c584269df4e630df6c29d8fc54b2a1c392
MD5 71bba1d280d21ae3441bd4b2f0ec3559
BLAKE2b-256 95aeb830038eb13099147ecda327e424f59be60964b247ab665988ccdc38a535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 86ed8fc1acf6c433cd3d2345acaa68d6fb5441d5d5c74def21e6d3a7911e6285
MD5 c3829fc512de937aec7ae1c297176e2d
BLAKE2b-256 40829d79b8845313ff5af87cd996ac413c5594d128da627a21649f94a6a48846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 da55eb13d91974051c455b3b18ad7ab9b226ec167bc63d0f34bbeb497cd6271f
MD5 17bc7d08d928204c36131df084e5682b
BLAKE2b-256 1d2ca52339e342df4bbd51667c097a5fb118d82537f212d3d2c548c78c1d7479

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0a85429174410978a3c21ae8e4d454901bc5890c7a84286c59bfe671cf7e872b
MD5 6ffafbd3a9fed31ebe608b236b12f27f
BLAKE2b-256 4d14eead52ab8aea9a646a1720797d41f0e4a986cb671774b1d504e513226c44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6274f5ffd9334d289f30341fdccaabc48a785a36ffb9ce55b8f1b58dd41504d3
MD5 c3306a4757416dfd107651d823e62aba
BLAKE2b-256 c722e4fa6f8dead7ee72f48cf00fb3661454dc58f6cd5649415657bb3367b621

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c0f98625adec14ff0c267bf74109626eb056a3bbcc1aab7ae113139557b6a6b
MD5 55e12488da1cab115e7839e506cda7de
BLAKE2b-256 8a1b0ec3b9ff2654f16235d63031ca4979c714cd6c883c0497c5ac22a43b01c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1781c4102749c63897e2e0049dca301ccfba661e1e19638337a595c46b0a29a
MD5 d1dd3cb7d575d108c66eb6246228ecd4
BLAKE2b-256 aec86b01acd30316cb5aab7ab4303cd37f10bbb5586b26bc391422e6ceb5e9c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5405d93cbc2dce99d10898b1185aa300e6df7db17fc7aff16cdfa1e424f0af4a
MD5 c7d16dd9a1cb8024b3f37f67c262d7f3
BLAKE2b-256 c5a6b731dd38ba29a6c9d58942cf58c5b963eda0ffae0f527919f7748447b37d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 0bb5fe260bad77f366b8d512195d7b2597dfb87e14771eb829c7264a4ac6b915
MD5 a53f84702f805453e731cb74c55a752f
BLAKE2b-256 265144fd293212303f6b93f5e523f28d1f89750ef7bbbbf382c7d1933c349650

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e7b1a9751b5fd1ad1ced80ea3a9ac3e08eb978c6f38ee046348d1a4ac95a7af
MD5 fd6241dd6aac048df34bb8de69887737
BLAKE2b-256 5e26d770393e187f350c96e25912cf68621ada64c4b6e4a38e5a3791d4e492dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bfe89a31f92e65bbcf8955f47e7aa7a8e83a003af96030b22409900e497d8d2
MD5 ddba15ce6f4db2f414d7574a8da3f407
BLAKE2b-256 3897647cd8ddfab6bc2dce056363878dc33e44a7c3ee405e845942792cedf570

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34450d3e17b5f6794ce1c513065acbbd43bdedf3c25da79edd022d2c7962d1ee
MD5 3190467deaa31787867c5424eca9918a
BLAKE2b-256 597cb586ecb9d2c1dee0a1e3d6972d6c935cb94cb20a4dde3e76982b3a40e244

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.3.26-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.3.26-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for rtls-2026.3.26-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f51e0e71a8afe656842e07f2ae75b2dbe813d321baa96e6ee7f15bd5e22de500
MD5 723a6da48a5f591180266095fc7e71f5
BLAKE2b-256 a61166393fa28f15b099588d14231397e5119afddab0d8728affe2b3dbd64470

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.26-cp37-abi3-win_arm64.whl
  • Upload date:
  • Size: 1.6 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.3.26-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 4501dda5194c9e49d819c6cbdfebda0648addfccb9f704b93642e4dbd2286c32
MD5 985abe975f6319c383d2380812fede79
BLAKE2b-256 adf3c005a7e846769654dd1384d0da4b687e852e77eb34431cdde046eb121f86

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.26-cp37-abi3-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.3.26-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 a54fdd7115d8d71ec5eed83538adc84d546abc92a4724a016c1e6541e10e12d8
MD5 15a252c8567a30478759ee108749ee9f
BLAKE2b-256 f893792421bd515058e3483cd1ff34f1246cccea4ca62662f612b51d1d60d4de

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.26-cp37-abi3-win32.whl
  • Upload date:
  • Size: 1.2 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.3.26-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 9843ad0a957f827b7cd618cb16e24883b85a502ac48c9b2e0bb1696c4393a0a4
MD5 d5a243f3d5a2fecf6295c99071cd4d14
BLAKE2b-256 ebcbc10927367a7d977a968e429c8d9f0c819bc4ce1a7d50350ed1a0727e5298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e1e4e80dcafe02527a7efbf56dcb0ffd06121cd55a5aa36e4d3c2492209fc866
MD5 ddad63353caa07a74aa55054dedae067
BLAKE2b-256 1b8e4d427b90becd27021bedf477ed716bcec24156f198b9e0086df8e666b26d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 9528e85dbda4e145178d61f39d4963d24fa170c4a32e1a65996e95465c65989b
MD5 a1de43d4bbf7009f8ad6602c4d259287
BLAKE2b-256 b67181497bad90cca12e1b5b649a829e93c09bcb42cd8868261bb7d62afe6131

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7d63caf7923d7b5e73903841ad551e6a82a70f5f4549d9aa8a7c2beb99af404b
MD5 3230103f4f595165aa99906edd24a722
BLAKE2b-256 e15fcfcf2468c83b5f2830b639b3128fdaa9af19a0d70a40ca05749d2c194d1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 6290a631a3ac4fe0b2b7ab0e3e9f573b4b51104295c6a2c061802a938176f43b
MD5 3136e109b110779392d640f94492017d
BLAKE2b-256 acc67c32e42b16925ea1ff5856679f2205bad33bd7246949f66d5f2eb0ecaaf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d82d8ed451d92c29a69d4ede3aafdcc52bb213ba64ba67d1cf1c1f6af8bc60f4
MD5 fc40d13539e1a45763daa48f80409cc0
BLAKE2b-256 b9ad059a5430d27a168d5dea234999d986ffc90815ce9b084e0063d588f86a75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f50d73acbffbb9b2735070aa1e53780979813b8636a214e6f2817b66ba0ce955
MD5 8f74a31f8483208f826a701869dba65a
BLAKE2b-256 e18f2624b9f909965ad883da27593fd861fec4b889af6aa3321a9d2f93634925

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fba282413b2ec26a565fce609fcff93584413d22419f0d23b430b810a1d2db4
MD5 5d39a3926f4333df2c0b62192613c7da
BLAKE2b-256 ae17469b06778df0c8fd48c1155cb1de71c14661e72bfa9a8d4c5d467414cda5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7827de91dd98aee436437daed2b8ab9196171338a5ab576c0d838f97063be8b8
MD5 948d866108ffaa57cfb84a084179a841
BLAKE2b-256 185ede0388ab3862041cbefd8d1aa21000928703b1bfa6534ebb98910087fbb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85ba408a17a73c4e705cd7cf53a3923d0409c2789b31f9027afc042d43eb6ea5
MD5 1278bd553ceb44f1906f12d15bca3682
BLAKE2b-256 d885c47633df2a5e1c90d9e197fefa3660b9af38c62b275e37c9f5d748a1541a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 056d5ba081295166cd85a2017fb8ac8f79cc0a476ea1a1132ea065d8c57fdf64
MD5 c0b7386b66273d83ae3658db92131d90
BLAKE2b-256 14ff3931b232cd56fc84eaabcee288bf2dc6a5f41a03786f0eb23e48b59ba98e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c326a1cbfaeb34498e92b1493b9fe703d139342a0b1b9aa92cee45b45feae11
MD5 758797077ec85bb85949d53f1b919d76
BLAKE2b-256 6f05b8cc9937e35142ee181a767871a1a2fe51300fa651b2f0fc24898620ccb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92ad7bcb999c1a6a4f132972d1df481f6bfa6a164ebb63a7f56eb3808fb7fe1b
MD5 6d9b873ba1149b0effd7df86d0153e8a
BLAKE2b-256 f5e77c20e7c4900d67a74faeb7e0d353c6f52203a6b927e0b8c00206e8b16083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4148e8e39811f0f33c1015cce35c1ec8b8774c7952155608e9a55d75a11428db
MD5 caa67fac54d707284f50497ccee711df
BLAKE2b-256 a791b76f95000b2635ce6109df14c4fc8ae910a252ff1ff0a676cb20e8d7dccb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.3.26-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.3.26-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for rtls-2026.3.26-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0be1c153a9b3a61c50d73d16a59fda0db7e5c9216dec93537223f6abfe44363c
MD5 86b1a38740832d41b82d8f9ca846ca1b
BLAKE2b-256 ab01e9be548ecbd7b47772d8d014564aa8e6d3dcd13ba11dd6c7569c10be5ff9

See more details on using hashes here.

Provenance

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