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.29.tar.gz (150.4 kB view details)

Uploaded Source

Built Distributions

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

rtls-2026.3.29-cp314-cp314t-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ riscv64

rtls-2026.3.29-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.3.29-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.29-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.29-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.29-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.29-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.29-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rtls-2026.3.29-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.29-cp313-cp313t-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ riscv64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.39+ riscv64

rtls-2026.3.29-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.3.29-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.29-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.29-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.29-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.29-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.29-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rtls-2026.3.29-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.29-cp37-abi3-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.7+Windows ARM64

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

Uploaded CPython 3.7+Windows x86-64

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

Uploaded CPython 3.7+Windows x86

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

Uploaded CPython 3.7+musllinux: musl 1.1+ riscv64

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

Uploaded CPython 3.7+musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7+musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.7+musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7+manylinux: glibc 2.39+ riscv64

rtls-2026.3.29-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.3.29-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.29-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.29-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.29-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.29-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.29-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.3.29-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.29.tar.gz.

File metadata

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

File hashes

Hashes for rtls-2026.3.29.tar.gz
Algorithm Hash digest
SHA256 8fc5fd305a906b437fddc6878925a76f3e1371777f8b2dfb4e847704b4e0f923
MD5 dfe1e86f8134d784da19b170a3a9a0c5
BLAKE2b-256 4e44c8942abcff5f8864fa969d4eb6c96d178b9c9e4b692b806c25cd83b36488

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.29-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.29-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 be28ecce4a83be6670ca7cde8cbcbae94886aed2523d45ac4edde441841c6734
MD5 a5f643d466f0138fde4e7373369efe25
BLAKE2b-256 43bf7a56ae937467e6d3227bee53f20f3ec5ccc75c43ca14c85d37d43499ef14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.29-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.29-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ae0807489603eb7379be1688d3fedf7199d1a4dfe2cfd209bb638f0aa9d76e64
MD5 827bb267cffb79272992eb0b27bd4eca
BLAKE2b-256 e3e4c7ec6ab48ecfc259283017989c2f23f9beb1e4717b23e3b8584ccc1f276f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.29-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.29-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3c0d6399bc8f169bdc0f600cf391267343227deb69703e721c208fc7d5900c59
MD5 6e62647bf36021e1c6ce9a51508d8b08
BLAKE2b-256 17e0eb0c604f77a8cb22231abb01ccb679d1b552e43350575529846c3d80f4b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0aab929f8bae5c1b05b72d56b79b69c70893f22543023fc59597f4b470430807
MD5 b7d3ce85592c8295d20531206535b0fc
BLAKE2b-256 92fb252cac4faac39d460b9644951f0b7a04c168e3e50b2f6ca632e66b8ac9f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 8ef71b69b4b6f52191b647e0a4f6b047d84904531cb9f63311b6554fcbdf7702
MD5 e1e24193a597cf3330da1dbd7302d115
BLAKE2b-256 98552f15ad2b51a9f98c6e1adee76f602febc3403247428cb4313b530279448d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 82eb206d2414ddbfbb015c7faa8f2a14e7d55fe462e45ce5637ac9e6d01337a4
MD5 c82e0cb813d371f902e4166b3ec90a24
BLAKE2b-256 f97639e4ffc3faf97026dfcffe65b17e0d87ce5704557bd33e6b5d3ee9267100

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3729fa9d8b163ac06f35554d612e41095f1e735c9eb2314d939c7df4cc0465cc
MD5 a9e020eadb07c9aaa2c99a33e34670de
BLAKE2b-256 9e486a3d323416bccdb1a1da7d769d89deb2349cfcb28751dc8924f4af843f26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3445fe0be812d7956c7edf3c575812988dc1c45f3d259f1f3290bad13f578922
MD5 7e7772661e014c0210a0cdb01b97e52e
BLAKE2b-256 c8358b9d4e8b587e41a20b01dfd46d7fd46b849bdb1d9060e029fdacaa6ebcb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8f1c6fcbedb3f79fc32ffb19b029c79f9034b8a1a11eb347cfe5fb001518156e
MD5 88e065e5cbf7441fa59e4b4ca1f6cfa6
BLAKE2b-256 4ecb8b38bf82d03d27d16f813f2da25358029c43e9b83e12e4c494138ef8dd29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af06bbba6d266e1804956029b10b0b2cb5ecff6ffc7b3fd67e1075ec98c61bc0
MD5 3707a79a781307c60342253361c58d69
BLAKE2b-256 f16a1649b7b60c9e5f9f75bfaf6c5f78723764a3095abe90f1f39b4557f7b7b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0f22294a3b71f3c08f9a0126242d7e4b3b19490eecd23a9c588e8b153bbb6e0
MD5 5ba27ed14989156c1a80c36798adc20d
BLAKE2b-256 95a23a29f058cb9158d99e3a3c3ee755be15d450ca2f009d7935b5c2776d6ee0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 530966f0732eca30c2a62c9ba2df84cc0ec641e327ee77c1e2d7d8ea9ce1a922
MD5 78be04f15e499f028128b1e46a025f55
BLAKE2b-256 b3b3db22a4aac2713bb2b439629c8552ad9f9847a173edc746e90c70551a695a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 093e22d74e7202a743b290d5c486d1a688cff3495fdee16a18117eb1d986116f
MD5 89b3ad631612ef190900bcac6a403818
BLAKE2b-256 1ec2f6f6d6b0eda4a248c6475be4c7ac00ddbf7e72b0899b57860d3ffa967b4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ddde84bc06cf3c7330ac882c675966114915baa87443b8e0fed6fd0c96b0f653
MD5 d2654e28579fd28cecbd58c0149e99c1
BLAKE2b-256 2f86be5d4be7b23b35fadfc9079dbecb6cfb4183bde19c03c973ac6504ef687c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 95323655c7c126cdcc1027b6d52232bbdff1614b4e24a4a11ba22758b5ea57c6
MD5 b1f8a5e2daeddcece11100005897fdf3
BLAKE2b-256 a677d13d0df093eb9511bf3205483214fb187c3d28420a1f024c8b15e94dbfd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ecf62473edfd0e0cdee9cb0b2fbaf7b14f50937f5525a9654205e02597b7014e
MD5 122876cfcba249bb2056ae978b42a842
BLAKE2b-256 bbe1f38268fa3e6abb4869442f75942b9b0e9708c274b25052354ff6b2978900

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.3.29-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.29-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.29-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9487c1078f925a11558709cb7d47da3dfa69a4267f17eb5f378c16009bc020f6
MD5 d971e88a109a6d8bb527850533c63b65
BLAKE2b-256 7ee8c050d7935da6bba56d8e3d7b0497126e27964eaf59c266bd4dfa543196c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.29-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.29-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 1d4850e091b2a4ccf414a19c4c3ea243ca79093905b5e187ab3df083aab156ab
MD5 40bb8d6a29448509c0e45d7a10a89b39
BLAKE2b-256 9c9a6caa15086e4284c53ec78fbb901dca643005f72f9a080c1162e12d787699

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.29-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.29-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 708abefbbbd4319758d6357c6016a302f262715ff1ee98392761d5f7bfb72151
MD5 4163211a6b41a7a053fd4edeb1d2cbec
BLAKE2b-256 390d372314fc45e71143a57777956492e648f2b3f405d035fe7aeb5c7d2397f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.29-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.29-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 0bbd963d084eeb07d81c4686c176a694c8899fbe683080fc7a388a742dc6f07b
MD5 6e0eeac63b3275170e8e84c38a23623d
BLAKE2b-256 b762300e085c1a8290923ffb464ffaa7751fa0b73bf3aa8285088cad3a33eaae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8d45b1d0b2b1aeda91d6553d4bf06ac69b8a150248722a5b3f61dfa95ff3293c
MD5 5ed75f9ed938db50e8eec3b4bc9a7ef8
BLAKE2b-256 4793472559fd0784c2e5f7b4a5ccf685eceafadc34ce793107c8cadc17e93888

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 5d7de58fa309b6c18ac6dd8fb59bb200a144be85c15e552cdec0a4b8cfcb20ed
MD5 30330e82357d748d2666b46f5069a8a3
BLAKE2b-256 c997d589de5df4bc0a7089ae9570f71f4bab46366711304177ecdf97ab5d4fe1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5fc8449ddff5516a2f780df416f0d31d2b69202858013359e98322b0cdac09f3
MD5 0d6ecccefb529efd8c47d96fdc380068
BLAKE2b-256 565115c60cca8d27a5140422c06cf65d5ee824022e0008bd4e2c7a69f6d06ea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 6269a6699bc62e789f97fe0c953e97fe0bf114dd9b56c8d63ccbccb1854b3860
MD5 9d141dc653b02c751f1819faa267b92e
BLAKE2b-256 8db072c388ae7fc14c320814adb6b5108b2ae58e92296335edbd0a49a3ab4037

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 42bb369eee4a112410f59852a5845cb02f831860d11800a07b563fc59dcba31c
MD5 520688d35c44a48aae71e2c56551bed1
BLAKE2b-256 3a35adffb62766808c2f73c66f7a9a5a66cda82c5632e55ca8314bab2fb71649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d06f5a250ed248789c2997054c670acc08f223fa7a269693cf488458b7b0314c
MD5 fe63e9ab6da995f44c6813b94754323f
BLAKE2b-256 f1ae8b32837d003e8f3ae91c4e6b29af4be67d39b06c1703f9f42ab50e2eb070

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 810321b584431346a4eb1c466b68930174464d51b3aaa237af81a45be1b4d1cb
MD5 7805d9ea5c1dc172ff1954ce04b3f345
BLAKE2b-256 dfef2f1f901d6d33dedd636e015f463c03a87ca11cb81fde2c21584de98dcd2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e56c39e7c3beae6b66f3b3099f0af1c98f495a5a5b246a853d6f4e7744ac346
MD5 829602d640f3bb75e697d8cbce6df4ae
BLAKE2b-256 c4935c5aa644d73979edc74b810239313ab05723531e17cf0b358a2492cd83b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 943b18d69c287d9f0a5e58de97cbb122580c449d9b0cb0517881247edc43936d
MD5 02f49a4a9d24b04655feb2c95d7db6de
BLAKE2b-256 d47a58bb6506773e430f8ee79f5a779874e7a905fd98f264c1cccfcc233ed640

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 54af4ec7ce39f5a01aebdc9da0fcc177d8f1eda55900d59942da0932c520c36d
MD5 a7aa83495ee14b7b5d50c9ec3f85be81
BLAKE2b-256 9412a9df95cf1346c4e0f5831070d4f45616ce07c9492c748193785a65edf5e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5fd063e17b8bf4020a28626f23e4de2a052aa81f2f62ac7f3f2ff0a97be95e27
MD5 2ccfff8a511a572883a065758b46346a
BLAKE2b-256 f51886f701c58d0b2cc90afd8c0fd94092ff6f7e0b1bf835f2669f7517c6720f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 673ad2200868596e083e9ea5c1ec1959b177830780db0a65900a3bb8f314d1bb
MD5 354bc9ea791a01ce03d71ee0e3c09245
BLAKE2b-256 8dbd31679acfd8d466764118687930108924d6c04f7472bad31b2fa39bc58c1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ce1ee84f253c5360f8db9b4b9701fa7d3deafba9b357ac112262615cd069e21
MD5 b9de8bb8abc566f247d475ba91b34385
BLAKE2b-256 51d45c34b8a31a18bce4876811bc1ff29fe93638d928c7efaf1e558c54a3aaf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.3.29-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.29-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.29-cp313-cp313t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0580c5701b2a8dbb6a03e596e8d370aa50f86b69321edd2266f9084cd03e6fcc
MD5 6e76d8aff899d4afaf56d2c45244f567
BLAKE2b-256 9b9d7d39f26c2b9df9844bb52318b2195ed87c33d77cff4b6140b5931dc79aaf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.29-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.29-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 dff8625e48ab0ca5b3bcb01fdbbcaf9e2e8290024bef1bad392d40fb551f64df
MD5 7ce5636c47cad2822b5cbfa835363e9b
BLAKE2b-256 7bd87459a53e7b58b01cd2cc79cfcd963c416a1f8f8739c7cf6b71336d08e879

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.29-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.29-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 9d806f086965a396c6bd31e3d1c5a1f2ad85c29413eb5df12376e18a60ac21a3
MD5 5cc61d2b6c938082f3a58fe3c5e63832
BLAKE2b-256 4feb4e9e69cef26dcfb9ce78233812dc9fc5b21c4e4f085b47a9b27875985913

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rtls-2026.3.29-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.29-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 a1ea7f7717f0afccfdeaa21f970ae37f9ea53c133d36305e9b67172906c1ec5c
MD5 fbd493c3f355b22afb081d48286dd91c
BLAKE2b-256 1a06b7001d49405ea82d6d012e7711da2767e96130b5b4c9cc3938a72a5b8d73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d77e1573041db229c8195007816326a5b97b82c271cc3248024846d4944d5672
MD5 59572b7a2732017f0076a1c3d1e07bf6
BLAKE2b-256 9833df949bfb174d33932f046f61bcdd79175c54b62959ea07f2b55b002bafcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 526a6f53f38926fc32459ae20c819a23608005c93aa6bdf5c2322fe7a2612bea
MD5 6a8486f2bd3cfd530bda5712902f24af
BLAKE2b-256 36d5ad855769fdda5481db8450a00a93fde1cde15cf28bf990e6823f9d1b29cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 809a4ec095d638ea07861687e5539cfb95b83bec9e8444a0a59de091c55bb87c
MD5 43a9f0ae6cf40c9fbd1908a8065bf66a
BLAKE2b-256 b91a1ab9c4284f9896c181c1b10fb4254e218dca3d7f0ffda52497c49dac2350

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b6c458985ea5b63591ebff5c6c35d1fa8af637e382a20f1d2e8357e845fa10d5
MD5 4380206b07c46586bf8bdc5f48a5d49b
BLAKE2b-256 d6d5daeec0eb41e1f521d9a0aea793409275473ed13ea35e93ff03bb9afaaae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7b1ed373a507e5fdd17a60e284a468b481e5596ad1ef98e5dc18af0dbf033c30
MD5 9515f95cd4218b4d3a2c89442b1c0247
BLAKE2b-256 0f01ef626f4d964475f7498c37b6e796c6e7849211e15e4bfb024056a752fc2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9f41287a4fddb69b9ccb526804978da99e9ca6d83b0f9654fa06924fbb0147ef
MD5 6e6d7b52d60d502844c40b296063d279
BLAKE2b-256 63e517a143206841466393f9c5d52cd84bdd703bc921ac1d2f27c0d90855e95c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0244bb1d0c28066fa465584577157474b811ed790775a8dddeac9140e606638
MD5 2f67f09fbb7f29332552aa5a510bf514
BLAKE2b-256 075023436c38bcc18efd64b62b70acd4374cf00873b67e41dcb69f1cade85a51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b83d25abef9a75b4c7d4effab96b3d750605a89632b2169e93c655e994f2f67
MD5 5f961d276ee27f363b42507a9425fcda
BLAKE2b-256 733807c19e08910ab2db8cfa8b32666746634049a889245abf688d21391827f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68f4452d3e7fe1ae5dbfa10855044d97bbf8662986f674eba3972646cf0f12ba
MD5 54e4710d2101bd9eb1035346407657bf
BLAKE2b-256 fe1ad56dc6793c9c6d2517d2c3becd93c01119eea0601c5506b07a952c5ed566

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 03cdc0f9f20693298d1ab6eb435c5f5106ff5df1e05f0ed94ad10dd835aa61f5
MD5 33a66f2d4ec7e1a7d4adcc483e5bd6ac
BLAKE2b-256 2103525f4b8ed2c504a46606af08de379087095173c10e2e1d398b4e96cfe166

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e39d16429ecffaff9890506292e24e4e3146e6150b64246485e59e04e31a45b
MD5 4fec57270ad6ad03c25693cf88143b61
BLAKE2b-256 01d496605a2b936ad550d42c5a275b8988a3d43d77d6d7af4eecbbfb9ad6078f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f9f8761ec1ac20f52c41986b5e46980eb68fe7bfcdab077dfe262940dc9e226
MD5 a6ac98bdc4aedcbe66dc2e1157337d8c
BLAKE2b-256 7bf5b1660ddb80ab25ee9b2e5dc3756da9372239f8962e11efc7f958941b723c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rtls-2026.3.29-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad2eca510ec1364aab46112d78f311d44c3fd31014da1771f1d8dfa7e9e6da03
MD5 23bf88f3a700a65bdebc4f1882bfbe5c
BLAKE2b-256 bea2c5d3a7548bc090aeb3cc0a9972cd5ef44f7ddc81ab58864f79debb520910

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtls-2026.3.29-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.29-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.29-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 668926f6286edcb3158d59b178310d356ac8c3ae4a4b8c5c053bb9965e9efdae
MD5 0d06fb93454f14e2cde3580964e8dc2a
BLAKE2b-256 a162a42d52e67d9de94c28ff38259bf3f2e879b9c65e203fffa417e23823294f

See more details on using hashes here.

Provenance

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