Skip to main content

An event loop for asyncio written in Rust

Project description

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. On Linux, low-level fd watchers plus plain TCP / Unix socket readiness, socket reads, and non-TLS server accepts are driven from that thread through compio with io_uring support enabled. Python callbacks, tasks, and coroutines still 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.new_event_loop(), and rsloop.run(...)

Repository metadata currently targets Python >=3.8. The packaged project now supports the core event-loop surface on Linux, macOS, and Windows, including Windows pipe transports and subprocess workflows.

Install

From PyPI:

pip install rsloop

With uv:

uv add rsloop

Usage

Simple entry point:

import rsloop

async def main():
    ...

rsloop.run(main())

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.8 can accept an rsloop.Loop instance, matching the behavior exercised by tests/test_run.py.

Verified Surface Area

The current codebase implements these user-facing areas.

Loop lifecycle and scheduling:

  • run_forever, run_until_complete, stop, close
  • time, is_running, is_closed
  • get_debug, set_debug
  • call_soon, call_soon_threadsafe, call_later, call_at
  • returned Handle and TimerHandle objects with cancel() / cancelled()

Tasks, futures, and execution helpers:

  • create_future, create_task
  • set_task_factory, get_task_factory
  • set_exception_handler, get_exception_handler, call_exception_handler, default_exception_handler
  • set_default_executor, run_in_executor
  • shutdown_asyncgens, shutdown_default_executor
  • callback execution under captured contextvars.Context
  • asyncio.get_running_loop() support while running on rsloop
  • rsloop.run(...) helper, with asyncio.run(..., loop_factory=...) integration on Python 3.12+

I/O and networking:

  • add_reader, remove_reader, add_writer, remove_writer
  • sock_recv, sock_recv_into, sock_sendall, sock_accept, sock_connect
  • getaddrinfo, getnameinfo
  • create_server, create_connection
  • create_unix_server, create_unix_connection
  • connect_accepted_socket
  • returned Server objects with close(), is_serving(), get_loop(), and sockets()
  • returned StreamTransport objects with write(), writelines(), close(), abort(), is_closing(), write_eof(), can_write_eof(), get_extra_info(), get_protocol(), set_protocol(), pause_reading(), resume_reading(), is_reading()

Pipes, subprocesses, and signals:

  • connect_read_pipe, connect_write_pipe
  • subprocess_exec, subprocess_shell
  • returned ProcessTransport and ProcessPipeTransport objects
  • higher-level compatibility with asyncio.create_subprocess_exec() and asyncio.create_subprocess_shell()
  • Unix subprocess options including cwd, env, executable, pass_fds, start_new_session, process_group, user, group, extra_groups, umask, and restore_signals
  • add_signal_handler, remove_signal_handler

Profiling:

  • profile(...), profiler_running(), start_profiler(), stop_profiler()

Fast Streams

Importing rsloop patches asyncio.open_connection() and asyncio.start_server() by default.

That import-time behavior is controlled by RSLOOP_USE_FAST_STREAMS and can be disabled with:

export RSLOOP_USE_FAST_STREAMS=0

The native fast-stream path is used only when:

  • the running loop is an rsloop.Loop
  • ssl is unset or None

Otherwise rsloop falls back to the stdlib asyncio.streams helpers.

The implementation lives in src/fast_streams.rs and is backed by the lower level transport code in src/stream_transport.rs.

Runtime Model

Today the runtime is hybrid rather than fully single-threaded:

  • the loop coordination thread is always the central scheduler
  • on Linux, add_reader / add_writer, plain socket reads, and non-TLS socket accept loops use the compio runtime on that thread
  • some transport paths still fall back to helper threads, especially TLS I/O, TLS server accept, and parts of the legacy transport write path

That means the codebase has started the move toward a single-runtime-thread I/O model, but has not finished eliminating every helper thread yet.

Current Limitations

