Skip to main content

An event loop for asyncio written in Rust

Project description

rsloop logo

An event loop for asyncio written in Rust

PyPI - Version Tests PyPI Downloads

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

Each rsloop.Loop owns a dedicated Rust runtime thread for loop coordination and I/O work. On Linux, low-level fd watchers plus plain TCP / Unix socket readiness, socket reads, and non-TLS server accepts are driven from that thread through compio with io_uring support enabled. Python callbacks, tasks, and coroutines still run on the thread that calls run_forever() or run_until_complete() (usually the main Python thread).

The package exposes:

  • a native extension module at rsloop._loop
  • a Python wrapper in python/rsloop/__init__.py
  • rsloop.Loop, rsloop.new_event_loop(), and rsloop.run(...)

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

Install

From PyPI:

pip install rsloop

With uv:

uv add rsloop

Usage

Simple entry point:

import rsloop

async def main():
    ...

rsloop.run(main())

Manual loop creation also works:

import asyncio
import rsloop

loop = rsloop.new_event_loop()
asyncio.set_event_loop(loop)
try:
    loop.run_until_complete(...)
finally:
    asyncio.set_event_loop(None)
    loop.close()

Importing rsloop also patches asyncio.set_event_loop() so Python 3.8 can accept an rsloop.Loop instance, matching the behavior exercised by tests/test_run.py.

Verified Surface Area

The current codebase implements these user-facing areas.

Loop lifecycle and scheduling:

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

Tasks, futures, and execution helpers:

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

I/O and networking:

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

Pipes, subprocesses, and signals:

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

Profiling:

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

Fast Streams

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

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

export RSLOOP_USE_FAST_STREAMS=0

The native fast-stream path is used only when:

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

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

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

Runtime Model

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

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

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

Current Limitations

These gaps are visible in the current implementation.

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

Build

Quick check:

cargo check

Release build and editable install:

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

Build release wheels into dist/wheels:

scripts/build-wheels.sh

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

Profiling

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

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

Then wrap the code you want to inspect:

import rsloop

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

Or manage the session manually:

import rsloop

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

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

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

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

Examples

Run the repository examples from the project root:

uv run python examples/01_basics.py
uv run python examples/02_fd_and_sockets.py
uv run python examples/03_streams.py
uv run python examples/04_unix_and_accepted_socket.py
uv run python examples/05_pipes_signals_subprocesses.py

Example files: examples/01_basics.py, examples/02_fd_and_sockets.py, examples/03_streams.py, examples/04_unix_and_accepted_socket.py, examples/05_pipes_signals_subprocesses.py.

The repository also includes:

Benchmark

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

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

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

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

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

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

Acknowledgements

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

