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.

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())

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.14.tar.gz (325.7 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.14-cp314-cp314t-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.14-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.14.tar.gz.

File metadata

  • Download URL: rsloop-0.1.14.tar.gz
  • Upload date:
  • Size: 325.7 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.14.tar.gz
Algorithm Hash digest
SHA256 3f03e3225c5f2fba67227664dc265c53c4529e2aa9db96a8955c7b30ac5baf49
MD5 88667892b48ae317cadb4199b1ae6076
BLAKE2b-256 65e8fa01b8eaaca37bf5b34bf1793f84a6fd907d7c2d43b5c45dec9b0a85a3c3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 26c13131199b660a2ace836c703cc2fe5db184685335908f6109751121e3a753
MD5 25f2beac98162c59bf65e7e2c5375152
BLAKE2b-256 a03f9a33650320023b0a1a036dd742c30e38191627f1d9ca22122fe77f734b03

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7d1dc20c9040bc0a13ee213a5bac7cc108eaef178402c68ccf87c87ca5465f24
MD5 d6b85cc539ebfdcda01bbe7ffde882a7
BLAKE2b-256 f87d9c531f8e0d9b07f9721e7f2d574204eb2bf084694ec40c7310aed08fa092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 4b1b3acfbebfcc856ca1685621e1b8909470cba6093461bc68b71c385c10f0c6
MD5 9470b324e29b19067c9c77761db7a69f
BLAKE2b-256 6e66366ce42bd268902ef63e68bdac3feb3e21b4ae2443520b075f059cd0e85b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 15f1d00f9e4bd80f88dc25429f041a9b1bb69c8f65dc405e55427c90f70ce2f8
MD5 da9957581153ef2048b1ab0230b25c7c
BLAKE2b-256 2fc927b04013e7200a18006e133f96d278fb57d2c95428f99c16de5939a9b50d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 367ad43e590ced5d608bc9ce5fefb0753ab0cad9abfa4f67759499ead46802ef
MD5 8026dc879778248b193d6951a0391b97
BLAKE2b-256 db354703c6f0b084d806ff3e8d90576174517ce1516201ed8dcdee4f2c727d3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1681cd7c22484d1ba0487e446c3788face488f9ca74a189c8bf3bc786cb00c83
MD5 6150dd06c2ac9e150dabbf5b8a816a44
BLAKE2b-256 3a9387fd9bb5a4a1abdc162ce61e0d36e74d31def85b5910a749e84a3b3f9faf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0b1b0ff7ccf5fa969b676ba3d2171a42c7ce2f74320405b46e435f58aca3e1ce
MD5 5a8761b1263e1d7dbe177180fe9e0657
BLAKE2b-256 9439f940535e4843a09f571e62139180634563c773964000ba1aea87e477476a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d07f9219117ade0eb9eb79590d5d819dfcb1b4aed7521ffcbee5b35286d705e6
MD5 029d441a903cf5bacf3414311ec761a5
BLAKE2b-256 0482bcf5cd41c1952ca032adb1c0a1683f324099d6050f0803e53f233ac67d4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 3fa78597dc18c2b3696b847efa86db82a375809e47c4fc4b8e145d5e4698a203
MD5 69f82bdbdd99a6acbeab3a90f0119903
BLAKE2b-256 6d90316e030650bc74118ae65f586d6d98cb1aa488835298cf994255ac05bfe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 9038518236d918928ba1c61698192063cf82ff6929fb509f9cc0c72101d39ca7
MD5 61deb189c442177c8f1c33df64e62ea1
BLAKE2b-256 977bd0280c00c65656a54c1c3b978b7037b2ba38fe122132f5c6866634521ff8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fad090b15cc6c8be7a57e332aa35b9c7e3904f8fe04132d41f8d039efcc794d8
MD5 2f46e92b284bf4ff76c82957d0248f9e
BLAKE2b-256 3ccb782c4dc1b4a3dfeec32656151c9c7bf7bc65b8f8eb3962e8ec15d43901a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 842ec12e279b3bf67d8d0557e7ddbceb795a34d88d33f370bb60a1cb8e334c6f
MD5 20cc1c6694d37daec76b522f797d4806
BLAKE2b-256 4aced5ac1969fe77f2caf70ae23210ec95607ee3426f842c4ccdbcee4faf3718

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a5299c7ec4fbb4dbc259c1571f5dfa3233880e6569c9ccdf3f9f3c78f5b47a4e
MD5 9a996c724a2e54e17cf47bbc2355c2a0
BLAKE2b-256 2846c2c64fa5a402c9f85f6283d205e2efb6d78105d1fdb6a51d318475368924

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 78d019ef329fe6b12aa751af31461e819d956ec0896824d5508a4a911e15f5a1
MD5 8f8290f32baf9f3d68af6214e64eb618
BLAKE2b-256 ad68bfa44c445825b0b1b4d4571cd4d1a23813775c1de64fbdab15551b1973f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 2022fd1373ca764e944e090adde72930dcad01643c5a48021027c06e97450e55
MD5 578f2df019f4588fde680850b2bac935
BLAKE2b-256 f5b858cc1f957e6c544d5ee717cc9c44cf443134a984e5af59d403e2dccb0bba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 fc8e53f617cc2d952ad5107c33e7b6a778a917d7b8f996b7cb9867eec8db80cd
MD5 f4e7e401b6a1565e625bb42f278e4214
BLAKE2b-256 988682c06d8afe51bc0404ce7f40179babd7f42ca9d8fdfb485cf6d0e7245431

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00e8059f499a91aab0cb3750e0131cd5bd3827ba5e78e45e67f4878f97ba7bc3
MD5 f1650a742e402291b4be802823e008c2
BLAKE2b-256 12647aa6e58eedca65e7a803b76742736b0a7cd17f70f61de18bddde47221267

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a38cfd15114dd4a7456a95edc990bd4ecadc526b646c54c9a307c9b41a22572
MD5 10efc3ac26659be565d75a5e65779d03
BLAKE2b-256 8aca92b6476bce481e4d3477a72c14e5437613e03c6c73f35e9c04489068301c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ab5cee828a07e5d312b46f7e11bbf0452a7072aa54b93eb89d88115afa02b719
MD5 5c9e8dc0081f4d7b5daf00211adf18a6
BLAKE2b-256 b14846a4c4b95a9001ecea60ca9cf0d2d6ff635c77df93a0a0020f09cd1eb093

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 325e4afe88737c592a8f9453a1993d1d324981d5a7a548fc575ca02b0a162fd2
MD5 73af4307cb81dbbdf3de2e6728c05cbf
BLAKE2b-256 04cdd30a85f2491987e7b6edfbd2e7cba6f4abf8fe05dfcfd6da853cf6e1c354

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 f9d272473bddeeb160d4484af939aed2ad3995b2b73921fcdadd42a85924dd6b
MD5 588fd798c93b3d25f10a2da9d07f0f5a
BLAKE2b-256 88bd5ea8f6b0fbbc3bcd69eff28ca9406726b6a8b48dbdf9e0d781edd1cfc7f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 6c50e44ab4381fce49ffb030de7a86d6b1e76a0dee5995b69c9e6489357158eb
MD5 b3fa678d94084a4f34dacbd26776f652
BLAKE2b-256 1186674cd68b907d8540aed8a56069e61675c828e4d37308879b645979d12328

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0b902d84cda2fccc85857602de64b0850e4a75a7ef8f270eeda601df57836bb
MD5 00ad8ce0130fa56e8c252596b635d216
BLAKE2b-256 1d7b929639954b02d6904a1e7c367dbc6b45add6ff46e196188de4e910059411

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a81ef2fcbbb11a0f92d21a0788d7be4ad454cd3a64f22071c57c0c77a0c4dc8c
MD5 20d09d61949ce3839d08952a387c5f3f
BLAKE2b-256 52d26f7b577caba2e2363e2f497ba0544fac1ecf2cd9a43fefb7e536e1371126

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8ed141b0726ed7a7fbe7469ad4b6e52961a109f717845a604869c1bf6bfc8a96
MD5 cdf4b83cdc9536d5ed4c93882df5dfd7
BLAKE2b-256 cd17cd2792740a92d7cdd046ffff2700dbb66e87e792f48edd1885a11019c193

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d82dda06c50cd53c64c1b8b106cba352965ae9927211c4d187e86bfc67e86d3a
MD5 77025f2ef25fc6257ef6bb264c5e3da3
BLAKE2b-256 5b1ef531663f67be718dbcc79a68d82168e6992d65f8f723ebf226b02d58ce3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 18493b86e674330420f290631125b37f56a365a357b52c756a545da8dbed9679
MD5 8c1fd68cea5206fb116b4e0413330aa1
BLAKE2b-256 233595cbde90886bb8df9505a1cae99eae7df633b5f499581e3cc22bd2640056

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e740e6ef470bc8ab9aa85654eafc2e6b4cf237a8904e74d412c77124a70113dc
MD5 338611ca4a82b145be2d9edd3aa92316
BLAKE2b-256 a7bddefb8e19f04abbd045cf998d4f85daa1caeb3701d5ad62f479b0ed3cef90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a6a9422345d5071ff5c2d68e9e44b706c5cf1a238df61d949c5b703aa884534
MD5 5c2b1ee19c5553a57f4cb2c86d2977eb
BLAKE2b-256 1502cb3f933bd3a0cb6c0b039c850843113895e869cbfea5c658553871191348

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dcd117c59ff0ae8bc0ac302fc7e89d60fd2d7ba590676fd0d35c62de547887ab
MD5 6b7c9d69edab0a0399f450fab8003ec6
BLAKE2b-256 2c93aa5eff7fc5fb9734f3fbb315a9e78091c8cbd3b49196a147c6db83f200fe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 be264d859c3af7b3238297d55fc0c9b8cb951a235c054d2b5baa19782024196f
MD5 47fe01d3aa3e97dc6c1b9185176b6eea
BLAKE2b-256 7c78f5a4e74635d7aca451c5e51665a2efc115dee917c78b61e6ea87d34fdc45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 273c6132b91a493ffcc8286e6437986578f1a567acb23c10e048b52653a80365
MD5 5aa77a5d4fbcb328035155acbbd65f5d
BLAKE2b-256 39afe2581a5320a4b77fb0a8c57ff745ea97788a88314db6a47f4f174dc2e3eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 64c402b5e12ee33500523c0f572d109eb1734d78eacfa2ee1c3d6b9fe4349fe2
MD5 5786a5380f5da1faa798fff496782609
BLAKE2b-256 39a4f4e51388bf494e0957336a53028257f074701f1bdcd1369f9fdc3e4ea3c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 434dea91e14bcb4d99438c2afcabfe91262428d6625e17b23305851a987ddfa4
MD5 bd35a7fe74ccbe53ba621d1dbf634679
BLAKE2b-256 e7a5b38e208ecf6a400f05315d9d306de79a1bc2529cea6b17f809db525d0f7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a99364a23f05f9cdbcf40c8d0746d471e4bb0d53bc3f14ca6b53ccdfc1492e16
MD5 b6c0e56199695b4649d15efab89f10be
BLAKE2b-256 db614b30244061c2cc70ccfd2a78781664ae7467d512080e646d07490988887d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 db1d57081ddede30615a338500a90ad925ce62ac40d8d5fd673a727948b90e3b
MD5 50018fd16533aff34d0b1e3f46fc0e57
BLAKE2b-256 f08574beb1aec1d8282949fbe7c50b06abd7a4724a4fa311a498d4635b9f3519

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 b2d67543859b3d87d18bd98729d667eca7ff6c1f8533ac9400b9fd013b300728
MD5 ff4f8a3a101ae64812b09fafc768c409
BLAKE2b-256 c39a901ccfaf419067dc9bf8f9f82eade9310efa3ba2ac310af824e270bf8f68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 c13b5172cae2effba012637b2019dd78cb681d38d235920482d3936c2c5b68dd
MD5 34c4b539b35d3724c9640151e2b12916
BLAKE2b-256 293f878860ee659aeca966beb63e1d8001a2b3dc17097bcc0f7dd94df77032d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08d5c364f13da115fade0a070d71711615344639a68372eee758a22e1a83cfa2
MD5 f24226ea93627ec909d3d32e0a9be013
BLAKE2b-256 74eabc3266210f7f72a66553e37f09367378be867c70c2edc180b69a8af061dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e9ec458d016781198de0fed07100d196993706859c2bc159dbe8f4e93465bb1
MD5 ae6a6fa53690b03ed94d3db6160abde0
BLAKE2b-256 a8152473fd00249d261f7e07f7523000e55c30c1c1c114a2d328290326b31db5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.14-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.14-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d251a568d55ea9bd575608f551373388a778c46e3c4b8b0221e4d414288657da
MD5 bbe7426f3e2b3abd0a7ecfc52dd9e04b
BLAKE2b-256 78d30a2b5f39deadab7aa236ccf99635c4ecf1bacc00df08ee188613a0865774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 acb304352bffaf7c50348f0124d20270720dcac0ea1701b797fc392fa442fe81
MD5 b7bf6f65b0226a47e7992c0100c4e0ae
BLAKE2b-256 ccd7e100bdb1c689fb61a186196d545ff716a27705a5213322fa23bec53b71db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 2540612ee61aee282af4088e44b27e603fd8c92ad85cd25081fa254b227287cc
MD5 de046a4bfc6063be7deec8afcc8499cf
BLAKE2b-256 9db3d73e73ed0f5176113b1414a492e47c78f9a032b1f64b12b282c11f87c9d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 114a4903d391ade4b0e40516aa64271dc52ef31861c1882b7474a1122ce8c159
MD5 b68a19288affa72e3208e2ea198f6735
BLAKE2b-256 7aa8ed9e9b6ec99d0bba2205d12695856ec0e898152ec9d565f2babfdd9f0ef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.14-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3167002986161de532ca812622081ed7ee16eda0de1a56fd071b0d2bc782e130
MD5 6108df44d53bfa9c61d0c70e8863298c
BLAKE2b-256 b29378f39636f8bb2de8d3a74f8102dcbfdae4f3207b80d7c351cb603f421d1e

See more details on using hashes here.

Provenance

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