These gaps are visible in the current implementation.

  • TLS uses a rustls backend with a narrower compatibility surface than CPython's OpenSSL-backed ssl module. In particular, encrypted private keys are not supported yet, and the fast-stream monkeypatch still falls back to stdlib helpers whenever ssl is enabled. TLS transport internals also still use helper-thread paths instead of the newer runtime-thread compio socket path.
  • Subprocess support still has one notable gap: preexec_fn remains unsupported because running arbitrary Python between fork() and exec() is unsafe in this runtime model.
  • Unix-specific APIs remain Unix-specific: create_unix_server, create_unix_connection, add_signal_handler, remove_signal_handler.
  • Platform-specific limitations still apply: Unix socket APIs and Unix signal handlers remain Unix-only, and several subprocess options such as pass_fds, user, group, and umask are still specific to Unix process spawning.
  • The transport runtime model is still in transition: plain socket reads and non-TLS accepts now run on the loop runtime thread on Linux, but writes and TLS-heavy paths are not fully collapsed onto that same single-threaded I/O path yet.

Build

Quick check:

cargo check

Release build and editable install:

cargo build --release
uv run --with maturin maturin develop --release

Build release wheels into dist/wheels:

scripts/build-wheels.sh

scripts/build-wheels.sh currently defaults to CPython 3.8 3.9 3.10 3.11 3.12 3.13 3.14 plus free-threaded 3.14t, and uses uv python install / uv python find to locate interpreters.

Profiling

Profiling is behind the Cargo feature profiler and is disabled by default. Build or install with that feature first:

cargo build --release --features profiler
uv run --with maturin maturin develop --release --features profiler

Then wrap the code you want to inspect:

import rsloop

with rsloop.profile():
    rsloop.run(main())

Or manage the session manually:

import rsloop

rsloop.start_profiler()
try:
    rsloop.run(main())
finally:
    rsloop.stop_profiler()

This starts a Tracy client inside the process. Build a release binary, open tracy-profiler.exe, then connect to the running process while the profiled code is executing.

The current Tracy feature set is aimed at local Windows profiling: enable, only-localhost, sampling, and flush-on-exit. The last one helps short-lived runs flush data before exit.

If the extension was built without --features profiler, profile() and start_profiler() raise a runtime error.

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:

Benchmark

uv run --with maturin maturin develop --release
uv run --with uvloop python benchmarks/compare_event_loops.py

An example output from that script on Linux with CPython 3.14.0:

callbacks (200,000 ops)
loop           median_s       best_s      ops_per_s   vs_fastest
rsloop         0.041608     0.040585      4,806,807        1.00x
uvloop         0.087539     0.086690      2,284,707        2.10x
asyncio        0.229563     0.221348        871,222        5.52x

tasks (50,000 ops)
loop           median_s       best_s      ops_per_s   vs_fastest
uvloop         0.084425     0.083497        592,239        1.00x
rsloop         0.091845     0.090982        544,397        1.09x
asyncio        0.138782     0.137716        360,276        1.64x

tcp_streams (5,000 ops)
loop           median_s       best_s      ops_per_s   vs_fastest
rsloop         0.119483     0.118451         41,847        1.00x
uvloop         0.119582     0.116446         41,812        1.00x
asyncio        0.138408     0.134438         36,125        1.16x

See benchmarks/README.md for workload details and extra flags, and demo/README.md for the FastAPI loop comparison demo.

Acknowledgements

rsloop builds on the Python asyncio model and is implemented with PyO3 on the Rust side. The runtime and I/O work in the current implementation rely in part on compio. On Windows, parts of the runtime also rely on vibeio.

License

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

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

rsloop-0.1.13.tar.gz (316.3 kB view details)

Uploaded Source

Built Distributions

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

rsloop-0.1.13-cp314-cp314t-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows ARM64

rsloop-0.1.13-cp314-cp314t-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

rsloop-0.1.13-cp314-cp314t-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ x86-64

rsloop-0.1.13-cp314-cp314t-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

rsloop-0.1.13-cp314-cp314t-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rsloop-0.1.13-cp314-cp314t-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

rsloop-0.1.13-cp314-cp314-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows ARM64

rsloop-0.1.13-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

rsloop-0.1.13-cp314-cp314-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

rsloop-0.1.13-cp314-cp314-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

rsloop-0.1.13-cp314-cp314-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rsloop-0.1.13-cp314-cp314-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rsloop-0.1.13-cp313-cp313-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows ARM64

rsloop-0.1.13-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

rsloop-0.1.13-cp313-cp313-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

rsloop-0.1.13-cp313-cp313-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

