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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.28-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.28.tar.gz.

File metadata

  • Download URL: rsloop-0.1.28.tar.gz
  • Upload date:
  • Size: 824.6 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.28.tar.gz
Algorithm Hash digest
SHA256 00ba581ab0c5f1e3ed000f6b044172a5e047d0a18690a461f68872821294dfc6
MD5 b71ecdbc459c213da4f34e35eb90d4ce
BLAKE2b-256 b986c8c2510a81f3d0a9c075d43fa415f99eef0386b601c0b9a2e27cab388a6e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 515643e6d938dd1bfe559c1bcc2dca89bf425ed3c89dac25e1c204b7ac7942af
MD5 50ac4ac304570e330c4ba1aa2db0b18a
BLAKE2b-256 0c7b9dd8cd91a5335bf46df29767f17621c4ba6b9e3d37a733369c477a26466d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2850bab8251fee75918d135a24462f5a273a41ce3abee422565eba2a24bdee81
MD5 5ab4338c65efa3b52f96bdfc44871722
BLAKE2b-256 f923b1624845fe8bb402090a084361c03852939cd9cb7331208a6d4bf8e7e121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 e090430356cd0731fa023f12429c39bc068f7a1e58ea0978a5f54fdf01522a25
MD5 00f8f31cbbbe110547c2658edb6760fd
BLAKE2b-256 bdb00a623e1d8f508c1d6a7f738d1f3d8f868ae8500bee3dc350207b70b5fe85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 bde41793f67b1d3d035acbd07f0d9f2425665d02252e91443c869fe31ef62104
MD5 184f97fa79b0adfa23429a5558ad73f9
BLAKE2b-256 ef764b3117bbeddb4b53818ebfb068901ae699293622dba552b4a598d842af02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc8e54607c66682dfca0b5254fc0376baae9b280bc55ba8be542a5569c037f84
MD5 b116bf9d40a7f87ba49166ecded719a1
BLAKE2b-256 4647e46ef3aa07c61c600d75450fc45909450bd4e06450a5bd8fb8c58de197ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73ad3300a8a7de77b959ace92a625e16d27f8794c8f0a0643a7227b41483fbb1
MD5 7956559985c8ae2ac2bf33353bfbfa28
BLAKE2b-256 dcac4ea25b45bafd42afb5e3de570923db142719e451b88294eb1de85ad7629f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b0701c5b92a71b32d403eb3fc3190b6d09e4c225b9bfdf254cafc1bafd60b79f
MD5 b7ed48eb27721712c717bf2f5d6526e2
BLAKE2b-256 14536e83a019ed59f57714331ab26c1ed899eea7d6829d334cdeefef160573f8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f1406e164a9806a9a02464e868cd0bb7f4568c81b6ee549f938cdb0dd7be3d38
MD5 d75b905cfd12cff3910f8f60dc3ae1de
BLAKE2b-256 d199ebdd3fe0dcb3e4b1194c649fbfa785509f7053f920608c1879aad52548ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 6ec6770d785bdf619067800ef19a671479749323d39c205b442ab6941cc1f9e3
MD5 b9a888e2f0b8083c9e18f9dc3e916955
BLAKE2b-256 fc37833ad9ccf2a149bc426bd95b42e14df6a62229b14a6ec4ce5410b1d1660b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 f3b1f0936331491991fb8e9e380c177be420d01a3ec9ee0e3ac775d685964a12
MD5 643788f09e0fa63f142326df50523a15
BLAKE2b-256 91e4a98babb4f7a85b446e9e2d0fd2f6191f40fb19633e2d82be4e0fa7181c49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79faf41dd9a91d5c6d068e234a73a5a2b0ab6d6f15107aabf9e5f77d75982290
MD5 57061082cf1245e5a74c13763b483b12
BLAKE2b-256 a226c945914b076451bfbf6a63af9cc00e3463ad75d9c1d8a9d0e73516bb0f82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f15e2546833daa6433ebe65f26e99de1ba5d83e40672fc1e6fea259064532c9e
MD5 6bab3b86ab04b04cf01fb050d07baadc
BLAKE2b-256 45748b1ccd24b7a05971c0410434ba89d0ab333a7a8202f669209cc6972a5f47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5f6aada4b348c77188997fd696f22fcc4b12487594ab2ddfa7aef0636826e3fa
MD5 ed621f8936937c959cde3dcab6db72d0
BLAKE2b-256 98f246c3578efe261ec164369c990bad525b8b59f51ee0e3cc72efa5bb3de8f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 80dd18b6d0acf551e4cb4351c88cff7c4d3e3408fdfcec6955f5d0cad20a0ca2
MD5 3adbc300a1a4c30ba599b6fd320183db
BLAKE2b-256 9eabcda6924716a76e7175256a8231faae19baa65af022619e42c37d9e07612c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 cd08b0e47b1a346563d5a063f2d576e592585c555085a4c72e088b1e7424b42c
MD5 8b2596102f30e396fb9aad0cf31da0d4
BLAKE2b-256 930aeed38427fdc5c9a8f6057a8fbea72f20bce59ba62aec52ae43c878740595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 d2f2555ab3b3801ad7053ab0844246b4f8df3fcf904c5e77ba8179f73a770750
MD5 c47a9de320aa6c991ff71b6fc9dd81c1
BLAKE2b-256 2bf62863bc2c9eb1533adddce372cb2130efdd4147ab0ebe1a30dd9b0bcf4622

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 200bae3389e0e893d78f0281c45aaf198ce7ab373b3d68af44ae649a796af30b
MD5 7951e72aac1e794c765e7e58a1e5d6b5
BLAKE2b-256 f8c834f39c92ed9f4db160f0d5d06758245e4f66eccb4aaf1f8dda0e49803c12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 429eacafe54dbe056951b17c78a92921cf5fd9e773a82061653d19a8cd7c6616
MD5 6de4a7ac3ff4acdded03ffb69e0cd2dc
BLAKE2b-256 631876261f866f14828c2c0fe57ad6eed60953674718ad7fd3408a1679aeb3e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bcab36475fe387433f33d2aa5667dda0066b33f0a322bcd7e953cb3b81803223
MD5 9fe40cf50bde4d72cbad25041a4a0e83
BLAKE2b-256 3d4f8667e19a26c30e2e3bf10fb440384ac17da61aaaa2c811e58cfdda6aa72d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d4e81bfafc80cdece2d3fc549f165eb1ff49a17c93a3b1cc5227958262b65aaf
MD5 764cdf2e0e0dda794bf57620d5cdfcd3
BLAKE2b-256 17872ae3be8d8fd403fd8b0bf2f723b82325f8060fa29d44dbc985f381d3a2ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 ce9746a3d96baf1ee57d70d76f13c077d0b2f7e7ebb0102eddcee6f08f3126c5
MD5 9032279c358f440a58928257bc6488e9
BLAKE2b-256 8e582fdefe9919e3affb71eef720f515391a2c7d625b0e5ff2822843d41b62d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 ed39e299588927ca52165a0fca9df02b96f02555a080063a738a952edad679c3
MD5 602824524e96900717c2253cc888d3d6
BLAKE2b-256 507c4bfd2d6b277ba0875c06b3a76989a18ba194f9b607ccb9294479e2ce3bfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23ca94f9d4b6c436a4564ec416eeb1cf1a8c7941498375b6aba5a0cadf9c912f
MD5 1cb49490c895675e07307a5eb2dded86
BLAKE2b-256 2b0c5d8a424871b2116c0f9fa917e823bf7adc3917c1cb6d3f9f5428ee46df9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6079376139e0727cad4230046ec4b602866def6388b4c0ae39f4674fc10325be
MD5 f3873dda5472d295c9fd5a3270094519
BLAKE2b-256 53f78cdae5acdd33679d196e95f6c77479b1302b6c24c65c1ee300d40525b68f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a10a221650a1a83e7e2e0b164a5df5d992ca1e0ab38f77f02ce8fe36958e42dd
MD5 e7d86399bfc7bf07cc146ddc63ec1fce
BLAKE2b-256 cce4094f841676a2d60246018ca83379c87800ea49f0330888afe8426cb7259f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7bb5a1e451b4b8e67018f2676b3259a70e3895a72bc3c37f73a69a5ab2586adc
MD5 906e805acc1638ee706a2b5c91466499
BLAKE2b-256 9060ecb8741b28e490c39dbaea5d890ee138e8d99612d01b2ca5928f8c3a4773

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 1b68d598ace8c369cea3e7803eb65a12de702ab72606847f32301a2882891041
MD5 678b5f3be3efddaf13b9b0a33cc4a4b7
BLAKE2b-256 afd5d1596a0161f412486ec4e060ca67b65ffe8ca832b3f2c9ae94b05d1cdc94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 22496555b7cc7b2750a36060f194d9062244b73f251eb9346d9b3faf9a2c81b7
MD5 5eb5cbc8d9ccb40392d2d7e9e4564d1a
BLAKE2b-256 d5bffebe921a65867963bae7c8f83be0c5381b36903b5a1c7662d552b7e0b8a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81d85780e8f05526d59e4529bf2185d92f69dce341f58ab3d40dd4a054993987
MD5 c0caada54af047d2c9e060a7f50776d8
BLAKE2b-256 834715a0e335735d93c92ce3773b4003899e3414d2d80dae30de2e83e12cc143

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68c287a35bf18c7a8b7a602fef7908fc8ecf504628f0c73f739feb6a81761422
MD5 e0228da91c6f06efd82cd4897ae6b02a
BLAKE2b-256 9849eefd5b0302506626b6edf456dd78d1a69bd532fa32a5aa0e1e0a7ab32048

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0b2c8d7ca67bf00fce2af6329f39475da4da9bcc824a1bf29cabe8c8a09a1b4a
MD5 a6181ec1ec69ce0751dec3eb21dc756d
BLAKE2b-256 c413e7f8b91b29bfb4f97f16d2ae5dd5c9c40496edb1a497327b923446af47ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 db4e4bbaaf03c86e321b8dd999c55ac648929b47bee8422ce05153f27550fa90
MD5 97e68495179aab6a815de78c727dfa42
BLAKE2b-256 44fb0b705a54301c281057444c1064aea60dba9635146665bbf0b6fb0eb7132a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 d7cf08430f3778a68a1c99b7fbc502856da8e83a596d68907f3d52817f3bbf4d
MD5 84e53b0678407530d3c3e2def9186119
BLAKE2b-256 f3ef11239e299b76c4b37ea419b9beed72a22a2b4db9473b839cfcb74e44026e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f1d618f3ecea29e76686493ccdda67cb80c59e26d12f1693a02a27cf763a2f3
MD5 e3c5e2cb2e7e25309c70252302c8b82d
BLAKE2b-256 807314487b22369913d043148c0c9a8211bf332efb5351e5960ccc7b37b7bb14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79f6749383877df410bdb717c98717983683fc4d0d1c16cda59371fbf02b3a40
MD5 690d086a59a34a1623357c5db476f2a5
BLAKE2b-256 9c24b25db68f6e6b98d5b6364879b7866a7457b5f504a3827a0b656d58430f8d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 446351ab4477ac21f230e6e9ecd5e0574385f669b4072ff1b1e75ddc9fae7d8c
MD5 6905a6e3fcb9e0c01dd26c83b53511bd
BLAKE2b-256 8e4e11ad9d82a715b1a26f914a3900f460f54601af9b76c7aa3f08d7d11700e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 b263c6c89093c37551f357bf28e1aa2995f5ef562d28039f699b0e5c3b6155b0
MD5 1829a4feb9b0cb8efe7e5414fe8676f2
BLAKE2b-256 95ed6492596a9a6da17317f390fa941341140c85e53355cc9bef77e9cf37a471

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 070d2022fa7632cea91b1da6002a84df3aee22d1e35538ba1de764ef2c150ad6
MD5 c3e7739d1a3c51d9f7f60aa220f8140f
BLAKE2b-256 df937b916516fc95d1e47888a5b2a0f48192e1b9dc62e6b911185b0088cfcaab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87cd96703b02e3d344ad9373296e1f9c1398693ca3dd954751e70e1e1ae24f1a
MD5 619162ac07bbcb4b36d00efcb0b26d55
BLAKE2b-256 d47f232d4941f32a854fc6b64d44a2f2aa4d40513f37cd7a772898a3a91b7ca3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 391e3cbf8401ddece14e7e2417923286eb4f8ca16c456e1f83f018e5b4abddb4
MD5 7f5747ecc0763322e05648c917cbd8f5
BLAKE2b-256 98cb73dc6f85be48cb5432a0a32d7ca79427088fff381f70e46927a2665c25ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.28-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.28-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1781c50bba6d5722c615b5b2f7db4449ab93a394d72e697451de4629a6fe14a5
MD5 ab269cd3d5ec1ad0d1aecd4fd8302d19
BLAKE2b-256 c24c97c7f408c044f04ecb58f6ee99d37a514fefbcee1da6035e139240d50e34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 bbeb53c4588c4dce8b3aed2d58c3b655f0a87c0353f984230de0f89ec5fd4666
MD5 cc135b7eb3888c9a991f287aee085be5
BLAKE2b-256 2b0847225a1a2556a1a603c5cc04e610b606d095d47ef56350cfedd3c666d847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 df7f7ea9cbf7e61757d11313419c9a888bb0ee9d4c76df4c8e9ab8a3141016af
MD5 0b70ba304899059fddb432c50b1f68fe
BLAKE2b-256 e6b4317fb0987298b1dbed087dffc834c7f32377e978158a570c034830ac8137

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb8b7c9fe49ef3c4d6b3c2d2b44b3e6139f6571e016c6e5210a06856db320123
MD5 e1bc457a029036b3b5e7ca0458d4a55f
BLAKE2b-256 b1ff9701d4200148d941c0c32fd6ab90b699e7a3feb401a1c2d03f49e569bb18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.28-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dc8eb8cbd59165426370fdbcd55ab7a083378cd5ac52370f171936b634528317
MD5 ac43c3fa4fc5c8dc8ec21904eb9a92fe
BLAKE2b-256 f48331ce815a9124196158e346013c131368150e8c5e3169cbf5c9f0262e882c

See more details on using hashes here.

Provenance

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