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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ riscv64

rtls-2026.4.24-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.4.24-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ riscv64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.39+ riscv64

rtls-2026.4.24-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.4.24-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7+Windows ARM64

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

Uploaded CPython 3.7+Windows x86-64

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

Uploaded CPython 3.7+Windows x86

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

Uploaded CPython 3.7+musllinux: musl 1.1+ riscv64

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

Uploaded CPython 3.7+musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7+musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.7+musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7+manylinux: glibc 2.39+ riscv64

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

File metadata

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

File hashes

Hashes for rtls-2026.4.24.tar.gz
Algorithm Hash digest
SHA256 f69b15ba6db1132034a86c159def64d4709109064792eb1d21fb4945185b5bae
MD5 70d4fe041478d10720c4d56d070ba373
BLAKE2b-256 dd8f6da6c79d570dc444fde77e77d6c90756ab55674d5498892c9b5e2835ffa1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.4.24-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.4.24-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f9399eb3dc77cf4b8608926b045fc8d6d2abe9931b16e4eef665f263f06e2298
MD5 ca8cfc4c64feb276673f047511e56ad9
BLAKE2b-256 fd6773cb24cca4dd2334a408710f97844984e8896c071f10a274930a70673d2c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.4.24-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.4.24-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d881aeca5ddd6f0cca5bec65b95cf34f6661e589ca4ab1efd8a5d6eccaf60947
MD5 769e9b6507bbf785e3991e6a68fd7702
BLAKE2b-256 b6f734565aa493a9acfeb5cbcdf1d0d98f7ebd00e4543ce6e67f7d07868d7007

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.4.24-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.4.24-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a047e04178e1556463af58fb3aa2dc920ae1e4bd48eef8d9ba4daaf112363d49
MD5 fb473c3789f4cd628bf22a1c73e53292
BLAKE2b-256 e92030c571d970ab990545c9732d50a9b98f595680491fa59d82929c857d6726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c4bff8c53a3403f2eba502cc4fb9d198b12f204a7593770ec5b14a585936b82e
MD5 79651a7af36ea7bd52707638f273fbe0
BLAKE2b-256 a4a0179a8f89c4745c1512723e3ffbc0b13d7cd2671c70b486196d0c690a9e34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 c32c52a8fdbc2253798532c2678496fd3acfac523736846ff2e28233c11a5e20
MD5 8065e8a47610c5ad3c3f0ee78cf6fffd
BLAKE2b-256 a94464ceae7ef9990ebe29a9263ceb7d52f7e2ec14bd7ff90870763a455be48f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6a0933b38335d7b319a7558f447e4422f93a5054583cd792de68fc2d27db7819
MD5 30a91c62a97c0824af994eb0f6435c9b
BLAKE2b-256 64d0256248aab81bebfeafcccdd5a17466b31c0d56f95e7026c6275ef7aa6449

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 741d3ede96e579338eeee3dbdc3da5aa4a171e6fd9a05745dcb49b94f3ef4e1d
MD5 4854021b628d68b722f4373a940264d9
BLAKE2b-256 cf4ceff302cafa200623aea835007e1f2b8016f225c452b08d4ea2fe536d82e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9e66438338aeca9c49238daac9ca77dcbaef0d88bc60c448f8bbeb4994923f8c
MD5 74dbbf3a5e70690ce80aa0626af76ab6
BLAKE2b-256 e9021423cbc58c7c8f8491803afe7595fa3a56ec31b6fb1f5206252a58980d17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 47db451e50cf38b08fe390cffe29cb0d5f4c9bb98f6f167344ce0798d30146c8
MD5 c75f0ce7394f4071310a6e70cc4e32a4
BLAKE2b-256 59c8efa06162da09c84bdeba85aea9af32fa05c8b26f5b122d5f229fbd52775f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ced4d871846390d18c677b37a08b857be3c753ea18f4b5cb8f7297ba81590514
MD5 f44a083df63ecd3c1a732c2b785bdce8
BLAKE2b-256 6d8130a9319bb4c58b10a8ac97ec87a1535ad25b6ee4500e0062d7d7a1fda96d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 816bfa0becb4b775449174db43b49192a5bad8738a19f41b7ba03148290ce92b
MD5 260dd2080ecc1501c2975bc7a1adea2e
BLAKE2b-256 38dbadc8164443e860b5f498dcc8cc4a05fe47c4f3750f7544f0a1e0ae054e5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a789bb7d399fb99f6736ac663b9477fd1d4f8cef6603d3502cce756bf48964a
MD5 fc4bb92eae984382773c80db7931e5c4
BLAKE2b-256 e4191c6395eccf13b08852830bab2401efdb3a58393322dad61c9ec2443952ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 652b5dcc66a962bf176929cc5c2b6b9b338cdfb859ea6da284bb8955a4019455
MD5 c0bb749e7a28f0162edd68b12edd98f9
BLAKE2b-256 a114334a7ccffe6ac2f0059b17e23f7ee31f82017ec2651b578928029e839874

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 634e729fdb9b3ef3ab838512658a9309bd03586b14777399521c85d1c472017e
MD5 17c06172c09c8b28982b46a47ad7bcfe
BLAKE2b-256 901b94668ed1c3427799012e1e74dbf434a18191443c8c93ff9f9aec2efe542f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b135e72e0535261643df480bdf985ca022927141e7e38c351eb91662bc117b7
MD5 dae862af41918e24d5b95558dc2168f3
BLAKE2b-256 21126d2a6de12fba4c06c4d0b81c2fa8f78daa1db2e8cbdb948cd86fae2bcafb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4b4d738e303090e56be5ed845785a8a7e05a05da9a9cf4339ebae15acf3c4de
MD5 90c533aac56cf97c87d23ed4aee2abe3
BLAKE2b-256 add550be0236f97cbce022a33d357323a1d0cbb34eb44bb5dc3f88ef91e5f6bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 6e49ad0dbdddfa75930e47624ca7220ee0a73fa26c310ca5a8ae858ddabbd0b7
MD5 d0780d55ad662db4ddf849bb12cacc0c
BLAKE2b-256 1b15e0ee476d9c0c8c2b497b6609e18e6a7184a294c9ea6b93617d99cf6df7b0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.4.24-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.4.24-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 9afc2761d66264c9834313223c1c20a367eea7acd542a06723d251bee094b39c
MD5 4b63995d097f940cb595a758454ab949
BLAKE2b-256 a4ae33a1d6972024d5c3fbdec951d5222eef44aa5eb05462a7487a5fb365cca3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.4.24-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.4.24-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 7815eea72f2a3ecbc98277fc365a9532682ea9cfde076e23754f114ef5c3b869
MD5 824e33b17db1595880923156020105e7
BLAKE2b-256 76c30cf17f4ce854fe1aabd961e41df8d636dc2375d5f6cf7e56f90c862bb4c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.4.24-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.4.24-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 4ea12171ccb76820ca503a3e267ea4125aa5b5fd3d81176c451db3e62a045123
MD5 231683dbeb395af9897b7c1c87d4cecf
BLAKE2b-256 828697c00d80115ce2c3c7988d036532ce498d7fd56b58f08d6f2ddffac16051

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ce0bbf93625c396543bef72858e092f75fba7c609b148630d58de4911efe591
MD5 afee79d45c9387148adc138710569e9c
BLAKE2b-256 f8e48caa7264ba23f2aa6500252e8fb4b2cdbe4f637ea24de5eeb82a4bc201ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 c705829b821a982c151ffc9a96238145c2fb92448738b74d99e72da7f6edbf65
MD5 e0cca71d402aea7938fa36a8f4ea8662
BLAKE2b-256 847ccc8dbefb524183ab727b777a2cccc42d2799d221eba0e6f5e8d4ac4741f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fd6c797e6bc9e70a7c5b6059c55aa052a4f85a562de3ca13a673f93989cfb746
MD5 757ceabd305c96cfa626d56ca21d85f1
BLAKE2b-256 c9437925cedd5f0f5f7ade4306e9fb54dc78f61a07836e66ddae93886d38a366

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3ddc537eb306a18134dca0e9660b2b7fcc9378de19a6ed94e3f6088ea844d650
MD5 3c310d28701145649f27727d4f9e3d90
BLAKE2b-256 fef0f1ce4f44f52cea648bbadf4d73f4f7551a19b5e97192b909ed1740e458dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1d572e010c9585d3d955681a4b8b484fa3788cdfea118d3bd0291c297e9f878a
MD5 a3837a52942752cf17deb0993979ea15
BLAKE2b-256 ff636162742b1f2db2ce94342b505bbc16172d27746b80b7e0601fc68b3df129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f289f6a028c7931fc83ce0d1e00df92d21cf2b622f2e2f6c9a78bcdd14e9e0bf
MD5 78ea67f374fe020af100af01c0aaa598
BLAKE2b-256 65234f10551cf7077d105f23bd861730c2cdd586668510395b3a4bed79f3db22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a982c07b828aa1316c7c01b56f737ed12504f55a6336074b22a0c7ae6e03a742
MD5 4e677b2ec6df78f375c69730badff785
BLAKE2b-256 c3f0785d76c02dccabfed5cf71e778a53e2c39e0008c7e58cde9585b670b9f8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68161b5bbe0c866aa4a1c0b199f56e209625374ec65a4b38e0718b0d6f622f54
MD5 b94e6236ddcca61d98317c6fcbcbc753
BLAKE2b-256 103bcc88d81e9abec273d404b68158ba9739a17b40dd967cb60e34a05af0975d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 255d148cb8f4e905d6625c4c7f4a871f8195fd9bc366dc967051d80ef2df7d6f
MD5 ab15d111d3f91fed7c5f92484e017553
BLAKE2b-256 91074b4d8c7768193ebc6c94f1d17f0469e6070ec9dbbda7362f2dbe2a9fcecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 f1e9f4c1916f444ea4f2a44af38d6bebe678dd2a809d487753048c2dd828a2e4
MD5 8f543f25207a0ddf4354b9a526647f5c
BLAKE2b-256 ccd4d2132fb55330adcd7c6affd1cbd8e575576a60b7cf88c6e57d2be2dd3a70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34de7dbfab4728c8a8755c35bde03d851211e92ecc8cbdd95c50402db47c10dc
MD5 b10d3fbe6ceab4453910e3eb7b180f41
BLAKE2b-256 3faaef59662b78c1c2aaea220378d9a22290ddc0f38b922c5333452a3d540b0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 79873675d8613c383d0de68c6cabf05327178704687a15d096d39dd3e8d35b7d
MD5 6408ed03b409d0be9d56e0d9c5a56b4a
BLAKE2b-256 1ebc9a3a7be2a4622c6fd852509838dcd8cae1f8f9b8fc35cc4f830eb6b4b272

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a69f9b9f315e3657111b8f39ae8224967d72eadfb6f294e313c3c870d2067c5
MD5 994ee97e736b77fb814bcf6e80b72b5f
BLAKE2b-256 1ca294a9c9cf1638d6e7845c87d072840b483ed155b0f68fb57307d9cbebd030

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 094738129c6575de46b134fc601ca309468a4db04080b4982263b14e380cab93
MD5 a70153e6876e710ad3abaa9e82700ed6
BLAKE2b-256 b0d0a8dbb0d6a4aeae94a341f958dbf576bbe1df36a93040279117b7a4b7afdd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.4.24-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.4.24-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 2f8b1651389d049c580f2ea099335e9018368514e5fe6b4ddee7866fb7ae7d93
MD5 55e881f0588a397631d88daead4d1b74
BLAKE2b-256 75505d5efd9408c6b459ad2911f37922baf0c288d6048ae8003d915f87dfbb7e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.4.24-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.4.24-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 2cb69223e651c9529c926cbe3ff070f203b1f350b8caa4d2476a50c0a5b7cd41
MD5 268026916e11009bcc86c074eeca5c72
BLAKE2b-256 2611b025a3b5bcfd7b902bd6e2da8c02b10812f788abf8d5094b199a6cbeb67f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.4.24-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.4.24-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 e71c79e8eed0df1524e46ae03bae44a69f273e1cfccc62218c44c2c7e32900fb
MD5 3b8e99c6a054200f5dec542efab6c755
BLAKE2b-256 6c43e377a1de0425c60e7ccf86a893d310a34f2bbe9cdfb2be43c061e27ede73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0a47f17f4a9885b3fc5723705c5f5125f56577f4e35c03655158eb757599f77a
MD5 7471ac8252f7c3fa435a8321ff7524c2
BLAKE2b-256 42152c700e999271774ffa39cba6da3b45c7032726960b7c21e44cea392cb30b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 74de01f52375a684e4af5eddad252f035665d2eaf4fcf099184c44189bc0aaf8
MD5 5d6d719ff78b2b2cdf33c39b4c023d19
BLAKE2b-256 c231b6284a1cbc0df359ca18fc05e08573892c5104994f6d016412cf3d2953c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7f7be52b5920af97ea4ca92ab1b23fdcc9d6a9d8d8bdea8da609563c3cad52e2
MD5 7b755a45bbbcb9019ba3b3424234f54c
BLAKE2b-256 9715ee8126a5e24a51b0e845b05e5a74121e22f92d604379f36cb49d3a62009b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 570621efc51d38ce4f11bd5d6bf193680d37b57060a9275198a31934cdbdf51b
MD5 55c0c284dba435abb887ca55d7ab8ece
BLAKE2b-256 16fd510966004282730416e429f4b963d00e9333ccf6b147e20a14bae61cbf87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 22c3ca559c2379511aedfa18ffe85e712318ad06cd7392468adc7b6bda552781
MD5 963672cdaa38e172114156e07ad4fd72
BLAKE2b-256 9d2f54a235439584a6398d43438d4a2c9abbc192bdb5503b129fac99504d3464

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5b4bd92a1e171709a99131b8b352532b14e116037e67b29fc137fb47e4d86bc6
MD5 3e0aca235c40eaa376037f44c2fc09dd
BLAKE2b-256 48d46ac5dfddff6f5f964ec8c738d2eb4b2e3e72b6b0878081c8e19fd24cdd17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14614e5c9594cf1c0dc67d862349e08afc9b46965788398d66f3a5491363f5be
MD5 87f75b95bd1f78a093e1bf935bcc522f
BLAKE2b-256 f3669903b8a48099cdaef8d7718fb51c5ca2932ea2e06492d3c70306b417c52a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62a6f724d49a5094ec97048402f5ae9f741481b9df277e8f669c9ac32b15fbc3
MD5 4935a61cec50ef7192a7cc6ddb1f2efd
BLAKE2b-256 a4f745066f21c8e3310a0b07bd55cf39bfa1da6c9c2b7bb67b978501ca87552b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13edf57c03525b606ed9cda07a527a1384d4fb26b25d772ea494870b3add640f
MD5 87593270778f291b0afb13edd08c09c8
BLAKE2b-256 f7c3ee2893eb1662a293b1f5c1975dd6168bce3e3207f18a0cd6edc4cdb524b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 56a18b34af45fb218a42d89a9b27daca3006c80b2fac005d423d71dd6685ba87
MD5 bc91ad863005deb282d6e864bd53c3d2
BLAKE2b-256 1eb3326161a61b4dbabc98c56269be62d78b79b4ad8eafab5dedd5e1d8c9dcd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e6989d2219d809284c20ce6392653e8ae366ea315bbf7108a4e87e0cae282bd
MD5 cfc5657380c055c405ef4e909c48c01e
BLAKE2b-256 c66f4c882395172adf42305babb8dc75f28ae07d09e373ac983b887ff9f97d26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d03bf82fb772af51978811452f02e95e13cf3594cadb2e4ca63bc88a77e5470
MD5 80b1074edc0bdb4ddee1ac54e678f39d
BLAKE2b-256 80bc14df99429c58fc299f5a8789cf796cd9d74d5373a847f9846000156c8878

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20052d737aae1c9ce0d9941c5ce6b92b62e30942ffa8742f29975767d3b2088c
MD5 70730eedbba7445f63e44de7d161e926
BLAKE2b-256 677381d9d5852d415d322c084155696c70fa93ed15c6b35ca076391b1929d4ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.4.24-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f192ec4cb6970948a09ddba775adf06868cd2503a77528e1a950fe19303f4066
MD5 bc50aced35f83b725a8a19abb08b56c0
BLAKE2b-256 97fac5e9e061faf632f5d6b882015a32c35e02148610d96c2779065602922690

See more details on using hashes here.

Provenance

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