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.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

Usage

Simple entry point:

import rsloop

async def main():
    ...

rsloop.run(main())

Install as the default asyncio event loop policy:

import asyncio
import rsloop

rsloop.install()
try:
    asyncio.run(main())
finally:
    rsloop.uninstall()

Manual loop creation also works:

import asyncio
import rsloop

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

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

Custom Async Rust Extensions

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

The public entry point is rsloop::rust_async:

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

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

Verified Surface Area

The current codebase implements these user-facing areas.

Loop lifecycle and scheduling:

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

Tasks, futures, and execution helpers:

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

I/O and networking:

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

Pipes, subprocesses, and signals:

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

Profiling:

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

Fast Streams

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

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

export RSLOOP_USE_FAST_STREAMS=0

The native fast-stream path is used only when:

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

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

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

Runtime Model

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

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

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

Current Limitations

These gaps are visible in the current implementation.

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

Build

Quick check:

cargo check

Release build and editable install:

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

Build release wheels into dist/wheels:

scripts/build-wheels.sh

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

Profiling

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

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

Then wrap the code you want to inspect:

import rsloop

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

Or manage the session manually:

import rsloop

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

This starts a Tracy client inside the process. Build a release binary, open 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.17.tar.gz (339.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.17-cp314-cp314t-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.17-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.17.tar.gz.

File metadata

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

File hashes

Hashes for rsloop-0.1.17.tar.gz
Algorithm Hash digest
SHA256 da8b70e489a549676959942f543e40d0eab6c83d0756ebea5617205a6f6e5762
MD5 f5fd602d2c281815d598760888468e48
BLAKE2b-256 a46f2d5f4fee07374f241fc5e5175fe67c5902ab3e65d05fcbc86e03b64ef01c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7b921ca4bd6a32a9dcd39e0508ceb760e0e4120b01d30ce6d47aa9ae44b5054d
MD5 ba67612241646458cd109ba64cb9e7f6
BLAKE2b-256 2ae15271469de500bc012881520ba8e4285bfbe3f66534452d0cd9a26b1fb4da

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 edd7b7370b7bfa3d3f1330d591bbc3b2ad6368c0072fef3218364682cf276106
MD5 a8c8297345f6af125307ceac751e12ee
BLAKE2b-256 49043dff02a80a671a7c1807e1c040f45ae942897c51d41a158ef0b930b71755

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 c43398fe90163269ad9db333ec00cbcd3c08bd4d716f0e71006234575b4b2462
MD5 941722378beb5da5212a41b02e861960
BLAKE2b-256 b0575a3fc346c6488c6bdb423e1f4c7991f617bf460c14b1ccb271873d84a299

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 1b087d8ffb0d2ee1382446b247ae340b9039cc57480e62d44e69aa364fdffcf9
MD5 46e81ee81b92e0591df5ff0cf0cb7f3c
BLAKE2b-256 2ab330c6f3790b2f003063a946b8833c98c98636c9948993932388ba7a38d7ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9138315fc1e15110641fd19937071c56b4f553f75d8e0b50f4d73704b414767
MD5 946cabedf5f63f23c0914ad81d3ba9f9
BLAKE2b-256 115f8e61db5bf1af7e8533ab981e9a819ba851d54816c30629fb0cbc13d8b3f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e3c427e70e6da9f711ae0eda6380d60fcf414493d3e046ae82762796c58e070f
MD5 df5727f88f4616da726efd69f4cd31a4
BLAKE2b-256 b106d11e2705ed8d32bebc4ceefc42b20e86dbe5503ae3607b644770a94ab465

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 29741b56e9857d3e7dcd92128059ebfb570ead1105bc412a63cbb8a48beec6e5
MD5 9da75fd89981ee252f9e05f2b6189413
BLAKE2b-256 4e3b17c496c701dd6a3ecfa7ea3363ee7e3e4157af8534a81013f9474c4f15c3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 648a11ec982de577d9107bb13fd6036f4b929d3a941033576608cf486b0da471
MD5 207dda901dd9a68f23809d349a144ba9
BLAKE2b-256 406c5c651172a5eb25f74e3fde4ac456c84ea869d289ab9712f367bddc8971f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 4da9f96dcfb97a53dd388009fdc11d97fbbf0372e1081387ad07f2719900b8a1
MD5 e1d85326d3228ec2a18a3708f86503de
BLAKE2b-256 da1f950f527dc098f9ab712915df54c22a683d2ad500676e23d4bba47f845610

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e72807217395c494c7102b0865d64889e1e0b12cb336f63ee3d2f143c07c4206
MD5 f3886e321c121325bec23d83e1a03d0a
BLAKE2b-256 6549bb7af1f359a758891d7c2ef74aaea3c381434a0ef83dfbcde1ff4ca39f98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1bec4a66a21b6e47acef0d4205c2083b83ec14ad7b2e3d440790a753dd85a0a
MD5 52dddc3bf8e6815b527bfafdc6cc72f6
BLAKE2b-256 ce56659fa0a7f69cdcbf20f80f15c62809e56f12219a12a4325184ef2937827c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f918cf1a803ea9113f83719941e9f1b6908f795dd3f68e2c1aa8f6f1766b4d5e
MD5 e7ae7d290da594e931be3ac70b057977
BLAKE2b-256 77ae4766b04422e8894d41c518c5b93e4cf4afc064390d6bef214657a55eb794

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3e479a707fb70b93660a4a47bd791ebe886b6bd8abef621e440a82abc39cfc06
MD5 5c8352cb20d2e686a6e9cbb97a4cbd6e
BLAKE2b-256 9e2156220bb1ec26394449283963bff80603e81aeed8fb0e5bc8b1b51b3d9e13

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5405e49bf03d5508fd4c37074ab2334aabecb2d2ca33590cdcc3f165e1d9ab91
MD5 d828f7b1fb81af30d21d1cff7705ea41
BLAKE2b-256 ec15afea9fff1696510ede75f299ad764c7ebffb9a9fc3a413417231b9716b49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 1095357d31048dfdbd585dab72b06c3fc477e13cdb0976949c0cfe0b96a8a29a
MD5 e37dde51974aac474eb481929adbb786
BLAKE2b-256 577670b2e698807614f59c04e96320b7397d79c11c0cd7001f91057b7f3f87fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 eda0cf9e1909de14424984722df5927a0a07c5afc814112141647fa937dd3415
MD5 de9e22f36085b260eec7375769cd317c
BLAKE2b-256 cdeed3834ed515d780ad92fd277bde67118d0b08bb34c8f13ed706cd2ce5cefe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a286df86c7245be860779d782f5e44d9b0caad33561096c8a882e3cd4da6956b
MD5 35ca47327ebc22c1f394198c773d7b3f
BLAKE2b-256 b7705f209ae368dceaec7f110763d59d63ee5b1bcbb6ce0d6b6e412fbae28f6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a3cb133c95b7544f06ce4782bda957229fcf1ff375c128d968822281e4bb23d2
MD5 4fcac457d469e756e1a6fc5a6ec3a7e0
BLAKE2b-256 274684a0a1b599530070619addf86236c6dca0055f0cad8513c3519855c2e889

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8f25427b017dba39f900a48a52074bd6bbc6dc4a8d332de516881d4df0132486
MD5 00041fa7840cdd892bce0131da2d9f1b
BLAKE2b-256 e5b79be9e8aabdc3a96c95b2256638c0806e693a33c1276006845e58cfcdc2d7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 04a5e583e969c8dad123366d08610a417db176ba633d8cfdb5a21712a5ef6fc7
MD5 788e50817e9d01172c5c6197f60fce68
BLAKE2b-256 c16e2ffa0cd1ae6356c9e9fd5e5fbab6904fe98aeb0fe5b27bbc67fdc723823e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 4c660fb2c349b8dc04782c8c43fec204967cef944305d17da338d949b4d5c1b0
MD5 d05e6627716b2c44a4b3dea9346d0f18
BLAKE2b-256 14f6c6777c3a102b9f19a48eed9c9692980318944830e639514c77ff95317033

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 3fddb976dc738239e44e6afe9fa9027c71f07e2c4cbb46b798ee78941c4f0076
MD5 25fc3c0342058c9faab9257ae3fdb80b
BLAKE2b-256 27d5994fdf69b5bd9ebeb85864b3637bc97f5ec5d60e223a4f43f35691b3628f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c5ea2869ec454cb1ccf3b4e045d1ce8d40fbf624dca3a04c3aadb93d7d4e1c8
MD5 a0b2f9b30e34802114a34f2d4364fd0d
BLAKE2b-256 121413512e1af0926e15cd45b4ca2644bfb2db5b83a295740e53d3e09b845683

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56efa9d6edd5415ba17ffd38002f7a9995b40a72e85cedeca9fbeb772fac0d6e
MD5 1aff78417036fc48f5f07451a77b2590
BLAKE2b-256 a5013a560de78ae7547a708ebb07d43316ca54805bc2f20cc36ce73f71be1929

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 99d8bb70e07b9053b8ebc3a535a3ad5100296e3378c2c0bfc0851f86ddc521df
MD5 ffb8c990f9b1356b801034b63993ecda
BLAKE2b-256 d365d812a6e34a929ca3eff59603e7add8c1715f5c8a156ad0f1f997915252bd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0f665cb286fade9715cde6bb213047561d6d97b03a3a0e810e64f62682a92026
MD5 57fba018384fbc5a43fb630848c35c84
BLAKE2b-256 7165bb0c41bb8dc931cb30cd564d31d6b0742eddff31be951018d6ddf1624a77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 ab0ce4e41cdc13e8fa9015649281f24fbe1f0dc660d76fbf1dc5e98764b4db55
MD5 f92cae3bc47c0ee04118c99a1819e1ed
BLAKE2b-256 3821bf5f635aebf03d4b8ab15888d113f2c293c06892d691fe1c562f48339d5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 d20906634c214e21d8c5c727e2860d908e0a481cfb801a5f6425e45d168c0f4f
MD5 600e48c77c433c2320b5090901f4634b
BLAKE2b-256 012d667b5059c62cfcdce168be6bc7c00db6b0edecd42a3c73c595c033515ae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e99cec86bccb791b33685afadc6ed8fcff4c45bc9237bff7729238bdf1fd079e
MD5 96a356001aece3e31a476a72d0adca67
BLAKE2b-256 31c05a82e6f98bfeaf7341aad01a7d7b17cfa7e48d8022e93c2bc50aaa214012

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 778ef4145528c3c07491735ebe8f1b00408c6fdf878fd852e2fb51acf7ac4207
MD5 19e9d0b66400e28a2548a7787f755610
BLAKE2b-256 3c693c52e7c51b8c200e95be3c6116f49ecb934ad55e95b28f97e5bc679b3199

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b549d1688a035c21f10ea3bb202e38b05e41a7f75339518b79faca46fa3fa88b
MD5 6a2ce5ccd6acde3578511e4a3bfe4a72
BLAKE2b-256 ce622c9e553e5e50eb4ab69b59950725921433a396c23fbb57e6c1c27877094e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 7563645c068ed0bf8c8f35c7fb9cb87721ba45c0480395b92ca22ef6d5d03fdb
MD5 41c1e8ae7c676c775f618fbbc9020521
BLAKE2b-256 a992014b56fd5760de8b33499c77f2695e9de7a91ff5258544a4d3e6a8a92ed9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 ccdaa73459fd3a1965fe4b7c788617803f3ed610efe3e41eb4c8b6b248f9ee0c
MD5 89dbbf1db794f6d0cf4bd1046a6c7d1b
BLAKE2b-256 f6e0552ef6c4a8998fdc06f54158944144353afa9f2ec6f78035d7483e32b40b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5019ab31749c91168391bb1cb8ab051d0dd60c9b56d6fca146a79dd1d0af177
MD5 75b0c0570dbc8db0a07fdcb2111ab68f
BLAKE2b-256 c9a76b3b16a4622e8d9d2a9642381f7828b903458e671329252a8eb61a1be2ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 baf5399f28d8466c7ca8897809bacfbb42eb89e6cf68bd284ec5b2f598779129
MD5 b80482874f0d96c24b228b9262e04bc1
BLAKE2b-256 9098358e0778b88b1b7dc3d4f67eabbde5f53b06f54fd91237055ae3d6c491ea

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4fd3b0f057d76f1d5924cb073b85317c52c9a4ff08f79f0bde1c1898fb1f9819
MD5 c850acfd02e9aaea3440cb59df96ad4e
BLAKE2b-256 1eae5b025465e2ab50d6a19f29e2f32fbbe97c956548d030eb3362c5211af81c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 b19ef307e3923697843fd3987654aa4a6e951a02c4326e319b68457be3dbe980
MD5 6c77da2b6b9328c2033adc6d00fb1502
BLAKE2b-256 96482acb638532cd7964f326b7abadfcb065344bd80c9b2c6e21bfe4d9c41c0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 5a2d218841a60783186a020ab91857e36bb4104f618f824f009e0ea4e468e7e3
MD5 324114bcecd5ec03e7f758db225f9169
BLAKE2b-256 bcab36ffaf46cd63ef0b75be51c5dfb35d9803a8bf4fa6ade97ee729b289fc2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5df93e0cf28b2e7b4af1555cc79e8148094c8a2a288a1b56264c4363544f0a2f
MD5 3152b8f3921343c1a12ecc31246989e3
BLAKE2b-256 3be7496f1a9b31cb756144392357cc00c8181debaf321b157b2d9544a60c79e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c11b6582c4dee2ae90c396d38767026ceea687a8660afcfd4f57aca84f482f9
MD5 6dd7fe3b4f4c602a4beb7fc1620b11c2
BLAKE2b-256 145adf36ece1a1ed05bd6faaf4b7535d032baba5701b4b4f3d5b7a6d21030d17

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.17-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4cdf6881b6d89f4d8c35e8ef4788196c5988a0622862a044b0670c5de19b350c
MD5 4103f60062252a561e22da2e21b62cf5
BLAKE2b-256 e719854e5ed1e09579a56a274f58ad7612a407de2caa38723a42dc5aec7c593e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 23e2844a0200a20436d19defabfc6b566a24965acf0202d915274c0f244e6ae5
MD5 f627f55292e22ecf246fdf4bea607a83
BLAKE2b-256 2ddd0c450f49d02fafad65e3fa3e94d042e1d1588055052189df90b008ca744f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e72242d1a1514e246a03890d2cff0ed42d5ef224b87f625e7703474482998709
MD5 352f108b65c93e9fdfac830df1758e12
BLAKE2b-256 3b0fb48a31c2793ca350d0e081a53467aaf87d9170c84964b960e2d079e885c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5c38498e8df931fd3b5be94c435d47eb5d1a2b4d86774df4c00206d80318bef
MD5 111258c8c42352faeacd8ece6f3c6bef
BLAKE2b-256 e756b438346907ca8b420e49c7f20b785d1bc1f5488a5d1bf919a4c9f9e07231

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.17-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a6e6022972b72e16d435487ed4c9e655536e8f47b8e3af45b1421191d8ab2e6d
MD5 97171296b66e92e337c0fa10250419c9
BLAKE2b-256 feb56be20e64a5e466d860a282b46cdd445dcf08f38bba2b06b78636a68478f4

See more details on using hashes here.

Provenance

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