Skip to main content
rsloop logo

An event loop for asyncio written in Rust

PyPI - Version Tests PyPI Downloads

rsloop is a PyO3-based asyncio event loop implemented in Rust.

Each rsloop.Loop owns a dedicated Rust runtime thread for loop coordination and I/O work. That thread runs an rsloop-specialized vibeio runtime, using io_uring on Linux, IOCP on Windows, and native kqueue readiness on macOS. Native-stream TCP reads and Unix-domain socket reads run on that runtime. On Unix, generic TCP protocol readers use a second vibeio runtime on the Python loop thread (io_uring on Linux), avoiding cross-thread delivery of each read. Non-TLS accepts run on either runtime depending on where the server starts. Python callbacks, tasks, and coroutines run on the thread that calls run_forever() or run_until_complete() (usually the main Python thread).

The package exposes:

  • a native extension module at rsloop._loop
  • a Python wrapper in python/rsloop/__init__.py
  • rsloop.Loop, rsloop.EventLoopPolicy, rsloop.new_event_loop(), rsloop.run(...), rsloop.install(), rsloop.uninstall(), and rsloop.build_info()

Repository metadata supports CPython 3.10 through 3.15. The native runtime requires Linux 6.1+, macOS 13+, or Windows 10+ so its hot paths can rely on modern completion, timer, and scheduler primitives. Free-threaded CPython (3.14t) is supported: the extension declares gil_used = false, so importing it no longer re-enables the GIL. See Free-Threaded CPython for what that does and does not buy you.

Documentation

Project documentation now lives in docs/.

If you are new to the repository, start with:

To browse the docs locally with MkDocs:

uvx --from mkdocs mkdocs serve

Install

From PyPI:

pip install rsloop

With uv:

uv add rsloop

From conda-forge, using pixi:

pixi add rsloop

Usage

Simple entry point:

import rsloop


async def main(): ...


rsloop.run(main())

Install as the default asyncio event loop policy:

import asyncio
import rsloop

rsloop.install()
try:
    asyncio.run(main())
finally:
    rsloop.uninstall()

Manual loop creation also works:

import asyncio
import rsloop

loop = rsloop.new_event_loop()
asyncio.set_event_loop(loop)
try:
    loop.run_until_complete(...)
finally:
    asyncio.set_event_loop(None)
    loop.close()

Importing rsloop also patches asyncio.set_event_loop() so Python 3.10 can accept an rsloop.Loop instance, matching the behavior exercised by tests/test_run.py.

Examples

Run the repository examples from the project root:

uv run python examples/01_basics.py
uv run python examples/02_fd_and_sockets.py
uv run python examples/03_streams.py
uv run python examples/04_unix_and_accepted_socket.py
uv run python examples/05_pipes_signals_subprocesses.py

Example files: examples/01_basics.py, examples/02_fd_and_sockets.py, examples/03_streams.py, examples/04_unix_and_accepted_socket.py, examples/05_pipes_signals_subprocesses.py.

The repository also includes:

Benchmarks

See benchmark results and reproduction commands.

Acknowledgements

rsloop builds on the Python asyncio model and is implemented with PyO3 on the Rust side. Runtime and socket I/O are powered by vibeio.

License

This project is licensed under the Apache License, Version 2.0. See LICENSE for the full text.

