Skip to main content
rsloop logo

An event loop for asyncio written in Rust

PyPI - Version Tests PyPI Downloads

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

Each rsloop.Loop owns a dedicated Rust runtime thread for loop coordination and I/O work. That thread runs a vibeio runtime, using io_uring on Linux, IOCP on Windows, and mio-backed readiness on other supported platforms. Plain TCP / Unix socket reads and non-TLS server accepts run on that runtime. 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

The runtime is centered on one vibeio runtime per loop:

  • the loop coordination thread is always the central scheduler
  • plain TCP / Unix socket reads and non-TLS accept loops use vibeio on that thread across supported platforms
  • generic add_reader / add_writer descriptors use cancellable OS-poll workers because vibeio does not expose arbitrary raw-descriptor registration
  • some transport paths still fall back to helper threads, especially TLS I/O, TLS server accept, and parts of the legacy transport write path

The runtime dependency is now unified, but the codebase 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 runtime-thread vibeio 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 all supported platforms, but generic descriptor watches, 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. Runtime and socket I/O are powered by vibeio.

License

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

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.27.tar.gz (824.2 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.27-cp314-cp314t-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rsloop-0.1.27-cp314-cp314t-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

rsloop-0.1.27-cp314-cp314-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

rsloop-0.1.27-cp313-cp313-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

rsloop-0.1.27-cp312-cp312-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

rsloop-0.1.27-cp311-cp311-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rsloop-0.1.27-cp311-cp311-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

rsloop-0.1.27-cp310-cp310-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rsloop-0.1.27-cp310-cp310-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

rsloop-0.1.27-cp39-cp39-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rsloop-0.1.27-cp39-cp39-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

rsloop-0.1.27-cp38-cp38-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.27-cp38-cp38-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rsloop-0.1.27.tar.gz
Algorithm Hash digest
SHA256 3bb1beccb8c572db1e71ba1811e9960a34b151fd5ac0221e400e81fe4c04791a
MD5 2b72fa83d63a21e156dd3712edc64d40
BLAKE2b-256 2f3a49d46ed4aaae0296cc7423d662768bc7cbc2ba396c7311ed0150a17b418d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.27-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 593148b5236247c1327688614ac00357d0e1e60d2a78143a3c13ab75caa59737
MD5 5a9a0ea72c923a4e10067a71f44687f8
BLAKE2b-256 6524b0a96825fec1815a43f41ee39128a519216e812ddd6e8fdbeba3d64485ce

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.27-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.14

File hashes

Hashes for rsloop-0.1.27-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cd68057589e5d90676e18e91ddfe932c5466265ff8846d55d5a74a4538143ff7
MD5 8c30123346544cb4516af67d67a129c0
BLAKE2b-256 3fb816dab61d475a05c0357177a59694720ba2b28171f3148121964a8c94fa6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 f17e5f56daebf19bf439d96a10bd332f40e5e88f4610209b38dcd20bcf48440e
MD5 2666808014db673ab8c4b24b55749985
BLAKE2b-256 3c56890f4df25b85f2dec38d681cfdb56a362b9ad1bba2d47ef06848639c3f62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 f87a9c50a35f565c7444c375cd51e82e5b05cad2b3a39a8aa2a43c8a700631ec
MD5 3208031302e616f226b7a1a1f0b49476
BLAKE2b-256 fcda34052a2d8343cedc225f01ef3c995779d917f74c11270d6e14e115e3194f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34cea43392f1f6ea48c7eacfd957c5689adfc822db1535785748c4507878d427
MD5 4d56a1cbdd736b1693c0f3a97d6c123f
BLAKE2b-256 5c4bfca31921c86ea56757e4e29b5b0c2f1f5cf63e9b141310f56768d86a9a9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2cd91f06ea2eb179ddd4a1fc152aaacc55d3a287c851a10a701dd81ff5a5f893
MD5 2625cc9121c626573820c6fa615716fc
BLAKE2b-256 e04ec785c9dce1b99a3be031ddddf537a025bba43fd5d24ed1b4187cca59e9d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.27-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.14

File hashes

Hashes for rsloop-0.1.27-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7aa0d99b4e1ff5b49baca8aed307cbd42fab81870306e87653c38ffcb98291e6
MD5 a3ac3265037b629c8fcff1b705f2c01a
BLAKE2b-256 65b8da432703f208bc060da80a3a9fc060373edf6e9b1d397a8410c33d9b3aad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.27-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.14

File hashes

Hashes for rsloop-0.1.27-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 94c66b7f24f3f403436293ba0e1b85ce4707d9bea2dbca3aeacd5ad41e964bb7
MD5 68f1bb5186fb220352b54de34ec22645
BLAKE2b-256 4e3179ade260fb4c0eb442311b88c1e6092dfdc3ab515421249c5554f021c342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 20b359fce2099fd290a9281771b636b8f21622f923bc871e867167c69c8f85a6
MD5 32f9b452f51bd7a05b1215a74bd23785
BLAKE2b-256 d3e934daa041652fea148172f0e35fffdd1d57ff94e23bcab731bde46d71a0f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 fa3ab5d85affa03f32bfbadd1b87e255ab1b6d0a8b3da732e1d45746086eb854
MD5 ee943ba2c96d030f04922b6eee10b910
BLAKE2b-256 e5221ac35a5955450684f7d122cc53c9d03749a39522ccc43e9f6abdd75c9625

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c97d6237f191bcb9fdde8581ac30693643a4d1146047ac8f388683bd92f7352
MD5 4fe642dae14541bbbd79bfc596c56167
BLAKE2b-256 9686240e4a36e99383aecca60f5c578ad3f571aee5db353b0ad02c32989d1d03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ccb1e1409f1997dc9d5e582f048d6907774fb622e9db2b32087abecd127a463f
MD5 b6d5df40c8cc8c2d518dc815421780b5
BLAKE2b-256 2b253b5388c8a9a2ad090b2dbf114cd0c971aba476821a5e81004aa319adbfff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.27-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.14

File hashes

Hashes for rsloop-0.1.27-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 356ed44ff32d6b3504e86de782be17315e6d283fea0f724a1a98a33ecebc9c57
MD5 e338e7e986bdeea680587a6c25e7bfd2
BLAKE2b-256 11364362ab95b0b4192515ef6882c9a44c5659cdd5da8a4d38e8534cefc58099

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.27-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.14

File hashes

Hashes for rsloop-0.1.27-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7ba044cea52993a235e59f5668430aa344db92167e2474acb6f6c2fe7ee46418
MD5 70578531e565606ce8e38175e36e664d
BLAKE2b-256 6fd141f292e101c673f28b69cec91c2052b38ecfffbc50ced7ba5331b6a5ce86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 f926f169ab1274cf39e4413c1cc2744cc4fd948e0c9722ff0fea9b67ced57658
MD5 af6e03dd93339a05fd42bbcf2533e0ad
BLAKE2b-256 eb074fb1ab3a13bfd2683d2983a382eac52806216c9892fc51eb7ca2a9d30ffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 cc7801c911154f50a5afa2296167ee152d9d802cb9dd36a1bedb34e9d2c6a0de
MD5 527acf3a64602738a1f05b69c717433d
BLAKE2b-256 86073faede01c0802960616f41720a2003202855a5a46fc2afc5bb4fe563ff14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ab590ff4264f209237a1d832092c00cd119d3cb4fe97811219564e387e9c5d3
MD5 4f3165879f002df2950ebe27059206bb
BLAKE2b-256 d451e7858d14c08858867436f4b46033ca8d05aaff1360706048f2ea7bd20bbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5cc060d64e03bc16feb27ee3ee10ac52921c00a02466cef2dd36230484cbd8f5
MD5 a6d15a65f0cf3f4400da20bc12449281
BLAKE2b-256 5df696c1728b152cc837461bb76f7e27ea2e4934ab1308434bfd3fffb6cc8590

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.27-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.14

File hashes

Hashes for rsloop-0.1.27-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3887fe2c4600369130007d3ec5e622188cb19d8ebb01d1d380b7e3a195643995
MD5 6e46a25b94b305402dc80b71efe5a29b
BLAKE2b-256 9598870d63af5385aa9ea4da3b100df11f65232c4be9041fa89211ad0c677e04

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.27-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.14

File hashes

Hashes for rsloop-0.1.27-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7269e9f7f28b530e5b8c19b09d3fc16f8e07a10b47268cab4711ed2cbb391269
MD5 a741ec3dc3032586ff089abce5508e9f
BLAKE2b-256 88a32f5219353b48826e397ab24bd8b91e49152e82e9679df54f2f02855deff0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 38e907cfb4ff604a7ce512e22d507da29b8a3d1b0b20467b52e53d8d00c89afe
MD5 96c1a550bb953df3a7e45ec34078ff77
BLAKE2b-256 85cfb962b4334ae0ee49f1a4c96923dcb5de0ded604cadcfcfe178f09392b0e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 a6982f3885bcc701151226b8bddebe26bd619dfd7fd7038d55c2eb4f48b6516e
MD5 99ca7203250e22a5b60f5a8350622924
BLAKE2b-256 967caae801ace598bca1561271405c6848dc41a609b5cde4d3b7eada17fea43f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f43e5fd3a4e796204e59e3a0028ff42bba8f7866806088987a08bf6877bc3e8
MD5 897af128e68c6ef149c23ff48691afc7
BLAKE2b-256 da3c230365fb12cedc2a134d8c814d3c7234a552c169949d42ddfb8fd35bcaf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7956f28d858cd87a03ffd3ef11bd7cd8fe5facbb1beb0a75a8cd3b1303f43109
MD5 1e80f7c2b8935e5b43b167ba31e32117
BLAKE2b-256 375596c4de0548e1fd00cdac731d3408fb74b8d57aaebb1370c66d526de357f8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.27-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.14

File hashes

Hashes for rsloop-0.1.27-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a9406523fc67f20c87e0e14a8adbb48d2f35c324a5c222e8fef1c0e3e67470c7
MD5 619fbb7b2dba8c2372883a389a352283
BLAKE2b-256 1378c78016a838d48810aed88ee13f4c91428a3a7dd4ac065ec0a48c5b124bd4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.27-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.14

File hashes

Hashes for rsloop-0.1.27-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 44dc3dd4b97582a5d1e3f14142a863b7b09376ceb57681b430777772df8f8606
MD5 0bbdb5ca44c89b9fa6e4bba0c4c7cbfe
BLAKE2b-256 076d4c38873ad4491ff71e793f4aa99dc4f7bd23f8e0dc810b529e84b6c90c0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 5d13891675757ad762733b5c82f5d75ca0699032ef7d2e6103383459ba3b12cb
MD5 e100411716d793be5bcb4fc3ba2eeefc
BLAKE2b-256 4d30113ea2cc31f3d6344146315551d9540e37db0c2e9db0cea791d716774cde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 7afd94869af59ef29b0c7ab603aecc31e1ac6427607ddd046c28f4f66eee3248
MD5 91d8c9ebdb0acedab330259ab70757f3
BLAKE2b-256 060a4d3185f2e708ce24e9101f542e23b3368a453f94fa685a125af0a523f575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9584ae7641beeefce9b9f407063ea4a74ddcec9c4143aa3e15e64f58bc749fb1
MD5 40b0d9c57ee60bd8352307aa505d4a73
BLAKE2b-256 d0ea3b73db0bad751c121bb20484ed2f110052090bfa38b3d04be591ed73064f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43856799e5e38629b56d1f1e0feabce81495138dabb2416d3530577e4bc1515b
MD5 1bab939cfb35d5ff6839d08487384a56
BLAKE2b-256 2f5ca1a567de5965eac87b78d21581d29d6289a09b9eed8a2285a2a302cd2254

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.27-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.14

File hashes

Hashes for rsloop-0.1.27-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5c7f10d7c72cdf236333311dd6956b12281fa9466666cff23e25cdd1cb47e05
MD5 85a88e036117b56d372ed90c0b8fdd94
BLAKE2b-256 4a17db0464eeebd3308ddb7e73392509eac2262950e8810f7ca0f8edf9178608

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 b5a74d0e2893b18beb3122fcf5be06316fcfe07549e9f65dbd8f211f40c0a4ed
MD5 63b892321f3cc3a05dc91cabb778581d
BLAKE2b-256 4842465b091be5d5a68ec65e8b6702e0c6b402f5877b29eb91fed7402076c3e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b0f7ea7d8807f98c59f6a9994e7f3529d194e9ec146d23592a252a080cbfb401
MD5 cc812e7ad1c54beef2dd2e1c7538a941
BLAKE2b-256 1325c97cb8e6e3c161339e3da7a35a18940b17bf5fb9d76f7da553b52d7fd40d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d712359b6ff0ad1f1c28256aa1429a509cfdaa395966a1dfae7145f60f5d9018
MD5 d33e7070d920a14a0028580abacac2cc
BLAKE2b-256 1380994c4e38abbe08ed82a581832a836ac789f72ac3c040e830bc73b6b073ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6bbe22bfd1af04cb0521a42b2d25cc48de6f4af9c1a35abd3100f3dbf39d70e5
MD5 ac88dd764252b33186b01678bbe91e92
BLAKE2b-256 cd560657a4fb7365305f77d2f75c2a7a07a7de64a150a7addca88e165de98064

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.27-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.14

File hashes

Hashes for rsloop-0.1.27-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e4c2a34d69acbbc8fdf04fc9528880185055d6402852ade8ddb51b178f358209
MD5 48d4a8acd8f59199215268483d5b6a2a
BLAKE2b-256 9ea3d7ed5d70e9f946291cfd465426ae73d02e961593db14c36e66c732108a57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 8e65080689d4e663b75e18fe4a18dfda9c0707c043136737b180361f74dc2525
MD5 b25ae20ec5793c417336639c83fe2f56
BLAKE2b-256 f422d0eedcc4aa66d48d11778842c793e8b650ffc715dff8c1ea8efe2fcfc34b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 63a73171997c13a3487d2d06a1c744afb28d55a913c8936484665376017fe329
MD5 1092b4b58e6f8aa09a27f7ed8d2e8c68
BLAKE2b-256 3bf56a58a4abfdfb17180be2fb0d72c0fab725f8a81cbd0a156e29b429a73e01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fd1425d429ba0942b1a5cb202b363b60dc1430b4e0550aa26b6577d1119bf10
MD5 dce453d65b5ae0eede06c4890de293f6
BLAKE2b-256 23b4fdbaa02ab5b2baefa96ebb25b766af886ea40b4e75462aa7822235565db0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9fec765f874bfe7fbff449050458d7d2f554bf95d799cd6e1df2a49e20ea9254
MD5 ac3b18dd71a851c3f0ca3547ffe2447b
BLAKE2b-256 b4a85cc75fb5a922d0dcda87ae8a0aae730e04ab8bcb3ad7b9781801f98afbbf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.27-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.14

File hashes

Hashes for rsloop-0.1.27-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 301a4cbd07043baac4388c3f009942618564d16ff2be545966169fd23b1e0244
MD5 78e7295e270221ea8e5c3da15bff8e72
BLAKE2b-256 ed503ea7dc57f4c67f2f11b70b15d84b6e61ca21e2348021796deae7c345d9bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 b38c232e755e0ad23e85ba88ad4d24bec150d3900c5e314de6f70f3baade310b
MD5 38297deea5aa54e30a49ceed572dc69f
BLAKE2b-256 85b9b67dc1e858fb7804921ae25b325bdda85d193aca762f4750a8b815ff8e69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 344070191a6db62d4fc068aef01be0ffc77a5d4b899dd8d2f4713b0bea9d59fb
MD5 d8661d0cbdc97fca91504494dc058d4e
BLAKE2b-256 74404691d01715e7ce2941d5fb55456d43681bbc3b0b54548f389829c1b477c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e6416adadc9da004ae5a2987ee3829b1de5a0f7870184ee2fba8beb9d174c62
MD5 235c4c16703a6f64c4dddfa0d02d43b2
BLAKE2b-256 87923d55742b676f6a972a9ce2f811a593d1d7753f453fe4e411349997638071

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.27-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 974f235933fbcde95ecedb826619d8c6a7239e94bca54a14a1b54abe7e4dd448
MD5 f674bc3c774a02ce71164696221a37da
BLAKE2b-256 8462138a12740cac7428d97be62b6fb4e0a1a5dba7be08f18e494b3aec4dad21

See more details on using hashes here.

Provenance

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