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. 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.EventLoopPolicy, rsloop.new_event_loop(), rsloop.run(...), rsloop.install(), and rsloop.uninstall()

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.

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

Custom Async Rust Extensions

rsloop now exposes a small Rust interop API for downstream PyO3 extensions. That lets you write your own async Rust code, return it to Python as an awaitable, and run it under the active rsloop event loop.

The public entry point is rsloop::rust_async:

  • get_current_locals(...)
  • future_into_py(...)
  • future_into_py_with_locals(...)
  • local_future_into_py(...)
  • local_future_into_py_with_locals(...)
  • re-exports of TaskLocals and into_future_with_locals(...)

See examples/rust/README.md for a complete extension example built with maturin.

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 the Tracy desktop profiler, then connect to the running process while the profiled code is executing.

Release wheels do not include profiler support. Build locally with --features profiler to enable it. The Tracy feature set is aimed at local profiling: enable, only-localhost, and sampling.

For very short-lived runs you can force the process to block on exit until a server has connected and drained all data by setting TRACY_NO_EXIT=1 in the environment.

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 macOS (arm64) with CPython 3.14:

callbacks (200,000 ops)
loop           median_s       best_s      ops_per_s     peak_rss   vs_fastest
rsloop         0.033083     0.032710      6,045,401     67.5 MiB        1.00x
uvloop         0.040958     0.040721      4,883,026     72.8 MiB        1.24x
asyncio        0.082233     0.082093      2,432,114     65.3 MiB        2.49x

tasks (50,000 ops)
loop           median_s       best_s      ops_per_s     peak_rss   vs_fastest
rsloop         0.063593     0.063286        786,247     37.6 MiB        1.00x
uvloop         0.069614     0.069420        718,251     38.4 MiB        1.09x
asyncio        0.108114     0.107502        462,473     36.1 MiB        1.70x