License

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rsloop-0.1.12.tar.gz (316.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.12-cp314-cp314t-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12.tar.gz
Algorithm Hash digest
SHA256 a7ec4d388812f9a3f7723eaafb58f9762afe4a9d3fd3b6be62aca160c91ef2f0
MD5 2d55949016d67e376dfd5932fc935de7
BLAKE2b-256 474104072f1763941af7ed81729870f61f38bbcf72b233e847c952cb361f36fb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 03748987529d29347ddd828fd5089eb580650298922a75ad5676b67cf321a2b6
MD5 77b65febfd23cc6d9a8ba61f5629197e
BLAKE2b-256 e275acb54fe321b34494d4bd82799b19dd2a9f26518289ebf8148546db3b8a8a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 aa6f2a2253d004ae3159fd5e9a76df0385e63735a52899a40329d8a177d3fd92
MD5 55c87a386189b226b42d13d5b691fb30
BLAKE2b-256 8b381c1b46eabe6a6c48fa426f44b31659002e11a825553051548c1d0eee7020

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a7a85a1744c334593e15302a432092b17d4af1113a40ca923fe175969b942491
MD5 8b9a0434fb4b85c5cfebd5c0024c735b
BLAKE2b-256 af33f21bdde13f0992c82a279d82890971d610d06f390ab85b54e53257286f3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 ce96eb7b22d0aff963034163401f8b542ec744c25c8240077502a86a53b9bb78
MD5 2f2a0eb565f6104d9ada3d2c4d9c12c7
BLAKE2b-256 33e22b1ac10cac492e94530d080b23f68d0dfab872f4fab3d7ce87d44d4ea9fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b45fd7e8dc4b8594a28e9a024872393377a5f7346711ff0cc3dcaea4dbc7d6ad
MD5 9e9e7d3a5c2853f47b97516f1b75191f
BLAKE2b-256 f267cf6dc879b90d28f6658e088a54f6e22acfc4c55d71f33c7eb94f54f25c3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 888896d7b0f5b70d5ba5887633ca65eb641ea53e3329f16046fa8daa5139cafa
MD5 a8900270dae7493b0fce7bf961b7dd1f
BLAKE2b-256 84663febdb997b5b567ccb91e00f9599e0c466a609bce0eef924df17048b065e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 56dfd52d6ec17f28a61066483d1dcc27761ef855310ffd4fd0db9e451a3a0e16
MD5 9759ad0d08006d0254cecf97023268ed
BLAKE2b-256 b602b36bced1cfef2120d943597fba8fd98fe5978cb1450a088b5b309821f844

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 adc306132e64ef9b052ddb57e9c7ca00959e8355f99ba75709e34963d9599171
MD5 36b2ce34b03312d6951ff77b9c85b000
BLAKE2b-256 e4443da7fde974da9b53c12f5914bb6400cc2658f3f179403c55529c4acb3edb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 911d8af73570269c5db0c99347d9feb641dcf9ce2ef27e8821219033b73c7379
MD5 49162252df47c6c9781f1f770d202155
BLAKE2b-256 106bc1c01d42ef1dd6edb1978964c5cded47acb5754bc42da3ff1282f0c77db9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 121d1837e0bdfecdb17c15accad2fb1df621e0cf268bc1447b2e7005512be754
MD5 ef938da4198ac3995229d906adfb280d
BLAKE2b-256 aa3ba00ceaf7be0f62bf1aa62aec61164819d5d93821f2d439199f8392c86ff0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14f44f8fc07014fcd7ec4779f414157edd3f5ab5d6e34463fa7879e60f73602d
MD5 e97278f68a93c668bda7e767657e06a8
BLAKE2b-256 26ba11dc01c3ed5110cc68d0301fe05feccf2e3a749b773ce7bb12c00eaec531

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 acc13f49533265eb4910c54150df4abb7e1b6790ac8a1702f0d0d377212f602b
MD5 77c6d46e816ad930c11e40fb03c05e36
BLAKE2b-256 f9052cecc75c464ab576151a47c91990fc6182b9ea657020e4c54236ca666add

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ba160151a27f78d4588e0b024b7484364d3a59708ea3f458354b521b5c9aded7
MD5 8f43ccbfb4b7873dfd4fc9b15e372888
BLAKE2b-256 6de89b996ae1b5c1ea039b380c0f1485bc705a553c0fced3c5f2332d297a174f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7617f85155cd9164b64c274e97c75b446d97ca1522b535a7c2d7863be1993995
MD5 8b2d2d58a5086229a5b43fb8b2e19b94
BLAKE2b-256 9a7ea50d8e591b0821bcb119c606344ba2861fe790fbc96c0e9611221464d2a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 6f57a86c58da596f492c3cc068d4c70c58cea87b932d935a349962340a98967a
MD5 69b4e7f35291167d262b9f0e525bed1e
BLAKE2b-256 1d6e17a137b4fa278d8e8ed8d16e84e0d88ca6d310a0b4c09e2754583a0d3628

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 fdf61eb761755fd5f65b4cde393eb7a3953bfbbd8188b2e22e93fe64d122fb2c
MD5 0386efa0617c010693707971ccf84b49
BLAKE2b-256 10d2c8dc7f2035049e4373afa976d6630aba5bdcb0d94555bb5b7632c398a618

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d4de39ea0850977b20499de1564ce6912f59ee00c17cd94cbf85d68634ef2ce
MD5 1e401c9c55ee2f4b35eb1f407aaf9df3
BLAKE2b-256 af948d2438c206dfb5121c0c840c1cb8828a86855dbf700003e0fc0f87c30784

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67120aaf3702a3c728669db619dd4949614a5cc968991ea4cde6cdb8519c1ebd
MD5 3019587a27ff1646a695c8298887b21c
BLAKE2b-256 7a6a41e202872e5cac89049234b10df8b4a7bafe413fa346e1a95ffad8215e59

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 084f5d868c5790f12ddf77066c7f4511673678c789b6fb1e128204860db68b32
MD5 df9cc8618c66cea928bf0a7e3c4d7a2d
BLAKE2b-256 8a7039bdc5d40f322c68885a08ab2cab32537226f3049211dbb52e9a2d7102c6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 44cfb11f42813590941950aee524334a0ffbb2f225dba96b77fc1f507acd8c48
MD5 65fd9b13ff6c7a70c8f40456d6b8ec18
BLAKE2b-256 d4da1fcc397505388a51a9fa5ca9695e73d6caaffdea0abaa8fa393182aa8905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 c69f296850cca0b1447d69ad644d85511f2e511150070272b03271a957e81976
MD5 38e772fab5425b86d665a2279e5876af
BLAKE2b-256 63a51e4c062255c4c0997e56f88dae46da652063c4477edcd00e68c88288c2cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 75a0601004a1eaa595dac7d74a41de1b1b60d30a522fdc93c66ce481e3c94210
MD5 65ca15d1a23d2a387cabedb6a321d941
BLAKE2b-256 cfdd3bd20e2f54c994208940f2573266bb7e6a2b1f3a9950bae980f70ed86db5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 decd77bbaf67d23eb55d3e0e07ef63fdf276e091927f0f9477f477ac42074f49
MD5 95a35e90ab084aaf6cb207ffc1cf863c
BLAKE2b-256 d808989f0c4cd47c3a973fde1615a5561b9ab9ceebf9850344d1aa39749f78c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec2363a084e2c82569c4f6822e28fa7d3bdcb2eec638b414cd9229905277ae4b
MD5 46da328ea4fc580158f696570b0bc614
BLAKE2b-256 57d0763964144537c5037f17d23f8bd66448bd147e0b567efc8d24a61442317f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b6183062a34e9b5c88a8649fd0da1024c009d8124e6ade78e727e55699bc4413
MD5 efbcd40d51617e02dc6478d6ba045bf2
BLAKE2b-256 4caa4ab3314e0d6acc6fa75eadc9b1bd9ca7606d21ddb28a1c33b96b3f5fe955

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5d1af4039b90f30347a4d8498a24bc2bf627752e9f9eac9492a25c396224307d
MD5 0a99beee85e7d698cc5350378c68d01a
BLAKE2b-256 6468cca9489455c0e53a5f4bbb4d86928b0ff913be2d73882f07b0c228617d30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 2c90916acad70234867ec19bd0ef11969e076206c72411ed7b49e679a0384951
MD5 f4955da4ddac810708819c4fa4b7125a
BLAKE2b-256 2bdb70afd9796ff0108e7483c97c62d04dee39048fc7f1cd62d424144739bef0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 a6f829b09790f14a2f66aa2106e4b62507aadd0ee361c291935ed9cbe523686f
MD5 aa09fd36fa6340b4d4a7f31e6c94bc8f
BLAKE2b-256 24667414f1866fde26f44e07a22c716c2bf74e7e252ebd59426f409d4a030f5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c36111fd27b9979aa47357a7b16c7ab023d9a289ca9bbda501d79d45cc35dc71
MD5 4fd59fe7317debbd6b5bf6f6e24ca4d3
BLAKE2b-256 fca9c636f5df1d5a882bfb99ab6b3183e9f8e1e7bdafb4993dc71d0265cc9396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a85b1b9ebc848f1a98991f82cf11911fb616740772673ebd1bb35712dc67a530
MD5 1aad2dfd9c2ef322963c1a1c38fbb232
BLAKE2b-256 0f9152d8a8691ae5a2989dfa0847e3e8b002785385df85cd860eb2df81b8e446

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 73703d573be1ca459329b127a52e4c033721748d897861ae74bc4f88417a4d4d
MD5 2f165d2d120ebf17de4ec7d9e1868dec
BLAKE2b-256 02ed91138f26f612dc90a69b24a824577ca76abea9c09d0a4d72a8c8d3ece89c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 c7e32fe62864c53e5f41bdf274cfed6b576f06e7afe0a7ce9586942f1086be87
MD5 a713720aa2b5b56f2a14dd861c4bf641
BLAKE2b-256 36335b40c3ba1ae6a0ffccaf96f763e2d209b82132a258acd884a29f151832ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 7783d8ae709ce798f51bb08a2775a6c9072bfc468b968345643f7ff4e47bb6bc
MD5 61a7a0e5ea0bc6de0095b8da9f863654
BLAKE2b-256 56e65d7b53e5578c413fc05bca260f47da01d647eecc4db2407445d85bd64d4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e7fe02978bfd9eb3ee47048e92ffea440022235cda07fe6ef281b29d12d493e
MD5 fe233bf93d56b1afeaa5c99ce1c7b1c3
BLAKE2b-256 c5d6b7e29c00b688adfa75b2bcc6cf835f9e8607d6e243d8ee164a4162d93f95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13e2689c742a324921bc43f02fa0bc9a88c3c881ffff879e9f9752ca56416cd2
MD5 99b5b74b3f6da50d21336a657665e659
BLAKE2b-256 2e3bb49013f94138f50acc2a04713c57093207a532efb5a59e7d7c72f9395e5d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8577a9d3c4f595dcaef9fa42977f0f906909725efce403dc1bcf4fc04431e6d7
MD5 81a9502a048cfc421c242e85c81c27de
BLAKE2b-256 81de4957b25500b34e53d8ee9e7f1f0a4641b7d80cc1606436f04dc5d4a8850b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 69002105c1859da4188b4272fa2655df81bd5c82cd0a2da09375d2498a3ac90b
MD5 3f893f049fd49f66d77039262069fdeb
BLAKE2b-256 a4cba5373a35a354263727e416c6eee75b1f01cf83f2ad2f59eda5a548c45fdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 6a257195f1ca3b53017dcd69cff22c678dd7411853c209db6f8c5a9fc5eee4a4
MD5 942198006989701323c39e96e02ae50e
BLAKE2b-256 788ac74e396e0951674b9849cd60ead904d45c858cb22c2545e63f697d0a62b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 268576c0aa15c678e7d858d186be4f3ac05ffb6f477b90bd79ea0cddcde0332e
MD5 e8aa96df2f9ead74e38d2bdec3888d32
BLAKE2b-256 ee8878516ab0dcf2a94740fe7da44e21ae2a3693309a8dbbb604b9c455556ca7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a7c2ddb8a7a7beaf789658ebcd99cbda05a40ac60a6516684cfcce40c8a23de
MD5 b35cbd3966d2542b7980f47da95a66c7
BLAKE2b-256 6cb7cf7cdb2a1dcdf2bc55e00bf156032270d5f919ed76ceb400efad8a8e5871

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.12-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3ae4ba204a8dd807876f1e43ddb92072911bc919f0bd5f49f54124272436276b
MD5 72e2586330ad01f9f0d543e9cd9afcf0
BLAKE2b-256 a9824c59f5362505c3b8f565ac4f4111e4a5cf4df15e3722a8f44b463e876fe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 d07cac2f00a17c62d5bb4de492b38a9b8fd7102e210ed7a40af48a1f43d3b7a2
MD5 1a566aa15e8fb287648e65f1082a7401
BLAKE2b-256 c9891c8efe3c599bc9370a0943f3b95ea3dd63b0f11011dffbcec57544158624

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e4d817c17dffd87ba8b741782faaabc6dfa3d183cb0313645421512e41ae79b0
MD5 08a22e92f614b8b1428b597450aac07f
BLAKE2b-256 a0bdcab6ea21711864f825f6e023eb569edd1d546b095da9f555e5fea9532cc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22dfea74443cdab7456dbd9909a2811e197db60a236591d99e4603da29d8cc9e
MD5 d7a25bfc1acd74c445532ec5a4ec1ff6
BLAKE2b-256 506112af85abf8c34482d984ca79d7d91432576c9dc44e249eb50b9c01df039f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.12-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fa60477c8e9efa78d44fde16e3eebba5f64fca497f96da93d6e3eb4b4c0c1fbd
MD5 05c59815a44286d96f33cacead27b9da
BLAKE2b-256 57c08428cf2cf13432060fd75e31fd9fcf99c329c06a2826ffe81a81dfbeecb7

See more details on using hashes here.

Provenance

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