Release files for rsloop 0.1.53

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for rsloop 0.1.53
File Size Uploaded
rsloop-0.1.53.tar.gz 981.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for rsloop 0.1.53
File
rsloop-0.1.53-cp315-cp315-win_arm64.whl CPython 3.15 CPython 3.15 Windows ARM64 Details
rsloop-0.1.53-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
rsloop-0.1.53-cp315-cp315-manylinux_2_39_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.39+ x86-64 Details
rsloop-0.1.53-cp315-cp315-manylinux_2_39_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.39+ ARM64 Details
rsloop-0.1.53-cp315-cp315-macosx_13_0_x86_64.whl CPython 3.15 CPython 3.15 macOS 13.0+ x86-64 Details
rsloop-0.1.53-cp315-cp315-macosx_13_0_arm64.whl CPython 3.15 CPython 3.15 macOS 13.0+ ARM64 Details
rsloop-0.1.53-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
rsloop-0.1.53-cp314-cp314t-manylinux_2_39_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.39+ x86-64 Details
rsloop-0.1.53-cp314-cp314t-manylinux_2_39_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.39+ ARM64 Details
rsloop-0.1.53-cp314-cp314t-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 13.0+ x86-64 Details
rsloop-0.1.53-cp314-cp314t-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 13.0+ ARM64 Details
rsloop-0.1.53-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
rsloop-0.1.53-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
rsloop-0.1.53-cp314-cp314-manylinux_2_39_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.39+ x86-64 Details
rsloop-0.1.53-cp314-cp314-manylinux_2_39_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.39+ ARM64 Details
rsloop-0.1.53-cp314-cp314-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 13.0+ x86-64 Details
rsloop-0.1.53-cp314-cp314-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 macOS 13.0+ ARM64 Details
rsloop-0.1.53-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
rsloop-0.1.53-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
rsloop-0.1.53-cp313-cp313-manylinux_2_39_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.39+ x86-64 Details
rsloop-0.1.53-cp313-cp313-manylinux_2_39_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.39+ ARM64 Details
rsloop-0.1.53-cp313-cp313-macosx_13_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 13.0+ x86-64 Details
rsloop-0.1.53-cp313-cp313-macosx_13_0_arm64.whl CPython 3.13 CPython 3.13 macOS 13.0+ ARM64 Details
rsloop-0.1.53-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
rsloop-0.1.53-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
rsloop-0.1.53-cp312-cp312-manylinux_2_39_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.39+ x86-64 Details
rsloop-0.1.53-cp312-cp312-manylinux_2_39_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.39+ ARM64 Details
rsloop-0.1.53-cp312-cp312-macosx_13_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 13.0+ x86-64 Details
rsloop-0.1.53-cp312-cp312-macosx_13_0_arm64.whl CPython 3.12 CPython 3.12 macOS 13.0+ ARM64 Details
rsloop-0.1.53-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
rsloop-0.1.53-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
rsloop-0.1.53-cp311-cp311-manylinux_2_39_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.39+ x86-64 Details
rsloop-0.1.53-cp311-cp311-manylinux_2_39_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.39+ ARM64 Details
rsloop-0.1.53-cp311-cp311-macosx_13_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 13.0+ x86-64 Details
rsloop-0.1.53-cp311-cp311-macosx_13_0_arm64.whl CPython 3.11 CPython 3.11 macOS 13.0+ ARM64 Details
rsloop-0.1.53-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
rsloop-0.1.53-cp310-cp310-manylinux_2_39_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.39+ x86-64 Details
rsloop-0.1.53-cp310-cp310-manylinux_2_39_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.39+ ARM64 Details
rsloop-0.1.53-cp310-cp310-macosx_13_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 13.0+ x86-64 Details
rsloop-0.1.53-cp310-cp310-macosx_13_0_arm64.whl CPython 3.10 CPython 3.10 macOS 13.0+ ARM64 Details

Total release size: 100.1 MB

Release files / rsloop-0.1.53.tar.gz

Download URL rsloop-0.1.53.tar.gz
Size 981.0 kB
Tags Source
SHA-256 checksum
How to use checksums
14bf606939b0308c8531cf4312afc70bb84c824a4f7e9f6d5fc987b6b8c5bec2
BLAKE2b-256 checksum
How to use checksums
bd870e680e1cf40704087c76cc8785abf9adc1995a35a031b4d73b848dbdc6ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp315-cp315-win_arm64.whl

Download URL rsloop-0.1.53-cp315-cp315-win_arm64.whl
Size 2.3 MB
Tags CPython 3.15 Windows ARM64
SHA-256 checksum
How to use checksums
b372a2ccbaa4754e332ca58a25ba83d5363b2da09855e546fb81881cffd48037
BLAKE2b-256 checksum
How to use checksums
9b5a29b525af3ad326fe8ff564ac348b5717e33f93a1c227a116c7f611ec974a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp315-cp315-win_amd64.whl

Download URL rsloop-0.1.53-cp315-cp315-win_amd64.whl
Size 2.3 MB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
187302d3c2ad901fa77d2c5d91a33a038f0972edaa0c61df52dc1be650753ad9
BLAKE2b-256 checksum
How to use checksums
9913127d04b0fa19e5da0f3453f20e1b96f7c38513a5df9dcd6701ab8cf0bbd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp315-cp315-manylinux_2_39_x86_64.whl

Download URL rsloop-0.1.53-cp315-cp315-manylinux_2_39_x86_64.whl
Size 2.7 MB
Tags CPython 3.15 Linux glibc 2.39+ x86-64
SHA-256 checksum
How to use checksums
419297be43ac6a5e20d2af9e337cf48ef4eefb4db8e9971ab029bafc982be9b9
BLAKE2b-256 checksum
How to use checksums
ef4686fc35040cc520b7370c8023d8dea189d7a561458f2c87c5aef06501d7d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp315-cp315-manylinux_2_39_aarch64.whl