tcp_streams (5,000 ops)
loop           median_s       best_s      ops_per_s     peak_rss   vs_fastest
rsloop         0.090940     0.083355         54,981     32.2 MiB        1.00x
uvloop         0.133182     0.127404         37,543     31.5 MiB        1.46x
asyncio        0.302337     0.299813         16,538     29.6 MiB        3.32x

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.

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.25.tar.gz (686.1 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.25-cp314-cp314t-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

rsloop-0.1.25-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.25-cp314-cp314t-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

rsloop-0.1.25-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.25-cp314-cp314-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

rsloop-0.1.25-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.25-cp313-cp313-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

rsloop-0.1.25-cp312-cp312-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

rsloop-0.1.25-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.25-cp312-cp312-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

rsloop-0.1.25-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.25-cp311-cp311-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

rsloop-0.1.25-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.25-cp310-cp310-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

rsloop-0.1.25-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.25-cp39-cp39-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

rsloop-0.1.25-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.25-cp38-cp38-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.25-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.25.tar.gz.

File metadata

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

File hashes

Hashes for rsloop-0.1.25.tar.gz
Algorithm Hash digest
SHA256 68d6fbeb61060ce006c00e18598c8f9eefb40bd8f12c8b8cc6e2507c48282bdb
MD5 6d4cb22a6955f74a35659431aaca2f96
BLAKE2b-256 7bf973077f4863d9741e64b179b5f06fe2e1ba0c17541cb4736724f078c9ccb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25.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.25-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.25-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.12

File hashes

Hashes for rsloop-0.1.25-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3e06059087511307dc7506185297df9b9cc91870b8fae772ab7eb8660d442b91
MD5 a4d9c73805cd36a0b9349e5ca3989e20
BLAKE2b-256 d68a2ca860c2061c04e6b87fe767e19f5ee32201ff4e4dfdc6ae1aaf5c9bb21e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.25-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.12

File hashes

Hashes for rsloop-0.1.25-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3f910bfed036bf18f9553439f28c83aa02ad2a7008b821e6b253a3afd1ba266d
MD5 eea710ffd6df2846f98b0a52739838e1
BLAKE2b-256 a9bc945b530e5a6659492a4b59aa91100d646386734caef9bc78ca01edbc424a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp314-cp314t-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 780f9f7fee12a5d617759f5a7c476705bb3846956f6dbdea02cbcd040a8bcac8
MD5 08d9f18def94fa658467fba0aab85173
BLAKE2b-256 2ea603ba8e86512f71ded5df1c482bcd3afebf47963b4fb03747259c7f93b1ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp314-cp314t-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 c09ea1fafbdb1bdb8f490d055f5032efe4a9bd62c22bb0c7e62e8f9ddcf4574b
MD5 1a1f40e3b2c1cabaebae634b508eddf1
BLAKE2b-256 ea239684e418ab0eb11ebe4b2b6c5037cad8ab52b82ee9cfe2790c5280622b45

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47c54d42bec77cbdf50e7099251122b6fbaf0f134e996038cc924983358a44f2
MD5 3d73cc41ccfa81ebc620e0bf996f4ec5
BLAKE2b-256 043a98c98c84288c4856121748effaf94086f94b9925f45d84dae7885d613537

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d31841fa73d0f5013bd8ca3b74315565c42fdf23277279f45144052814c5445a
MD5 6aad0aee4a9c5c74aeebd05375e3e456
BLAKE2b-256 39f59a80de1669481ae832191722ae334f7cc9d3b8ceb4038162de6c4f77d79d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.25-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.12

File hashes

Hashes for rsloop-0.1.25-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 95ab6051d2a84bdc9b38e346d1b79de522a2bb8d22e9094e2dadf95fd7f0b723
MD5 5da3073255105f0e3a66e54c5e02adb2
BLAKE2b-256 a68a292b005d7dc1c998c5b6bc60d1eab9518e4979a8d3d4055416c4ccd16f4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.25-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.12

File hashes

Hashes for rsloop-0.1.25-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2e75a088674d6d6fe5cfa6b290afed0d4ce7defd775502f81829007a5ef41213
MD5 64a789156481ab3830456c47d8e13d62
BLAKE2b-256 1657fc3628fb323dbac5932eeb49c43ea7ab4b203243596c22549ac5ed0b3326

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp314-cp314-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 5bd0a1887eab592d956e6ec40c923558d0c7dfbde6ae9206dd0af668de59e0c9
MD5 e83c7bbbd1ef2b57d0088f1b9305249e
BLAKE2b-256 92a902563d6e4f1e6ea11dc19f41f06f3efbbbc6501d34472ea6f6c166547461

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp314-cp314-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 f12cfa3928a2fb28234a62459dc1d3c37bd81018ce365797e5cf46b3efdc0078
MD5 b55e2030fa12ae770eb8c8e86d6b4118
BLAKE2b-256 11ba64a2400eeb661a556a284151d4b24862755419f9bdb1de31e901cbe68698

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6367f9d276c67500de3c64f96ca33679d36a762b27c32cd97227ddbb4c9d172d
MD5 29129adb2d525489a0fbf648b5672d51
BLAKE2b-256 7c582953b2d8e209d9d4f734ee2305e66bb1ecde8a69d3e452f9a8c7851fbe78

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e10103b288c0f2d509f51ac8cceb2a910f73b8d99f0665fc35f68dd839960f1
MD5 2784e87c0f468ed0f9079622ff026749
BLAKE2b-256 2bc37e61d5a246aa2f216b3e8ce70d0f7c00433684c411690c517bd3fb2538ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.25-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.12

File hashes

Hashes for rsloop-0.1.25-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7be7757f6156007ef6c39ba7d56a83d62e25d852fd443369ff6d855dfe512142
MD5 3ce96b37ff5afb93a2fc4c9335538232
BLAKE2b-256 3091483e677cfcbe2a08f116bd8576445af65002559d961625e0fd3497fe8d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.25-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.12

File hashes

Hashes for rsloop-0.1.25-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 60175ae985debb0566708ff34c20a91c3f82e7ddf88c2fe599ab80d5df66332d
MD5 896acc6b38ca1d67677dfca11e7e930f
BLAKE2b-256 aefdef8c6256e4da439efb8b504f7f0be31ba3a8602179d553580bab8b13c7f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp313-cp313-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 0cb6c735565c225f07211cc1690835b16372e202dc2bb3d4adebda9d20db7381
MD5 12aad897f57db54df1617317900a5c47
BLAKE2b-256 a5ab928d9160a181712a7af5906f81743c999eed3dd68cfba5792ee1173b2d62

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp313-cp313-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 47fb19c8ca1c4b1446afcb484c0caeb840d4daed796fcb19cb3776c8badac790
MD5 a02d9c2613d8306dc7865d275e5bbdf6
BLAKE2b-256 e9f5639de53734b9f8a6479c27bee2de42ec307d79c3c065386c89bf55522ad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 451da88cbfb4de56603417d06ca1f6ef7a4ea25ead7fe69c6a99fe3d6b59b2c2
MD5 f34be48286638c620dec50e29816d04d
BLAKE2b-256 b5ad0fc36834d885902316a613ae37e3ed3db692bc70754f229665948c6d04b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e5b323241d2f934ca246be3bdb3c87814dced1e67bcad1fae63a40ef4d774652
MD5 7ba6cc8bd8e71cd27b50562d4c14ab73
BLAKE2b-256 1f2d3afc1613fbfb86b37f94b59a55c7e37be1410cb7c41b3755f539bc5e1ceb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for rsloop-0.1.25-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 02658eaa898d93a257d47711f30804f580a959ac1891e5a40453c5caf67c3003
MD5 5f5f66fc2eae7b64705675274efcdb5d
BLAKE2b-256 f54233043df22db9d46f67a70a65401aeba98cbd0dce72069d088c4e9fb293d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.25-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.12

File hashes

Hashes for rsloop-0.1.25-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dde813b824620752c1b6d5749cc95e519d4ec1b907697d77750f66563b9cb3b9
MD5 15b08e20add909356714afe49cfa83ca
BLAKE2b-256 0c0f9dbc41ac9c08d80a8beb0cb4d70d12c306c613323c5dcd04ece6ebe179ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp312-cp312-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 5677fd642e1c1c991a7dd3ea79e7d3f49406dffc68b7b487d4db54394921b88d
MD5 e850400707e56acea0de71e944bb5371
BLAKE2b-256 1894cbef53faf10b4176f9d3c711d336f6093f769cae4bdbdc0da17a8822ffa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp312-cp312-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 6c3c1649cf49ee26ba3b8b3eccdbda7f902308d41d58d677b9b940e55e40be99
MD5 1292337d4375d9c481631702608e9467
BLAKE2b-256 e182d051070293967ff3788312940f8e7efca66f298595f0dd689831b8705e17

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bf80d762a154e748f54e4d97ec20a259e118184e8f8e56311b856f5aa55ce7a
MD5 8c99bcd7a1d6440cc0b02743c4733ccb
BLAKE2b-256 922fa63960b9ead88d3996a38bb09b45f1e2cda74cc12e858e698e0dff89b6fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 40bf8f18b372009a3e43adcbabc51ce42fdd658f9599e2e70ca9b771310ec9f8
MD5 e5aaaad13b76d6fb86c8e4608dd2f8e1
BLAKE2b-256 f14101430a0f0d5e6d51bf94c1c280d42ab795a9959ab2076c2da6ee5363847a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.25-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.12

File hashes

Hashes for rsloop-0.1.25-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a497de273789088f26bad74ba4fa893b9c76a0efe23ab3f490c32da3f049af6a
MD5 9158f7bf2974246d36a49918a9eac5b1
BLAKE2b-256 b82ee42522771356d724ac99ab1c60498d58af3e05d38bbdce89616129024546

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.25-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.12

File hashes

Hashes for rsloop-0.1.25-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f31395da613db98e3dbe1d976adc6cb81d3011968d9f8fbdb3dccfb9a5b5801
MD5 c135c470a87dd179b61614244240a471
BLAKE2b-256 80a32dfe7c901b4dfe7e59c7cb0cae2fbc4388dc6912c29a79b602766fa9f51e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp311-cp311-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 8e9513ca1715fb27dd092881ecf15c06b6b1a703561714a74e9ad5e30c3ad18b
MD5 2ccd6c8fdf1c447fef4c1cc667c4457b
BLAKE2b-256 4a5fa323eff7f5f33b6fb9f7025a26617c173716bffb2562fcbc3b256efa7fbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp311-cp311-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 544acc48de68b9ca6fbc0261923506d74058107a9a2210a534c952688f50229f
MD5 df1b3b1539730afd213ae37be4211e5b
BLAKE2b-256 0c87f041968a9ebc1875db2be18a35f62f510a6eb5266cb323528e7f7d9f5c0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7f39109ac7f0b8bdd718c4ea08c894dcee1fd4a5ca467eea48bd8adc2b9b027
MD5 81cb3b04ff14530bd55978028c02d708
BLAKE2b-256 73c8e749e666e8ca99234124944d37737419d7b45490debf203ea71ad2ca9e7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b10f5dc58e5e007b34f35409dfe77a106445062eadcd69d90a8b4b2bd6100cd
MD5 edc67378df87fbb2f633f53f3e8b113d
BLAKE2b-256 1637bc16f1315c701ec57c2713b8a50c4d87545a7248a0cf76a9eb7bec6cb8d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.25-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.12

File hashes

Hashes for rsloop-0.1.25-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 28f49434773e7c8f7327acc0e1224cf02868efe96b1604536920803e90018e04
MD5 694ac68983b6ecc8489025495e13fb64
BLAKE2b-256 8397ce5e8348bbc6c01cf41d82d3ba3f06f149519edc3a60eaa218f68e56e397

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp310-cp310-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 b3737c0f17b6daa2e3a3061942fd194985dcce62b9a25ae91e42c74cce9d02df
MD5 be8f7a8657f9a82b307226e26c017878
BLAKE2b-256 7e3f1b1def0af4a3c1a5334c8d3ca16c9cb3142901daf99fdec1ae4ee860613a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp310-cp310-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 3960a826f2a2b9301abfd1798c80bc16767c40a21964d9a576cd97bd4df6f0db
MD5 33f449a5f921a641d7a3f8e7dbf62c3c
BLAKE2b-256 72a237ebd5f4653134b6498d9b0d17409815e7c6d9093c041baefa4128df6f64

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e7683659e7f40147a546d5bfe5946534ed959e5600ed5493784f92ae2123594
MD5 e50a0a60039d4d06f1cca9277c408a07
BLAKE2b-256 2a816bfe1c0f2482e78fd8bc0d353dfc105a9ac391371fbc678f749f534cf133

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6766ec61a399444c76eb3cbc06b302bb89446864705d12d71e453397a35160a1
MD5 4227a4caab4351f67c78a06a5ab3bdd3
BLAKE2b-256 c7ff61677fe3dc089fe84de60e478291576e6210fcddb538c795b61ecbccf870

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.25-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.12

File hashes

Hashes for rsloop-0.1.25-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9e860f88d8c5a8f5f8360303228af4cdd2a964721806542c6e50a8491878a63f
MD5 958c5ab949ac2eb6728a2a90590e2de5
BLAKE2b-256 6922a91e30c1b671a9de8680bcefbb6ad0109b2296892ec9355538736b8009e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp39-cp39-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 ec6f7a74f8460e3d4f4530e0aa32aab6f0d3096d854b17651d4409fe9dac2b45
MD5 2a90d48bcf3af37d096ba3f575c96def
BLAKE2b-256 cf978734e07fe11dbff9684475087511a22dc1beea45efc7054d6f32c5a70ead

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp39-cp39-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 fc4d507177e608fd4e6ba6a0c3746c29122253dfec11714ac6e8328be8684e66
MD5 bfe2efa663a6ce30ac11db17384cae8d
BLAKE2b-256 594ce8191223f7b134fc7f635d45898c364a375e8b33a4b9c8a860629fdc8b49

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b5a50cd862420feb74b23147fd00cbfa7145f6b3c055a10c919697eafd3f530
MD5 e3e1e4227b97d96964d3e19da1a0eabd
BLAKE2b-256 ac4b496d413d1a5ba3c0cdd1368ef446b61a763effb727de40e76f846159a937

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f0904af7ace3ab9f8210f844c86e70101f5075162dde0bd9a660ecd7629b927
MD5 e1d24c48f2a34611196b6e13123977b5
BLAKE2b-256 e8f03477ccca083508969789417d488da2e5602e923910082d224636cc6aba15

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.25-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.12

File hashes

Hashes for rsloop-0.1.25-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9f384e299a5554649406c85c1aba9e378c2ce2d65441945d8d8071b02b8912c9
MD5 3f632884b4dd6a22932e834a34e0a87e
BLAKE2b-256 eb9e52e389065c33133167e09fd0d6da4ed3d2d7d1096c1bf88abf2a675e3119

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp38-cp38-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 6f832094df398dce0a0f7911ba4fed38e29d257fe4688579defa3362216169e7
MD5 bcaab63403ba8bbce8830a4f72099c2c
BLAKE2b-256 4b02b4674d22cca22f06dddb8b40452c280479606ec9bfaa00172401f440c947

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp38-cp38-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 3ecd6aa6d85a948d81e7f352bd78a763deca60037cbea7647a9824220bf0d37a
MD5 458c3e279ecfcbd047ae9ffd5a9ceb2d
BLAKE2b-256 6d365ccb6fbe3ed80827c5c2e3562f31d313cf485900eae3893783bed6660f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ee821ad6519de37f84615be985d639266e43a606879f1b1fb45c7a4966ad9ca
MD5 123bd5c36bb90354d0a5818a3431b883
BLAKE2b-256 534dab90547d8c3f29469b1983ced08c95aa398776faae2fca44100f74fdf2d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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.25-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.25-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0ae4d29f3a945314ebcb97abd5e492eabc881cd98dd64b083a56f084e233afff
MD5 f096aa753f1b26bf6c08ee2a0e6b2741
BLAKE2b-256 4578dee46063c6315ed23c24dd2c626548fb5357f943964de621c2b58a079cba

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.25-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