Skip to main content

True async SQLite — no fake async, no GIL stalls.

Project description

rapsqlite

True async SQLite — 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 SQLite operations
  • Native Rust-backed execution (Tokio)
  • Zero Python thread pools
  • Event-loop-safe concurrency under load
  • GIL-independent database operations
  • Async-safe SQLite bindings

Installation

pip install rapsqlite

Usage

import asyncio
from rapsqlite import Connection

# TODO: Implement async API
# async def main():
#     conn = await Connection.create("example.db")
#     await conn.execute("CREATE TABLE test (id INTEGER PRIMARY KEY)")
#     await conn.execute("INSERT INTO test VALUES (1)")

# 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 sqlite3 or aiosqlite
  • Not compatible with all SQLite features (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

rapsqlite-0.0.1.tar.gz (29.5 kB view details)

Uploaded Source

Built Distributions

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

rapsqlite-0.0.1-cp313-cp313-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows ARM64

rapsqlite-0.0.1-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

rapsqlite-0.0.1-cp313-cp313-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

rapsqlite-0.0.1-cp313-cp313-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

rapsqlite-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rapsqlite-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rapsqlite-0.0.1-cp312-cp312-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows ARM64

rapsqlite-0.0.1-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

rapsqlite-0.0.1-cp312-cp312-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

rapsqlite-0.0.1-cp312-cp312-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

rapsqlite-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rapsqlite-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rapsqlite-0.0.1-cp311-cp311-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows ARM64

rapsqlite-0.0.1-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

rapsqlite-0.0.1-cp311-cp311-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

rapsqlite-0.0.1-cp311-cp311-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

rapsqlite-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rapsqlite-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rapsqlite-0.0.1-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

rapsqlite-0.0.1-cp310-cp310-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

rapsqlite-0.0.1-cp310-cp310-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

rapsqlite-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rapsqlite-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

rapsqlite-0.0.1-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86-64

rapsqlite-0.0.1-cp39-cp39-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

rapsqlite-0.0.1-cp39-cp39-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

rapsqlite-0.0.1-cp39-cp39-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rapsqlite-0.0.1-cp39-cp39-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

rapsqlite-0.0.1-cp38-cp38-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86-64

rapsqlite-0.0.1-cp38-cp38-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

rapsqlite-0.0.1-cp38-cp38-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

rapsqlite-0.0.1-cp38-cp38-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rapsqlite-0.0.1-cp38-cp38-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rapsqlite-0.0.1.tar.gz
Algorithm Hash digest
SHA256 ac3d1e55a46bb483014eb540f8d96b1e3d51692dea6b2c3ba17d2ca6bcb73e16
MD5 533f3af850e1bee50255fb0fbbe4c2a9
BLAKE2b-256 ca994f1dcf73c257d46339911b52f887dcccdfee5d4bb9083fcd447d275a092e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapsqlite-0.0.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • 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 rapsqlite-0.0.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e9dd7633955dc86dca9575730c8e70a6de61588598deaded7230c8db474d11cf
MD5 4aa5b06e36b77050ac200db545ac69cd
BLAKE2b-256 a0aadc529578f26d823f8ea65190d57e1757e7dd206e472f73f4adf4c71a67f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapsqlite-0.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • 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 rapsqlite-0.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4c4eab4d5f2f395aad2c6f128cd09ca59bff87a226d6c4ac6d75413348cfa436
MD5 21c06c5da3f60e1b10456d2dfd54d2b6
BLAKE2b-256 528c1e33b3cbab7de6dd76293d64f49348e6158256cb3a48e2c246e6c111c191

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fcd440d1044715ad29dcbb149cdc9c571653016e54caa6d8607e2f1b202ff203
MD5 c666cce3739b49cd4d44a7289233ce52
BLAKE2b-256 d8d93d7e925103679653fa23c9c6823406dcb841741e3cebae09098c8730c546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9167f34588ac6b791c9c9c16a2f0896c0b4dc642a6673226a897b2a7f64a8c7b
MD5 b9b35ae7aabfa9b0e96b6f1498a33a46
BLAKE2b-256 33e18214110565670bf36145a12b9be2346dcc2805b5b0502f469c00f602e53f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 316e8ede2e35febd77e46db4edcebb44bac390fe657e7232445b1b58d2f5fdb8
MD5 ac92686625c90730de8e761832078a34
BLAKE2b-256 e351a6ced68196c06cb10d414f6370e4c8b9ad03dcc02ebb88c1196991fcc579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d581f02ca967d78c9ac2b20562cccd102b27e77a27f72df2cecd533ed4adb374
MD5 9fd250f7ea8cd4c22d2b372e91deaa6b
BLAKE2b-256 c6165b77e8a124099b195caddb7234ea21a6ed5fca591e0213f54963d34bccc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapsqlite-0.0.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • 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 rapsqlite-0.0.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 89f331c3174f2b04e6841a113c4ce9707a87cb62a8a021c19a88beb50cca79f2
MD5 b775d1b97b8aa1be84167b0ed04a5a5d
BLAKE2b-256 8423b79581619b2b4b4efcaa976035bf3234d9f03bded8831f4f647d5eecd2ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapsqlite-0.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • 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 rapsqlite-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0bcf37f0a5d75bf3b77fa3c6157d632fd5e09d0b4f53b2c6c514723093b32ee7
MD5 75ff6ba99a5fc20c5b712d56e86926b9
BLAKE2b-256 ef33b2f9da06af73363d0ca4f2b64a8ea6188786dc0f669bdff3a50df939ee32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba50e2a15c1f31e84a3e35cce0c299692bdc2f7376bc2fab91421d9f33f21c21
MD5 62cfd82625daa919958eb850f3b9160b
BLAKE2b-256 7e34bae856cec1b7f303ccbc05c7505bc001c4341a42eca6045b68ca5cba773d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce36cd72cddca66460c48c5a087bbde382076c45feb873903d7f5932ab2e6565
MD5 7aa3156c1ac73c349533312f8b4368bb
BLAKE2b-256 a4b940cf87dfbe7cadd09112b0f58ea861c8674449f86763988c7f04612f016d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 924a5000ff5ea763287f3d150e10a67074d14abf1cabef0200b278c7cc249c29
MD5 882990e4af842f61962b9dc5a5f7be31
BLAKE2b-256 14dad3b48ba08e97361d31d219ea71cde4c01d89b607f710a481a7208b91a3d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc3923caf2c158db38096cbb5895156496ef297a615d2852a7443476af14d1d9
MD5 dfbf5b383784d8aebdc31d5fd8e94dab
BLAKE2b-256 d0124f8cd4685d4836632c54aeeedaab993d6d9f5eb4905aff6b5d202cbb0929

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapsqlite-0.0.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • 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 rapsqlite-0.0.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8af8e44f0625da8e2d104dd63e2cc05f635c6b393f7120c1f5ce0e337271ff1a
MD5 021ac77cdc93cbcaba036f37cc56fd32
BLAKE2b-256 cde07f837491b1946bb95057e442023c1dffc7df02b7a715aef7a905f0281abf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapsqlite-0.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • 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 rapsqlite-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6a58d671adccf16bcb25af984b73110643c05437c04ca5245327579ae0f5b0b4
MD5 651640f13798b3a4b037ede32fb7fa6c
BLAKE2b-256 b899c2406b442586522a8362f5627a41151ba7bd550004f56199a2f478e7bc38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a64c5439c730a0df2d1e57f84e1821b10e934207f7c9861367c113bdcf435e5c
MD5 c7fda9982b35f22bb4985999d1c87a82
BLAKE2b-256 9478f26a003bd60e3e6927cc4edf75fa1fa9f8829a34e634d6d87b73e1df9b5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a0a0950fb959cefe303a4ff2485edcbcaead597e2d33d665390473b97acdadf
MD5 0b68e69ca80c4064f656c9931795fa2c
BLAKE2b-256 a054947e7ef487664f7aecd2026979ce4d636c4dcaa73bb106a292eed6e04cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d01a21df8008005443c6bd3ba471ba875796be581cebf54da97c0b106ecf272
MD5 120fb38b31f505a7b83ecda3aeb60af8
BLAKE2b-256 95eb9269c8291c90ce0d3b18725d87a9cf70ab5f6ac3c4b5e6f456a4e2536bb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ee71e447734101b3465165d620afb7fcceec0749e9cea060e45db9da9be10ab
MD5 424db7f48354c6d7446c4e13e321cb3b
BLAKE2b-256 c004bfef7fae46bdf4dbc15e116ed9f5d77cf108abdd890263e322844d47edf8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapsqlite-0.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • 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 rapsqlite-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 afb66b1d005601a135b16e3946ff7e4d9dc00defd94a0a9d1c6333149e89ecae
MD5 86ae59cc961e76451326e9e5266a9813
BLAKE2b-256 639bd77b7a838eabb9b493da57ab2d0a9c528a4d59240613e1c1098272d0f637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c60ac4d63e1ac5e0398730545edc770b2882592c23024a2e0bf130a09b99c955
MD5 b2690ea3f67876c70916943df968306c
BLAKE2b-256 7987ddb89ff6080c283a545b7bb543fcca5962cb0dc1cb3718a741a781c6bfdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2adb1075624b5bfb57ca4148dc7e418436cb83b49d3a3a1d3ff4849b44b1edd1
MD5 53aeadf0050b238f24de1070a3a132e5
BLAKE2b-256 9eb6d9026a5daea0d593e169fbaea7188405b8fd8e92de8242b45ec5d6cf6be8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a0b9a09c06e7e7c1da4e1947c69c57db0fbd1499bc1c475494d8fda8126882b
MD5 026e58c5e4af327798a184aaff800490
BLAKE2b-256 fe6f4078532b0c3ff840e297d85321e65ad3f57242a5c43f592c8b0e59050096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c69c7966cddf8115149a2df3e7ac3ca8e53f6e4ab90bc95065839a67a778476e
MD5 13e3483aa6e637699203d67f72c9c65b
BLAKE2b-256 13345ee8c5b7aaca3502af309b1c5ba50fe121fecb19e7204c53e185b78b07df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapsqlite-0.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • 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 rapsqlite-0.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 90d7ccaf0310f3aa2c66dd27a87242e926e74d606b921dddba28aadf48a47d55
MD5 758d4b3ab989b5c9b41d2cd385f9834b
BLAKE2b-256 dd031febcc3f61985ee701f07b0aa690e8975e7a804489f54671d6cb69026be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94459a7eb5a33181172b03496f63a124b0f9ec04744e2e8cda1f37b8ae4156ea
MD5 7ab684a9277b0f05111fb5040444df54
BLAKE2b-256 8b78a668fca043f563976635e29aabbf3a675882699efadef9d3f7ad3a4ffd3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08a771e3c2e2dd6af46e41e5de4915a7e2b8e6b2460f9bfff108a4f0f35a1dbf
MD5 098cae70ebb9cc53be7b92677e4fcf24
BLAKE2b-256 665985729a404200d12266d04ac2fb5cedc9f4191df62a0d6182b1a8e37af3c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72de0fb534388b9db8cd687a539eb7dd09034c99463ad356318cf8d2ba950e81
MD5 1b8d75c93ffdd8c1ef5f4c707617a507
BLAKE2b-256 3429efb9a216a2f1e1c3f1cc6e5e86e99125a114a485d641b889169eee5936f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 beff63948d3fdae096dc4bd5818c4b63c3533e1ceddd506735cdb6f9e04721ac
MD5 c77074a3dd4f5d4a46395d0d82de5155
BLAKE2b-256 2266a4451ea1dbc96f27cac4fe02d4fb1b1fb551075753d8a29243f6c866f6e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rapsqlite-0.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • 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 rapsqlite-0.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2c32b4f6853629f6e069039c8c9b62a2bab25986f24a4e02d5be2c85ebf191e0
MD5 52f0d57d8c0837124257a3fbb9dee8bc
BLAKE2b-256 14d760b651d58373c4dde6378a9ae8178a4f5d86018609d6ac1733dcbdb61305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13e9fd28254f5a87c0efa8ddd6f4d9ffea5a2b7a851cae35003788b2479d5b67
MD5 a5e7fdb18f90e0ffddaabe9a42823e27
BLAKE2b-256 4347b936bfc8e95690691e846f9b95b051b6b61dddd3a1f7ab070fa9544c5f94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d085b5384bc15f1ab7cb7b6aad508855829aaa46518eb8ece6f3209622de262c
MD5 197bc1bcadcf496aa57f86c94abb4c76
BLAKE2b-256 ff971da39b8a3437180bf1c9cf3fcc2aadaa410ba119e5bb2387d675691d8064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5b063d777d8ba72a6d8231199b12dcf81df2d82104e9d8e5ff2bd1b914d0f9f
MD5 b3704d136cbfbde669667367d8f4a22e
BLAKE2b-256 3f73f696975b43c34a6fc9a5e381d2b2d1c5c406760447ff58a6c8b23a4b1d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rapsqlite-0.0.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1421180d2fdbee92e310b33702a60f57dd7c85d4a3a6f3c4c2eb78561e06babb
MD5 ac4e4cd411e60b106f05a1747ac31d76
BLAKE2b-256 b1047197df7cd48cfd5fce3279f63ddce06ef487c270a0028506c1c8f63fa117

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