Download URL rsloop-0.1.53-cp315-cp315-manylinux_2_39_aarch64.whl
Size 2.5 MB
Tags CPython 3.15 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
d4f4280375ee39e39fb45cd172c613d438df1763b9949d0e712aa268b9d27715
BLAKE2b-256 checksum
How to use checksums
52f5d86d77a652d2e6b9c6ea4091938b15f868acdedd4c58a70a2c7035bbef84
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp315-cp315-macosx_13_0_x86_64.whl

Download URL rsloop-0.1.53-cp315-cp315-macosx_13_0_x86_64.whl
Size 2.6 MB
Tags CPython 3.15 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
af677f11f88d4b48996b2d080ce8e47d346074360910c8fa80e357e81c0cff28
BLAKE2b-256 checksum
How to use checksums
371a086bf8569a6b0062ec93bdb18e7886c07691dc4933f8c729587a9b02a426
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp315-cp315-macosx_13_0_arm64.whl

Download URL rsloop-0.1.53-cp315-cp315-macosx_13_0_arm64.whl
Size 2.4 MB
Tags CPython 3.15 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
bfd786079539f04fd875e843deb2974314f625ed7df0001fa33cbd8991ef7b50
BLAKE2b-256 checksum
How to use checksums
19cddc0198f4228c498470ff2165d49c844e62494e9571afde263b4674df34b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp314-cp314t-win_amd64.whl

Download URL rsloop-0.1.53-cp314-cp314t-win_amd64.whl
Size 2.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
97b83744d8b31bff46a2c936799a7ce4472e6a931de49c3a7658bf0eb548de79
BLAKE2b-256 checksum
How to use checksums
7761168c79a139b36f234cc3ace49111edfe7750472f74126603e584894b2e4c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp314-cp314t-manylinux_2_39_x86_64.whl

Download URL rsloop-0.1.53-cp314-cp314t-manylinux_2_39_x86_64.whl
Size 2.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.39+ x86-64
SHA-256 checksum
How to use checksums
44108724cf8662e13fd70f1d67dad8a1aa1b84093320dd2098d74bb6664a86cf
BLAKE2b-256 checksum
How to use checksums
08918ce706f7d77217687e9d99924fb82664368a2da08aed806ae19ce0eaa86c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp314-cp314t-manylinux_2_39_aarch64.whl

Download URL rsloop-0.1.53-cp314-cp314t-manylinux_2_39_aarch64.whl
Size 2.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
eed6f033aabccb4ca2173dbbcdaa131c0d88e702428316fcd7f031006284431b
BLAKE2b-256 checksum
How to use checksums
97150729a0ce9d294da5163c0f1aba231dc38d5a1d980f746ea81e38d6c72604
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp314-cp314t-macosx_13_0_x86_64.whl

Download URL rsloop-0.1.53-cp314-cp314t-macosx_13_0_x86_64.whl
Size 2.6 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
a42b8d803e95641407b5f82f8727eb9fd0e5a6f338888cad66e748373d09f3ed
BLAKE2b-256 checksum
How to use checksums
9a69afd92fc27366fb99d1ed62ee086570c0d2bd75bb6d8694ee82c6f9e86a22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp314-cp314t-macosx_13_0_arm64.whl

Download URL rsloop-0.1.53-cp314-cp314t-macosx_13_0_arm64.whl
Size 2.4 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
770a4dd9a254833b2742a3c7007480e4755eaf2d6b9375951e93f20b84d765fa
BLAKE2b-256 checksum
How to use checksums
eb740d389c09a72ff7fe01cd97457e3c39b2d797ea959e509f835b68d93b4fe5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp314-cp314-win_arm64.whl

Download URL rsloop-0.1.53-cp314-cp314-win_arm64.whl
Size 2.3 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
d164fe2d96f68b089151c6f1930ddcc5f903c5349685042bd7a8803491b2e515
BLAKE2b-256 checksum
How to use checksums
420b3032cada5799b4920671649ff2e505b3ced6336909909dbaa02c25cc6f87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp314-cp314-win_amd64.whl

