Skip to main content

True async filesystem I/O — no fake async, no GIL stalls.

Project description

rapfiles

True async filesystem I/O — no fake async, no GIL stalls.


Why rap*?

Packages prefixed with rap stand for Real Async Python. Unlike many libraries that merely wrap blocking I/O in async syntax, rap* packages guarantee that all I/O work is executed outside the Python GIL using native runtimes (primarily Rust). This means event loops are never stalled by hidden thread pools, blocking syscalls, or cooperative yielding tricks. If a rap* API is async, it is structurally non-blocking by design, not by convention. The rap prefix is a contract: measurable concurrency, real parallelism, and verifiable async behavior under load.

See the rap-manifesto for philosophy and guarantees.


What this package provides

  • True async file reads and writes
  • Native Rust-backed execution (Tokio)
  • Zero Python thread pools
  • Event-loop-safe concurrency under load
  • GIL-independent I/O operations

Installation

pip install rapfiles

Usage

import asyncio
from rapfiles import read_file, write_file

async def main():
    # Read file asynchronously (true async, GIL-independent)
    content = await read_file("example.txt")
    
    # Write file asynchronously (true async, GIL-independent)
    await write_file("output.txt", content)

asyncio.run(main())

Benchmarks

This package passes the Fake Async Detector. Benchmarks are available in the rap-bench repository.


Non-Goals

  • Not a drop-in replacement for asyncio file I/O
  • Not compatible with all filesystem operations (yet)
  • Not designed for synchronous use cases

License

MIT

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