rsloop-0.1.13-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rsloop-0.1.13-cp313-cp313-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rsloop-0.1.13-cp312-cp312-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows ARM64

rsloop-0.1.13-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

rsloop-0.1.13-cp312-cp312-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

rsloop-0.1.13-cp312-cp312-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

rsloop-0.1.13-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rsloop-0.1.13-cp312-cp312-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rsloop-0.1.13-cp311-cp311-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows ARM64

rsloop-0.1.13-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

rsloop-0.1.13-cp311-cp311-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

rsloop-0.1.13-cp311-cp311-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

rsloop-0.1.13-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rsloop-0.1.13-cp311-cp311-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rsloop-0.1.13-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

rsloop-0.1.13-cp310-cp310-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

rsloop-0.1.13-cp310-cp310-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

rsloop-0.1.13-cp310-cp310-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rsloop-0.1.13-cp310-cp310-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

rsloop-0.1.13-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

rsloop-0.1.13-cp39-cp39-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

rsloop-0.1.13-cp39-cp39-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

rsloop-0.1.13-cp39-cp39-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rsloop-0.1.13-cp39-cp39-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

rsloop-0.1.13-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

rsloop-0.1.13-cp38-cp38-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

rsloop-0.1.13-cp38-cp38-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

rsloop-0.1.13-cp38-cp38-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.13-cp38-cp38-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file rsloop-0.1.13.tar.gz.

File metadata

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

File hashes