Download URL rsloop-0.1.53-cp314-cp314-win_amd64.whl
Size 2.3 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
eb19da7df52fe785d1b7136b18df18cd97db63c779a1e1706210ce5ebdc2d571
BLAKE2b-256 checksum
How to use checksums
3d48bea5e66103c3c4b1c2a7d7e966360a08c5b67ab9ee5b9a08871d41da845a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp314-cp314-manylinux_2_39_x86_64.whl

Download URL rsloop-0.1.53-cp314-cp314-manylinux_2_39_x86_64.whl
Size 2.7 MB
Tags CPython 3.14 Linux glibc 2.39+ x86-64
SHA-256 checksum
How to use checksums
a81439dfc2f64d68500af6f70635ff27a8ecbd7f141fb23890bc929ea648a2d7
BLAKE2b-256 checksum
How to use checksums
2ed88f121d17d9859c7e6655406accca315b9b38f7b66cb38b111019bd2aaf53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp314-cp314-manylinux_2_39_aarch64.whl

Download URL rsloop-0.1.53-cp314-cp314-manylinux_2_39_aarch64.whl
Size 2.5 MB
Tags CPython 3.14 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
852e34b94b4252fcf4bffa5765869575ad1b7b7c7a6cf438dd9996209b3394e4
BLAKE2b-256 checksum
How to use checksums
d8811bec93c7933a25c90f3d9aed0f9bf278e3413c07e8dbcf272842629bf0ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp314-cp314-macosx_13_0_x86_64.whl

Download URL rsloop-0.1.53-cp314-cp314-macosx_13_0_x86_64.whl
Size 2.6 MB
Tags CPython 3.14 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
532c19aa8d863d3542e33e6e5c3693814b6140207f54441f168583ee660376bd
BLAKE2b-256 checksum
How to use checksums
9319ee11fd4a8b95a85e5b004044212cfcb9eda6e904ce493ab99876982eaf8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp314-cp314-macosx_13_0_arm64.whl

Download URL rsloop-0.1.53-cp314-cp314-macosx_13_0_arm64.whl
Size 2.4 MB
Tags CPython 3.14 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
617e54871a1d9ebc02c5de499c4bb9d4cf61dca6ef4f72e9ceb8b38fc977f696
BLAKE2b-256 checksum
How to use checksums
7d48271c474004c47fa5e3f0386b114100ab95bd292b3748d6987e2715ed3d3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp313-cp313-win_arm64.whl

Download URL rsloop-0.1.53-cp313-cp313-win_arm64.whl
Size 2.3 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
f9148b7ce36114ae4e95b1615476ef8be5dff244f9d77870e3a31ebd382fca0f
BLAKE2b-256 checksum
How to use checksums
6fc3a5a72a82b74591555d6f13985ddc03e25fe784b1e1587b89b15f3d855ecc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp313-cp313-win_amd64.whl

Download URL rsloop-0.1.53-cp313-cp313-win_amd64.whl
Size 2.3 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
ecc4a947bf3d368c06a565e206c4706dd7d52fed5071c8865245dbc91e050654
BLAKE2b-256 checksum
How to use checksums
cb0c4bf9d9eef63f9a54fe9837cc02d327473926b4dd93de1bd84796d7d0d3be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp313-cp313-manylinux_2_39_x86_64.whl

Download URL rsloop-0.1.53-cp313-cp313-manylinux_2_39_x86_64.whl
Size 2.7 MB
Tags CPython 3.13 Linux glibc 2.39+ x86-64
SHA-256 checksum
How to use checksums
69e92340e463cd275caed6ddf10d507ad159b6aba7fc1e2067c1cba15e08a4a6
BLAKE2b-256 checksum
How to use checksums
a51aeffc81c99f2c94216bdb71fc20ab0e6e55c89094fa39fef890db25f69a79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp313-cp313-manylinux_2_39_aarch64.whl

Download URL rsloop-0.1.53-cp313-cp313-manylinux_2_39_aarch64.whl
Size 2.5 MB
Tags CPython 3.13 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
d3c7a4f5226ee4d5096b7819033bd45add907ba9fdf58ad1791f9a9c24fe2b9f
BLAKE2b-256 checksum
How to use checksums
81bcdc4e923bf2bd8cc9375e49f6e39133e7baee8c8f60d71cec7108a1b223ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp313-cp313-macosx_13_0_x86_64.whl

Download URL rsloop-0.1.53-cp313-cp313-macosx_13_0_x86_64.whl
Size 2.6 MB
Tags CPython 3.13 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
788cdf82038ae72dba29c478da34552303b6a96e2ebf1e756078a0cc0ac2e0bd
BLAKE2b-256 checksum
How to use checksums
380c6d935152f997717f5209ea48fd60a2c56b4f9f44f241980acfe173b579e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp313-cp313-macosx_13_0_arm64.whl