rapfiles-0.0.1.tar.gz (18.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rapfiles-0.0.1-cp313-cp313-win_arm64.whl (273.0 kB view details)

Uploaded CPython 3.13Windows ARM64

rapfiles-0.0.1-cp313-cp313-win_amd64.whl (282.8 kB view details)

Uploaded CPython 3.13Windows x86-64

rapfiles-0.0.1-cp313-cp313-manylinux_2_28_x86_64.whl (396.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

rapfiles-0.0.1-cp313-cp313-manylinux_2_28_aarch64.whl (376.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

rapfiles-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (346.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rapfiles-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl (353.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rapfiles-0.0.1-cp312-cp312-win_arm64.whl (273.2 kB view details)

Uploaded CPython 3.12Windows ARM64

rapfiles-0.0.1-cp312-cp312-win_amd64.whl (283.3 kB view details)

Uploaded CPython 3.12Windows x86-64

rapfiles-0.0.1-cp312-cp312-manylinux_2_28_x86_64.whl (397.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

rapfiles-0.0.1-cp312-cp312-manylinux_2_28_aarch64.whl (376.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

rapfiles-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (346.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rapfiles-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl (353.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rapfiles-0.0.1-cp311-cp311-win_arm64.whl (271.4 kB view details)

Uploaded CPython 3.11Windows ARM64

rapfiles-0.0.1-cp311-cp311-win_amd64.whl (281.2 kB view details)

Uploaded CPython 3.11Windows x86-64

rapfiles-0.0.1-cp311-cp311-manylinux_2_28_x86_64.whl (397.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

rapfiles-0.0.1-cp311-cp311-manylinux_2_28_aarch64.whl (377.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

rapfiles-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (347.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rapfiles-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl (354.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rapfiles-0.0.1-cp310-cp310-win_amd64.whl (281.0 kB view details)

Uploaded CPython 3.10Windows x86-64

rapfiles-0.0.1-cp310-cp310-manylinux_2_28_x86_64.whl (397.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

rapfiles-0.0.1-cp310-cp310-manylinux_2_28_aarch64.whl (377.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

rapfiles-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (347.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rapfiles-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl (353.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

rapfiles-0.0.1-cp39-cp39-win_amd64.whl (281.2 kB view details)

Uploaded CPython 3.9Windows x86-64

rapfiles-0.0.1-cp39-cp39-manylinux_2_28_x86_64.whl (397.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

rapfiles-0.0.1-cp39-cp39-manylinux_2_28_aarch64.whl (377.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

rapfiles-0.0.1-cp39-cp39-macosx_11_0_arm64.whl (347.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rapfiles-0.0.1-cp39-cp39-macosx_10_12_x86_64.whl (354.2 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

rapfiles-0.0.1-cp38-cp38-win_amd64.whl (282.4 kB view details)

Uploaded CPython 3.8Windows x86-64

rapfiles-0.0.1-cp38-cp38-manylinux_2_28_x86_64.whl (397.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

rapfiles-0.0.1-cp38-cp38-manylinux_2_28_aarch64.whl (378.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

rapfiles-0.0.1-cp38-cp38-macosx_11_0_arm64.whl (347.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rapfiles-0.0.1-cp38-cp38-macosx_10_12_x86_64.whl (353.9 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file rapfiles-0.0.1.tar.gz.

File metadata

  • Download URL: rapfiles-0.0.1.tar.gz
  • Upload date:
  • Size: 18.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for rapfiles-0.0.1.tar.gz
Algorithm Hash digest
SHA256 05381b74fdc418962ce714066ce1b669de375dc3d530c5ccad775e14f6c946a0
MD5 00ae2a57211970891195e44df823a00e
BLAKE2b-256 00586b9c64e02ed695fbf675b2660694a948af6959b6b3e567144682a7057410

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rapfiles-0.0.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 273.0 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for rapfiles-0.0.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0ff47693a8d9f7406e0622fba32ed7d9860ddd845c8cc0199b104907e082a2e3
MD5 3359f395f699fc440020c83784e6f6b9
BLAKE2b-256 80cefa58db7057954ed44303001d100f109a9b4c18dac4f0554beb2ee80df64f

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rapfiles-0.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 282.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for rapfiles-0.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3a3f6bc59f1e450275ab8a6eee79b07cda0fa4311cbc1efeaca501b6108288b0
MD5 87b3911deca0e9d183b27731d427bb29
BLAKE2b-256 8382d373bf2975fd9f51e39c0fa4ea8e403cd9339bea4b5bdbed3af41e1b2d55

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17ff94475782832a1829646944a3bcf0f65608f7f87086ce058cb00da861ba5f
MD5 a304f56fe3feb58678bbe93d1a3f5a70
BLAKE2b-256 d49d79d64aa9c604ca86b1f9f1ed6c9cbca4cefe80da1960d7a50384221647fa

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1e0549d9d8968ea744f17151f78241bf7518db0935b758e2659542b9910b88e
MD5 1b07f31d83fd25710ea594fd6eab0668
BLAKE2b-256 5d003d87ba6db0d9453cd2deed9827d2c344a705001f7eb281a9e4d4edca7946

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7ca8926c54adfbe9714a2e2a048fdc1e4ef0ad4b18d4c1b2350b6b9d6e57d9a
MD5 cc980e08941c05521eb10c832638b998
BLAKE2b-256 c85ada79e98be7921bc77249cbbb50139fe3c10b75a48594d244a92955068098

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 567440167919c8d9762b2ab414a7d82edb4e6a005d85e59e5ffc9d211f1cfd11
MD5 0860ffcf932050ea0add3754fa0ee1c7
BLAKE2b-256 5b7ec654e0d16492e9451afb79e1a0b69b94fb9729ce41018f48da8ae6e681f4

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rapfiles-0.0.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 273.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for rapfiles-0.0.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a57e452245386f67caf38479553e3ec98745dab24e1d603b0129b467ec42dc93
MD5 0ddc69cd20e0a89fcb91c7cee304ed9e
BLAKE2b-256 73a543c34efff32404ff17763bb9524a15993038eeea3ea9cf360b6ce5613664

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rapfiles-0.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 283.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for rapfiles-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5d0a6d82e0518b62fbdac98dd8d6d857e7d337c5c4a5f28e9b85cdea37300cd2
MD5 7eb5be8f66531fbc553b3795b976cc14
BLAKE2b-256 82fac126d0a98188fce86188a6632963f26c0e17389bbd1931674186512021f4

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5646a8dbaf34f8213999034cc181ad52413899557a18ca953e95e59373b2d471
MD5 8d7475b727d21264d8d2be030911517c
BLAKE2b-256 a7e8d69f097386e5b70b91c7d0b98cb346617650007685b6da75f2fb21b12999

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a9a841ab6499276662554676b286c272cc1e63fe30e51e2c45e2f192003b615
MD5 3a3c6c053e38ec50c0f80ff62f839ef0
BLAKE2b-256 85286a53f5e2fda7a9c9cad2c854be02d6558a8ac460888e5d07f9fb4502e0fc

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eec32dbf64761c0dc8b90591d1aea285f49376961e605196589d35f814d54eb
MD5 07978c409709cf4b21812c2439f6fe72
BLAKE2b-256 5f374086d945db0592d07039063be04ff6efbfe04d66356595d2650efa5d53df

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0fac51a1aa78cb9d17a42950dd1bd3769509370a491ab3829897bdcfcb3fc26
MD5 1fb341f6edbb3c1671710350f147ed9d
BLAKE2b-256 e59255593abbe938cc370aef1090901c2798a3a1ec852c8851c4759a10cb664a

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: rapfiles-0.0.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 271.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for rapfiles-0.0.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 78d0fb5103ac08edddca27eb3908d0c391bcb6dfcbc6d19601f48c5d2bb5f285
MD5 4fd371c0109a1149ec775cf52ae43e33
BLAKE2b-256 7c8d2506353a7797b1131143675105fd8c7e333ac2173228a3f276cbee44a87e

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rapfiles-0.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 281.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for rapfiles-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4883c36392f7eb9d2b9246444116894589433704f29933f1af6663272d504aed
MD5 1d3367f45ba74b0e1e3b02f2744c7119
BLAKE2b-256 874e6fd1fb2a572405f53eb8f0586c58edf42d8db747c0009959c33fbd10684e

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1508fc5ed3c2f490a33aeb9630207210a72d8b6378eb967b98ef778ac22990a7
MD5 f90238d1f4e1f8a234c8b4910cad5a85
BLAKE2b-256 49e426134aded51637b9aee1ed582acee8fb9f367e9a69130d47108c7a8f4aeb

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e82f30e3d3a075804b43993d0ce9f6e83ecb07368835d1c41ac19423ab105216
MD5 79b527449551b613d560d9e5839920fa
BLAKE2b-256 259d9119a103f9386e24846514ff735b34892f6d7b80f3e70a1e57a30ead68ef

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb471789ecd4c59f50142402f4c002ce644cb607446d31c522c6df1a83684180
MD5 887e5ddfb495e2ee278f9395043350a0
BLAKE2b-256 b189e683696a696ffc284088eddf34010888971cf9c4e91081f2438e36a3e40a

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bd514f3b9141028d2f67b39e237c67fb84527570abc194c5d39ca622403c7286
MD5 187fac84d3966d820b43a0ae7adf84a4
BLAKE2b-256 a030e1c850a36c1671643dcef41b6797ad9de1cc82f2466148877963b9d8adfe

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rapfiles-0.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 281.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for rapfiles-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5355d727c917808a770d58138ab224939e00439a5f49575071563465efcf724b
MD5 516efcab2b260904f0d88430158cba04
BLAKE2b-256 dfa9fa394c110f80de18f4244a24b69d2aadf86b33222057807a24df2639e57c

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b770c6725933646abbbe96fbb2d29947785360beff4e830663432123a2cd780
MD5 3d7825d179a4755562bea6a89b9d52cc
BLAKE2b-256 1ab37dfe540be5498158a7e32274fe3892495b410f5add040f782ce72b1fab68

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69259ab28d27410afad033881cd5dd78d04a4079f8d5da7ba7f2d7728219b783
MD5 b2614d6fc282724e0b0b8fe117fa97cb
BLAKE2b-256 9a2938c5fb8f9528a3a2e1f4e4bb2bfce11b18408dfc82f929fa9a38f62de8bc

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f7c9a2bfa14b7de5c0841f27bfa4f882aa1cd243fa2b93e78c275aea79edbbe
MD5 512e5c6929da828cf74136b4a590cadc
BLAKE2b-256 bb7a4374d6d0992eb36fb7a36fbcfbb150110a1357029ecd14ba894486880764

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f235c0b7d8f5522877282f7d9968651429b1b4dd5f3fad9d73770833ad7c058
MD5 e526de18850740ec04cc5230c126aad8
BLAKE2b-256 63ce50c79b54844d7a7f99ccaa696a5b3ea68d3726f22d18a50473bafb9a9ea7

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rapfiles-0.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 281.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for rapfiles-0.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c5d6f85d7e611e2833cd27e4d28b5cf1a4cd1ce01c2481042c9021e213b7011a
MD5 58818584c9b8bfadaf11c05a3c0c1b07
BLAKE2b-256 d8365511ce591502ba8b11dc1bf621b7a0f08916cab75bda557d15e8646e9cde

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7bf8d9bc9533278074d291f36852aad4019ad4a746074376a3aa38d851ccc74
MD5 6ef786ed47b44d1d1882e2f24d4be1bb
BLAKE2b-256 47d31e5653f635e7bc0cd51b573a677092b340667b185061ff409abc8219d9ff

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98b11395332d51deeaa4c3de0e6e1023b894d7796e240a5dd1af64f69a2db379
MD5 be2f4b0ff73195298c1f25fd3ee17039
BLAKE2b-256 9d13f5f62b57e2f25733dda839be7a9c31d49c106cbaa89335e2be3a33572b0a

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28f1f871c713376c381600b84e31f71330286550d072e36f46d535703293a823
MD5 21265d7312e31d94ce0e260b0f9539dd
BLAKE2b-256 0cf72333cd46913262f96e4d887284452e44cb30358956fd832af703a4146c81

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6165beb933989443eab7c2b20276ca88341876abb1cd4063e9293d5a4eb83a90
MD5 d0d7d05a1b4cbd54b4c2cbc072fe317c
BLAKE2b-256 06571226981de59ef8917d74a22c9b2e9e311da2b457ac749182dfec4a27bc35

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rapfiles-0.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 282.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for rapfiles-0.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6eea166d859d87b6d8db81a4e3c7aaebe9c16a3bb2e9c5b8c1417034362c8e94
MD5 65763f55cb44746c5f4787ce6dc01b77
BLAKE2b-256 bf3dacb176aa86cec94cc959955e9c88ab8590f392061fd5376c5eb6711e0e0a

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d70bbc719050e6010c12b20cd8c3ec8d90e3200b1bffcc1ab7b107bd5aaae9d
MD5 96645006da246347fa4fd4797cd8c040
BLAKE2b-256 75cdbc736af7c06130253390abaf2cd721bb0efcfce703f2347ebbcc1db47cd3

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44fdb35edbf30820e16c2fd7fef8338c6dce9e5487ea5eb62f5dde9b78a6d00f
MD5 b2fb92088fea47935cd226e805afb7ed
BLAKE2b-256 49c3902a7da808b6c9480319799c68fe994645f2d9d7bfd345d15c4192d35ca9

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75ec26a1ace301c5ad5181ccce9e16df7675e453f65980505bc8c50a8569368a
MD5 a4d0fd6af407833f05f88de40ec522ee
BLAKE2b-256 e69d0fc0d1e5623ee9e73a1f500847ffa87be6128b262f05cb35b5e3f8c35d6e

See more details on using hashes here.

File details

Details for the file rapfiles-0.0.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapfiles-0.0.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b0c2973604aded38d77bf9702a5f145ef5336fe38f063b44092db9182d60767
MD5 0e5856f02ea48c470bf823af5b720f11
BLAKE2b-256 fbc26b8b12ade9ebb5a2a09b62dfe9e730973d4d9108d4dfd53444c8b4f44038

See more details on using hashes here.

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