Hashes for rsloop-0.1.13.tar.gz
Algorithm Hash digest
SHA256 e2e5a6e2c5f848f46d0a45181ac10ea57b3ebef03069cf92b8878c844fb99665
MD5 6b261c616f95b9e7c01af95a07463218
BLAKE2b-256 d9daee3107e8f35b0b25c5a3fb9eadb4dbc77bd516c94573561876ed3718d4a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13.tar.gz:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 2.2 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 rsloop-0.1.13-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d9ad211e2ea50557c9f963f5ec53a936d1b2ff20859515bfe68c31b1a475208d
MD5 1a5cb957b19c31654b32d2fc2bc4d515
BLAKE2b-256 de9c181b5fb4ee637bc42d9956af2707b8f17e6d03d180d86c19caa9901e1dc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp314-cp314t-win_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.2 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 rsloop-0.1.13-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0521e033e19d399c8e79d764b80a94d1b25573782e43d199827de41c35eb06f0
MD5 54c5e0bf237905a9f27d25d3bd6adf57
BLAKE2b-256 3e63e2f1398b0c465bc8fb67af7901a98d5552630b7de3d88f62f5f293538fe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp314-cp314t-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 73eaacf06071994af92b8d66c5de17b4fd50b1a2902b3a63cbec799dd7339529
MD5 fd6f24d857abb6aeaab596558509f1e1
BLAKE2b-256 a44739fc0f78bf2ace70635b74a5593d5ad0f1716546d5283dd9935871fbc9e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp314-cp314t-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp314-cp314t-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 f1c338254250711152cdd1eaa461f5aa0cc08b5d6f5d6ce7685fab7263345cd1
MD5 945dea288249e6066953711024461566
BLAKE2b-256 7b860beb474823e45bc1068d58af247395602ed35df258fa906b62b26325d750

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp314-cp314t-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0aff50d9ee1a9865e4fb6579c0e0f215ed45bcf5df9721cd59e90c4ae76693c4
MD5 811f62426796a5188a788e305251d882
BLAKE2b-256 44e41e549703ad6291101cb55b6daf75e8e607abb1a797f135a5070b3a85f962

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb1ca9a0ab956103c08041c7e646326ade344b0f5e0682714754e356dea009e5
MD5 41cf803288e0d9b3830ea9bf196d453e
BLAKE2b-256 6a84c9f8683ec64f82ffe9f779896c816ae5a710b21d7e1d79d8b7077fbacee6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rsloop-0.1.13-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4b6cb77c26d6522745738fbc43fbb8f79406b7889e5a76c2460b4421a94e6fea
MD5 a3f80c8e7bda1560e2310925dd259304
BLAKE2b-256 303212d105366f4445ee3d37f00b7eae9c46f472e4b6923f55558d121c4958f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp314-cp314-win_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rsloop-0.1.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3273257264cbe50e84a397674dac67f04290c66d344d88c7befae2c512b0e84f
MD5 a4ab51166026e22d5d7d2fe53122c3e4
BLAKE2b-256 feaa4eae2211f2bc2acad7c2ecc71e86ff16783e4c7c1a946a1b48a59df77a29

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp314-cp314-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 0252b3edc4429b39f90fa36a622d3c999c940a12e8d79b65e53fba2de016b0aa
MD5 f29acbd6ff7eaf07f9ee1b4a92d41ba5
BLAKE2b-256 79c97a454537bac507632de9098057c4c4d36ee5dab8a3c8bf19613e16332530

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp314-cp314-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp314-cp314-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 76a0bed86c9bd1be47918c06a059040b137198ba9ca5223249beefe8e9b37088
MD5 fafe89b360030fa0362fc22e178c7f75
BLAKE2b-256 1c1065696237dc5a9294dd959a3799e90953b7db6ec0e2dae5d80ac0a5a52be2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp314-cp314-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99584a8722491e2ba8d6cb1982c6e5b369529b6b8edf04da57c968dcf566bced
MD5 f97a3ccbcc6225c2d984a90b95080e82
BLAKE2b-256 f6818b7176dbf34c895fc62716ba6f7cd44effb783607c662028867489506aaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ad336ffaa52c10b1162c56f1dbae4910882714956b1c5373457ef4667dc3417
MD5 2a15f7d00af0adb28a7c0f6370cb1768
BLAKE2b-256 55f68b6737bdcf847e2493361f38b771e6837982441188495bb22d022c667890

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rsloop-0.1.13-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d025d601606390851ea8077edda0cd6139e05bd00a3ca03eb20b714294ec9f56
MD5 78281234b28cf077ae93f81d46f3d912
BLAKE2b-256 2b51308072ae16867a7813d7bd2fecaa043a3d6bcb02cd3baf281e7455a6b157

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp313-cp313-win_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rsloop-0.1.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3a7dbb2e13a2066171600586d0290903b1110cc652a1dcd17afdfd609dbc4913
MD5 09a6dc1458a3e53b54ce366b91849e24
BLAKE2b-256 3a68c963a9210dc990691aefbb1ccf4c771848c94e13c8ae74e1e6250eb360db

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp313-cp313-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 717bbfb0b9f553d21d90f495468ad6859e5cf8c998e283ac9ffb946a3127f0e8
MD5 19bc20e34763ccd47a78b04f1304b2a4
BLAKE2b-256 518359bff4436702bb0cfd128a9828f8e4cd598de9c948f528f3ad9db3b0775e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp313-cp313-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp313-cp313-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b9c436961005d974f40b279dc996dbcd655df80355fdc0f5bef1b0c68d8ebdd6
MD5 bf49d71ce8412952b896a3d67e9cf80a
BLAKE2b-256 bd675244d867112373603c3c8a830f23b2eab97621b2afdf50a6e50997a1d8e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp313-cp313-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fae68a7989cc1051287a61b1c52599c64b808253b7b7a59c74119610d675557d
MD5 99c7e0f168ff939934d0eceb4a0b9fdd
BLAKE2b-256 0c90324b0b15f60d901e7c51aa3d61ee2e0be5aa7879f1a1ff2c0c86e2dfb719

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 11df694621e41757736cae6f5a81883ac7696a361a5c341bab035e350bf7aea4
MD5 d10b8cc730dffe85771d597fcb873aa8
BLAKE2b-256 aee211db0cbe909e1590a76bb5b9d7dc1b02d061f7aa6e2c81cfcca5abe52f51

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rsloop-0.1.13-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 db74294fb4743bc93760d459192130fde490ed2fd51646bb708a29e4d7e4c26a
MD5 3cfda2f826c2a69d6c4f6922386c108d
BLAKE2b-256 a3537788c5866545610552b6583bf4ead7857bde988840b088321d9129eecc7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp312-cp312-win_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rsloop-0.1.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 03560a389f93c0f03069b8715b2a2c232824374a1d07cde2ddc0d0942277510f
MD5 5a389ac50496ff07c25639bc0ba4fa4c
BLAKE2b-256 0dec0c8f641815bc1cd0f0a95fe9fdb40123cb9a1a70af9c650a4ceb55380d76

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp312-cp312-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 4c01b52ec4818586d415173628956a48c2fa0e334b52ddb407042e488b62839a
MD5 df2067915f06e1be1913cdf874a5adb9
BLAKE2b-256 55f6fcccf8553ea46bcc9f7b10e8dc7e5104c6d789dba832d9c1a75a6327f27e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp312-cp312-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp312-cp312-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 1040efa83cb1c3c0d0263a233c2b5a770977917d64249c2553ff0de29092b5e5
MD5 fd18e86fc279e1b6b450193e797696ce
BLAKE2b-256 9c25d9c40431837cb20c447638c72833dca7840bd2fa173fbcd374bbff4ad860

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp312-cp312-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54af1a428ba5e09837d889c4851b7f331384119323b4d3557568711aabe333de
MD5 c6a8da54f8b7d8df603f3635114ad0e9
BLAKE2b-256 480926f05fbed2b4aeb8cc4077ff548831fd299a01db52002220c7b96a5af5bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fced93623d8cef70ea8e3f7f3da4434bdbd4af256b5627283de32fcd4f1ee519
MD5 b5edbdf0d9a85901793401101067547f
BLAKE2b-256 15405a9e1523fce0cf360127f959092116f72d53ec04f2375f34c42424156e87

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rsloop-0.1.13-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 bd20b22c44fa1d2b9c88a6aca3494369777735596957a48ff8485000bb4ba83a
MD5 35ea4c31315b0089d8586fd2b5f7319c
BLAKE2b-256 f4b000bcca65df86df5ae97b30fabf9fbc2850d877522b6a3f8de82e46694f5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp311-cp311-win_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rsloop-0.1.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c2a8cd51b8d62ecdf968d436377a324e5b38226dbcacc796bfe6c48ebe2d7041
MD5 757873e62889a18266f0d18367e0dc28
BLAKE2b-256 ca07e8e8a10fa88f2a2a4302037648446b07f5e4a43b746efe87772c026c9a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp311-cp311-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a031d62c63d5f624b3203e68a28c92e0b9d3603c3e8674b9cc70effaa1b8130c
MD5 8f978e3d28c2d44a49ce5cdbe2aff25c
BLAKE2b-256 3591439e8c1a0301f49e6ce6bfc11dfbdd1aad9cda6d109bec72e41c5c6667f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp311-cp311-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp311-cp311-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e94ecf2b911b528c9d4d0a08cc45470639c53c93b5aef072b1d5b31d2ba9f560
MD5 3151bacbfc93807daccea7b86090a055
BLAKE2b-256 854cc0e6e1243fc296b04510ea6eabdf42048651b3ea704dceaa08cb616dbaad

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp311-cp311-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bbb03337e17b970c6051049388e38bc9fa66722b9539f641d0380f334400ca3
MD5 3c89c6cba34be496a9a4f3929da7b6cf
BLAKE2b-256 e9de436435d86638ae5b2374d0fd22986e2f1631855f7fe9ba3b198e3952e496

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c99499edc1169241ee6f203be68b64d711eed0726b6d35d0f4f4055e4df0e2be
MD5 277ccfc0ca5fc52931c091e8c0addd76
BLAKE2b-256 60584f811abfba1d22043dad8324daab4e36d03bee7aae7eaa54ef9f3427869f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rsloop-0.1.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 26b89111c968e61d70170a6a10b80f2c9f11b5d3734aa22ec932a44be7b2f73a
MD5 353cd32f0dcade697381dd2ed7784bb0
BLAKE2b-256 d09d4f311abdf297ce8c152a0e0316e16b398f50ad5a1d9c23280aff287937d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp310-cp310-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 690ccc10c1c25fd4928ce110b7b846a7d3116f6ccbe234fc5c7ae5ac3a699658
MD5 840e52c6d0dbd44f7d20d83fafeca439
BLAKE2b-256 af5dc428cc4f0215e96b231ff4df30a7958636e1feed5da0d24eb46e7ffccf17

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp310-cp310-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp310-cp310-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 2b2ab10539d82bbe2269850055a2a631532c1dbfebbd9f6e354c6c714ea4ed63
MD5 74293cbb53de6bef5a296dce4e2c76af
BLAKE2b-256 ee1051780237bb64209334e295a42cdf6cfac63f2ea04471757be9e29db3c52b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp310-cp310-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8907cf4262fc39bec4f5d23b219ced1b474a97bd9ff764186c91ee7d6885737
MD5 9fa3a71b2be3f25a0fe2bf7fd1d1fc7f
BLAKE2b-256 dd9981eeea2f9ad60b3c07a18af8b48128c1705de1997e9e1b8bdc77390ef269

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf0311df9c73becd338934b6fe116bde0102347d4a92033e22d9e84a5fadbeea
MD5 02691f53f702da4ae661362ff8c66288
BLAKE2b-256 d13e690e6bc475255ba9ad6bf3b9e21ef72f9e5221e508b1466087e14722d3fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rsloop-0.1.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dc42f33d88b4a759a3112eb2c5119554f094cda9b79dc9ee1f30878cd5aaf0cb
MD5 0ce86103f513ce9668464f1f5995cda7
BLAKE2b-256 88078abc02336540ff7aacdfbbd0afd2c7a51f8bda98f1a199351af46ac855a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp39-cp39-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 5bf022fe6da7e194420d438f84adb29e96886b9523c86461eb88b2fd93c5f495
MD5 026f5f04ebad821029a8cb1f212d9e59
BLAKE2b-256 1c8322f1e396215834ac7ccd0ddefcf762d1cedfd8213201b0aea4c53614be4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp39-cp39-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp39-cp39-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 7e3edea6438f3f8a8d0b747afcdf2a6e7d91f934c16661a0ec5e984c4fa4dedd
MD5 0d0fe571b28be0c022d691c1ce96086c
BLAKE2b-256 429fccb9b4fa84b80c39bb6cc08726363bb589e7402cdc6a6eeab10bd6891318

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp39-cp39-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39b979145192981deeeaf00d6dec865f1bc1385adc2596971885513a0d86459d
MD5 c422186dd8281944f7be2c00f4d65022
BLAKE2b-256 48dffb08a4ba4e0bd2ccb349a6e64894ae6302bec68e50e5487a17c0255a26ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f59ed72acdbfa2858d3adf92bec04e555eab3e2e61c2049ccdfd908f5e48d461
MD5 e9c4229319784e06735f2f4d96854e9c
BLAKE2b-256 f55315e5cb45096ada92779df06c76943df1db47d036f632b4c58eb71bf75271

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.13-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rsloop-0.1.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7ee1d0072360d05e26b6671c85d57f673b7e3d3ec125184e0c8dc8dd448e9934
MD5 65674a3f7b04579cade9e3b9bb568780
BLAKE2b-256 256c1a27638d0cb02187aa6f94c81074ea2b19a4000217ac180837cf8a7464b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp38-cp38-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp38-cp38-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 d601607e6b7264275f911f7caa5d1b8a0311f2862b95a783cf6bcd47de71ed74
MD5 0bf7e10189e288f96b81ff278ed4b068
BLAKE2b-256 5b90818a4d9082d9ba8759dd01d937f2625694c087520552a9049a9e2663eb61

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp38-cp38-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp38-cp38-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 352cc746ae766cbcb8fbc1c37e878fc584569a19cd193729c4308f077c4704be
MD5 77b9914d1e260d107443e9f7ed310cc8
BLAKE2b-256 7ee9bb8f21276951c52eade4963068625bf4c3de542488fb82b769c19ea7dafa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp38-cp38-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8723432a7a7592359151d9375ad8bad70af3f11ef1300cb281d1958df555f9af
MD5 a853b65c79bf172d849adfa3bf1cc01a
BLAKE2b-256 23a307e4d40d5e0e7c829139bef3f19219496850eff18752110429b32ca30085

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rsloop-0.1.13-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.13-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e9873207c7a551bb5dba3de3b1b4ddc8ed79fe3b7ea1bb39c317e73806cdc2d
MD5 f421eab56f7e6dedf13f9749f1cb98c6
BLAKE2b-256 c0ad3c59fcc735d4a1c74145dc2c8d9ebd8702cabc112f8878b2f958ea09eda7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.13-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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