Download URL rsloop-0.1.53-cp313-cp313-macosx_13_0_arm64.whl
Size 2.4 MB
Tags CPython 3.13 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
14c0099dbf57671f308c9b03a71bbffa3e6bb153abe87f5d3f195788a29463c1
BLAKE2b-256 checksum
How to use checksums
33f212b2d6b8480979ef45442e7b96e1a518db1e5eaf61103478d36742234374
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp312-cp312-win_arm64.whl

Download URL rsloop-0.1.53-cp312-cp312-win_arm64.whl
Size 2.3 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
872f7a5e43efd00d7fb1f85ec950f4024f6a89b45381c10fef21846cf4aae114
BLAKE2b-256 checksum
How to use checksums
3bd9f775af307f9cabb764b2231782b77d53415d85a15692fed3e0a111f74fba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp312-cp312-win_amd64.whl

Download URL rsloop-0.1.53-cp312-cp312-win_amd64.whl
Size 2.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
0cbd4139ae7d467862b61c988d089b48550df910f837c868753c1668394ce541
BLAKE2b-256 checksum
How to use checksums
6cb674d0369efb8bf9122e9796e22fe9db0a218af282082b79ba8ed7557727ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp312-cp312-manylinux_2_39_x86_64.whl

Download URL rsloop-0.1.53-cp312-cp312-manylinux_2_39_x86_64.whl
Size 2.6 MB
Tags CPython 3.12 Linux glibc 2.39+ x86-64
SHA-256 checksum
How to use checksums
3cc942670fc318b875f0cb1a285031af88ee6d5c9f6e9f915226edc52a0a1a64
BLAKE2b-256 checksum
How to use checksums
2310e422cd8c8711431eb902c89903e6c95f990e93e0998ac5a49afdc224f41d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp312-cp312-manylinux_2_39_aarch64.whl

Download URL rsloop-0.1.53-cp312-cp312-manylinux_2_39_aarch64.whl
Size 2.5 MB
Tags CPython 3.12 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
b34b536864edff9d6e1e67e03679d907aa29e539cb506ec4bfa822191865b50f
BLAKE2b-256 checksum
How to use checksums
2ad0da2e616040d1087449e47ab8209344ac7ebbcc627092fa0ab79e9ef26a82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp312-cp312-macosx_13_0_x86_64.whl

Download URL rsloop-0.1.53-cp312-cp312-macosx_13_0_x86_64.whl
Size 2.6 MB
Tags CPython 3.12 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
8426c0a883dabb1d78e5f9cf81c1b25097c503c1749378b36ba6f046df676012
BLAKE2b-256 checksum
How to use checksums
891547ca8e48561e03cc836c8c05e65e9fd6a916779fa73b20347da254a49b78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp312-cp312-macosx_13_0_arm64.whl

Download URL rsloop-0.1.53-cp312-cp312-macosx_13_0_arm64.whl
Size 2.4 MB
Tags CPython 3.12 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
548050ffaf6061bf6fc43fd915ff1df2f3f11dd133888a363ec52b54f966ff9d
BLAKE2b-256 checksum
How to use checksums
d39a7b5c90bfb5c27336efaf5cfd03d655a7c27fe3296d791eb5b1194ae4ee23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp311-cp311-win_arm64.whl

Download URL rsloop-0.1.53-cp311-cp311-win_arm64.whl
Size 2.3 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
ddf88d97bfc5f2c8ad8c190ffd8e1b4566f7b540f7b4e356f7170a7bc6e223ea
BLAKE2b-256 checksum
How to use checksums
a4069aa47c02dbebaacf941133cadeabe0c5b4a1b3482f076d3eae90d963cfd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp311-cp311-win_amd64.whl

Download URL rsloop-0.1.53-cp311-cp311-win_amd64.whl
Size 2.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
365b812066faf3e755fea110521cc496aaf77a2537bf2fe3ff00468461ae4e46
BLAKE2b-256 checksum
How to use checksums
87b0da61331085876c5e409467ab5f464bf1cf0ee17c9ec0f16381de1c1106ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp311-cp311-manylinux_2_39_x86_64.whl

