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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.30-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.30.tar.gz.

File metadata

  • Download URL: rsloop-0.1.30.tar.gz
  • Upload date:
  • Size: 825.0 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.30.tar.gz
Algorithm Hash digest
SHA256 060abe64b8161b2f1f28f398df311144e1d1bb8f4ebb6a5d915a55d22da7e55e
MD5 9bbf0c0127a86fb9d805cdd02a4384e3
BLAKE2b-256 27f2cd9f6b188d514709292e4d95aabec3c918fc9fe3d6deb283bf6c4f081a30

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 021e2a88ffab8ef5dab9052f6c2e0eaddc116f13f022d9c73dddd4255d45fccd
MD5 550a46bd0b20397316d2f94e2b62ffaa
BLAKE2b-256 f47edb5f6e77d019fba8f5b89097fbfd513e425c6101e5b1e8ada4a38c251fb6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e5a54fed27c08d38eb2cd5c44315e99c385b037841f37793e79f20bf3af27030
MD5 86dbec5155e00b8057d0ff529dab1429
BLAKE2b-256 b25e705c8a7bcbf92394f115d7a4c5eff54feaf67c16f09c389b8cb8f2073b95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 0c0b60922c1f89974f04b4eec6886c47d0cd1867f3668482fce4b18643203700
MD5 fe604cdabe0ed1aaf722894eebc728bd
BLAKE2b-256 0732d4fe927f1f60795d66381855ad51019637c1d3a1144577217b1e6c6427aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b11bffcb9a8d23cca95c52a814659f829ee7ad8d52dfc5079c014995900688f6
MD5 39b9f6f8b7e1e3a1376a20107d508de8
BLAKE2b-256 4db29c0d2883f1c91f2ade53c7a6a73e361fe8947703eb145faaf7521f465cba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 075465ae8583e96df874d023ea0a3913a21061468c0f7978be094294274987c5
MD5 9f99107888110e762af9e5824f629c02
BLAKE2b-256 5edf2448d82df0a1e68b888dfd52041b7a21faef0b7f53064f2a0a5bf38a62ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 839e96e8fe4ac2653e472ac500e6ce55db68174a29b831aa512f584506525c53
MD5 d6949acd3b0083892eb3cef5d086c55e
BLAKE2b-256 b3d0a00a6e1ebc7c1fc5cd8cdf5de88524bec20ca38991b7efef05c09df4cba0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 53f9e440045d6cab9d4a8066c8851b4ba861f7d0db339e6bffa9141970580d1e
MD5 a44eb6c30c264f05a177905c6784f3b1
BLAKE2b-256 046b40c2b499a8b82261940a7ae3e4c4e5703360e52708a0c1f98e1717f96de0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 352ee5b08d9e1b89c332d07f3f907352b2e15d0fcc89867150a54cef7756cd6c
MD5 2372f4bdaab5063d9f65b9e9c86632b0
BLAKE2b-256 eb760f4d29b1910b8e241a5a8a589ccb379bea179e529b8f24c0b3b810052658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 3fa2b0b87995f81348ddb6b891574f5bbbcf58dea8cbdf3240c7afce80188d83
MD5 b6e1efc455c67dd8d979ba0fbe818bd2
BLAKE2b-256 766682a77ef1bff3d2429bafe416b1e303d97d2afac939c3ed058924b4d9d39b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 de6626baab60e9c0e4fcda8d85f65ac90ce51eda929f0aa1adfd35334f244835
MD5 2399b8086c3dd7e6ed66fa79f75ef15c
BLAKE2b-256 8c7613910bc6d9f57ed386fd64cf5b24e7ccf0c84b975713f6ea0e4574251764

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60137d01e3fc93eefda4f6500f27e52813f1fdaa4f68e590797fd2ee3e818e6b
MD5 09229963b9dfadd2489ac7e9b2dcda4f
BLAKE2b-256 2589c825954cd760e8a665f177997f3b020a4cff7761c07e83c4757379f5ab6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5f56d9d90db205db3f4e5a9fb93c581f2857d259f13b2bdccfa52b4e596de0e
MD5 7b614cbaa76894a93c4109e5b92eaf6e
BLAKE2b-256 ee7fda279d30e4ecb29e3d940c696c06bb1baf26538b97695fad57c46fda13df

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2da6c2f93203c1defb97026abf3b25b5078ed9756d16de448242378f0e79058b
MD5 5caf77cc9a044cc7cd1aa5538732dd21
BLAKE2b-256 8c6212a319bf748f01d26dfd3b79671d3eb2cd70f088c289fa59c01ef4814ea0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b9bbf8669e02d3f11651a9f9b2e5f0976322fdd9c013cdeba4e0e7f1b040a362
MD5 e8cca881bc67f6fff5278b536106fd9d
BLAKE2b-256 b10bf1fdb2eec9c868c853dc2d78aa0cb07e06caba09d6c22b64f1f1d1c0d1d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 3465ec05186d6b93c941db475c4e8f4e94d64e99401d80d2b46ad9f047aa33d8
MD5 db52671fbe5d34b209b6910af7cbbd4b
BLAKE2b-256 5d5a924fe7e96d7f664b82204944b81c60652e334c66adde31693b4c6d88828f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 9fa2e7fe9982abce6582c4102b148b81707700541f327beb717fa99529cb9c7e
MD5 bc7f828620fb39b706953614d50ff749
BLAKE2b-256 5879e2420a4d59e895060ef4abe3e0e0dadb5dfab9a5fde441efa0320c6e9a6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf13ef2924fb11f140b7f03a18f398f482a6ee81653dd6bdcc0d1c8c1207b572
MD5 536528c70eff86a42638c6984b407bac
BLAKE2b-256 9f21bc654c337cfa15b72eb0af6f2667ddc5c267172061ba7fef18e6ce3e6d60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9ec7f860b4c079916df7bfbdacb0111ee5445f096c0c1a05c68e71091b7b01d
MD5 3d8e0f87a3c8febcf0ddce696df7bb2d
BLAKE2b-256 89a8df8b4d06df6ac985292c4343ce3e8518c0b81addb246b28110d0e02b5d71

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c62f4ccae4103e213c0058977db62e03243fe5a8e383008777caa403d7f56017
MD5 e48facb2fd35e6dbf522ac1a1d328cee
BLAKE2b-256 ef5ce869376df494139eeec355435cc6ce7f334bf7c2e5f4afd127124e813582

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef9888941214fe49d150686e016f7a66a6effd9abf9e2d5c6693166ec796f16e
MD5 d8d67c65e3a20e76e97f69b8c481cc5a
BLAKE2b-256 6fb1a3509579dfd25466680feff44dc80e9b2e2e20562d98ce60244379595cb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 af9af0f0d217aa0840eb07616ade893794b58980d4d1f749948de8de3e370495
MD5 62c6c1a24a03134047e6c9ac88c791f0
BLAKE2b-256 024c135d351c783c6afb307749d590a5086e792695ed2bffda8986a04fcd76a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b6391dba8651f37e3eb186372ada20c957866670c04cd104130f5f409433e285
MD5 7a36d4594458898cb0220ccc4146f2ba
BLAKE2b-256 bcc01889e119ec8f19ac39f2273fe24c53aab7e08bfb24ed4998df9f98bd2d7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 865940055655e14e972f37853402bd1714cf454644c3b348fdbed4ba045a0d4e
MD5 be577841d470ae60709298d95cb57262
BLAKE2b-256 ef2b75a27e5db37255bf63fba46ad5b30566b25b560b0e4842489c92fbe0c87d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e1768981ce069783f55329a675928a5a543926b07a1155b177b37a7a21b06af
MD5 0911fff29cacdb6dc2adc3e01d74c4ce
BLAKE2b-256 db85324f3324e0cc487a7369f6a07b0545af3bc5ab50eb380b44c0169a4fde10

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2b2a718637a2c55eb12382d1c47ded036abebb7e378c05f5626c01f44aabc026
MD5 a3eee0d766a453d8e5bc1dd96c95b323
BLAKE2b-256 bb84548cda44cb8729f00b6fbfe97f0ac5ea0da0a6d5ff9808dc62cfa768a03a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df8cfc2493a5048d8926cb418464df786071f5eb446ebcb7c6ad8d5034eee242
MD5 193dd488babfd9a880ca9d4e6304745a
BLAKE2b-256 e9f9e2229b0b0a2a80c090fb6f147a38467e69635ab5befed826bbca3614e688

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 721adadebeff13ee1d94576b743bca157148b4531e240d0b876e0efbd1d86014
MD5 47aff3b6391c3565ef5b77ff49bf9bbb
BLAKE2b-256 d1899e9347d2094e87fd89ee57a6bbbc8fb3e5d5769c5cdba79ee19d8f3cd0ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 afa2f0b61d5be54cfab5864fbce089462c7daadab46f3d15da2de3fad42de561
MD5 df524c7fff5a2452e7c623e7ddc87bd2
BLAKE2b-256 f16dfbb3b1e0814b24c861734599ca1ffdacdb4bbaa5c390970ab19c8c21e022

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d558d9d21167c24a5fd3bf4ec805468c06b32f9abbfb8c6613eb08509a869b53
MD5 92da55f4e0ec8612d20896e341c6be22
BLAKE2b-256 6710bad67b08ae150e12e873c0c6861d2a38b41a24e47c67568d8b127bf3e486

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59e29d0eae902b5cb0f3c27173e382df5ad145dd4c8afe72291c0654c926ff75
MD5 63f6ad5e974f3b4b105ae3ac0ef35657
BLAKE2b-256 ed99058e7bd433dc052d4828f428d40db5806f09d8a0632c2b8fc823660b3a88

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 450360f9ca9f527f79b68e395033b423dfd82ce6b5a5fa0033dfb3f6eb6a4bf2
MD5 ef66b996f4470e96e4a355977b864ef6
BLAKE2b-256 ca9899ff9b1b66bbd78b53d2cddefe9e03b84ceec64e41629b34618843fd9eb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 9456b111c0cb7d2bb7646147aa93c7eacdfd37c27e6768b9ec4b415902c02f48
MD5 04e468feafd9a89cda74414b4d5f8137
BLAKE2b-256 d679a2d413e2d85eeb5f38924eb8a330c9200b76d26292876d416d8af1765ae7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 2a1782a93c4021e070db7b37469ad2e0755462eed1687865bb16246e7fcb6608
MD5 21c9a80134a176e70b225d62b36e93b9
BLAKE2b-256 72d8b3dab824e32b0430f84c199562a0a587e37a857b652474f3995166509d59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fce16156c2ef167eace33902844b8ec02dd988b74353eb66f495dd09a32417d4
MD5 354f8a3a541748cbce5d33b6fc806e45
BLAKE2b-256 479d2ce4539dc0c078d8632e501690e2651dd9ee15864090fb0b056f9e14100e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9a5492fb9c73a529dd044062260ab49333d283b517dba5956ea6cce7f47289f
MD5 be24b9c2fb8172d67933357e3f79c5a6
BLAKE2b-256 eb3670f6f1a7ed7d4ae2bca2e21c396d355d36fb97a3759bbea542df4406250a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1ae4b3a1de95f15858196e2d89faf786d43d8876543f703d481cbda8a2a33968
MD5 b84e096a69ff82224192e63989c42f02
BLAKE2b-256 ae8b6e59bfde968f30186397a2e470c8ab1d0581171e589dc2c28099071c9ac1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 f3161a8c284ce0b469b02da48a76e1d9e674a629f825d39fc81754cdebd1bd29
MD5 451c891370f6b50a6dccc017f6a98f62
BLAKE2b-256 d9a40f8e12b23d01382ac1f66ee6ef4382264639b91b1225ed97c6f2cf794fcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 fb24a6b2732e0d35f2b73511e65ab9d3eb296458ca42589e8fc25feb81f40020
MD5 93ca1671c7f31f0103e5af663b2a83db
BLAKE2b-256 6f640395f6090685fe0ddbddf0343b46cc46857be927a19b4e8a09cd420574d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e81f58991a69737f1beb9e0650cb61c59a6675b4e5a5d18a4a4fbe3b20181de
MD5 3f5f911dc8d66a60dd2bc88593a8ddb1
BLAKE2b-256 5f1e824abfa4399caac130447348226cf6a87c6886073452e59264b23fa349b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57785845143ea7bc340c100a96f714591b4a532e2489cfe73cf7adcaeea5513c
MD5 d5964e0af89026108949be6ab079ccac
BLAKE2b-256 b3bac2e8811027136dd3beaa77a47771f0fc205d66634438f0cd630899a8ccff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.30-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.30-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 30eb9db4e13690b5edf0515f9c1040e0cd38468800a9defaabf3fb71e4dfe4b1
MD5 36ad66c1f547433af699516b647b0cd3
BLAKE2b-256 d9d6e37ebda49725f7c855425d2bf4b75975f5343a0f79ac3cbf68c7adae8b31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 7e6b79c04b6fa5bf4c1d4445bfc7c255047f4f96c9b67b1d201960d5cc063905
MD5 8f29b10613b10e71443226b3e7f4dbe2
BLAKE2b-256 75651145ab9e1ca70c64e8bd0cd0d69621c52a5720a8e3568decea5a0586bf0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 c326bb4412aa6de7dd731e7be81baa5d011ddc5feeb76928c016844710e8b0df
MD5 a810f659a1a2f718c992c314c82ee4f0
BLAKE2b-256 2d228a60acb76c54a7922ee06db25c38f4c4af8afe7136dff2ebcb925d304942

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65ee62c135dbaad027a11846f767074acee246698525532aa7b22689e6ab27a7
MD5 90c3b6b9e9568a8a24c770ddb15d0bf4
BLAKE2b-256 4528063a32c9cf29fc4b39c7659328078336b0875fb88c93f2063ef3be03b738

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.30-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a61ec914adf16e0678c2fcc5e568c7b4db4a1b0d6161aac65d6fa004758fc711
MD5 dc3d5cad9a6fd999495a05312e6f87eb
BLAKE2b-256 3aa9a2afb9741859728a272c8b31d75caf776443af22b56b99c333a68cf43d74

See more details on using hashes here.

Provenance

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