Download URL rsloop-0.1.53-cp311-cp311-manylinux_2_39_x86_64.whl
Size 2.7 MB
Tags CPython 3.11 Linux glibc 2.39+ x86-64
SHA-256 checksum
How to use checksums
3cf54d0be235ad3e5110d4256cffc9a8a9979ef6f00da2d4f9daad6f5b18e75a
BLAKE2b-256 checksum
How to use checksums
e7b27d2f0630fd7e66b8a488df586685123b39a3d6e2a1ca88dadecb453a0adb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp311-cp311-manylinux_2_39_aarch64.whl

Download URL rsloop-0.1.53-cp311-cp311-manylinux_2_39_aarch64.whl
Size 2.5 MB
Tags CPython 3.11 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
321b12c92d95768713596c8e8cbc731be31d9404cdde3c41eee7342e053ca988
BLAKE2b-256 checksum
How to use checksums
553b8ddce906a2a7248c7bdec2b574850069d9e4afc0a21cefaca2f4c90e8005
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp311-cp311-macosx_13_0_x86_64.whl

Download URL rsloop-0.1.53-cp311-cp311-macosx_13_0_x86_64.whl
Size 2.6 MB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
f41aa81f58d240933203005f4f936795e96fe78c396f683a9f62422e0aec4e3a
BLAKE2b-256 checksum
How to use checksums
9b05c9e1d4f7568973a76e19f29b43df6443fb041478b35d55ea76ff4de9873b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp311-cp311-macosx_13_0_arm64.whl

Download URL rsloop-0.1.53-cp311-cp311-macosx_13_0_arm64.whl
Size 2.5 MB
Tags CPython 3.11 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
f68b9d6413ff4c929b44ff0ccd97a32729de6f17d6f15628647bd01c3375fe72
BLAKE2b-256 checksum
How to use checksums
7fdb0fd423bfe7f0932b2c776d55f0bacf5ce45bbbea5782ca24c7fab4278cea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp310-cp310-win_amd64.whl

Download URL rsloop-0.1.53-cp310-cp310-win_amd64.whl
Size 2.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
e6fe227f969026b85edd1506372882357496d263c2f90ae7110a9d4e0fd569eb
BLAKE2b-256 checksum
How to use checksums
f350a45b6bdc422cdcced3954d8d78cec6a5f69dd29f9619a915a34bb37ccb78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp310-cp310-manylinux_2_39_x86_64.whl

Download URL rsloop-0.1.53-cp310-cp310-manylinux_2_39_x86_64.whl
Size 2.7 MB
Tags CPython 3.10 Linux glibc 2.39+ x86-64
SHA-256 checksum
How to use checksums
5359e231d92e868a939f113749ebbfb46f14c5ba9c85409dffa5e42d1fbd81d7
BLAKE2b-256 checksum
How to use checksums
13e5fd7a234f6ca2a37fce283fcdba481babfc9b3e670de73df6c712900547fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp310-cp310-manylinux_2_39_aarch64.whl

Download URL rsloop-0.1.53-cp310-cp310-manylinux_2_39_aarch64.whl
Size 2.5 MB
Tags CPython 3.10 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
2c2011013cccf1d987b31994aba71b78de40d37cc88dfec7005bc65afe85c497
BLAKE2b-256 checksum
How to use checksums
7e46aa35116738409ead6f9dfa34860108bcd141a8b8991e4a1b69c34c2e28ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp310-cp310-macosx_13_0_x86_64.whl

Download URL rsloop-0.1.53-cp310-cp310-macosx_13_0_x86_64.whl
Size 2.6 MB
Tags CPython 3.10 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
8dccc4048ed1ca11a0cfb17543b6db1992e899dbe9233fdb73be58dc6d6abfc0
BLAKE2b-256 checksum
How to use checksums
207ac805522c5478efb3e8e99872cd0db0acfd901e2443a4091f7ed30df2fddd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release files / rsloop-0.1.53-cp310-cp310-macosx_13_0_arm64.whl

Download URL rsloop-0.1.53-cp310-cp310-macosx_13_0_arm64.whl
Size 2.5 MB
Tags CPython 3.10 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
fcc254066613b1f5769b53108286dbda933485713ed133159af6edd0efe9a1d4
BLAKE2b-256 checksum
How to use checksums
069ee924f520f3cc2e5a3e9d532d69b5e3086176ab7d7ee12110874386bec13a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.53 This release

41 release files

0.1.9

38 release files

0.1.8

38 release files

0.1.7

38 release files

0.1.6

38 release files

0.1.5

38 release files

0.1.4

38 release files

0.1.3

38 release files

0.1.2

25 release files

0.1.1

17 release files

0.1.0

9 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page