sqlite3 binding
Project description
cysqlite
cysqlite provides performant bindings to SQLite. cysqlite aims to be roughly
compatible with the behavior of the standard lib sqlite3 module, but is
closer in spirit to apsw, just with fewer features.
cysqlite supports standalone builds or dynamic-linking with the system SQLite.
Overview
cysqlite is a Cython-based SQLite driver that provides:
- DB-API 2.0 compatible
- Performant query execution
- Transaction management with context-managers and decorators
- User-defined functions, aggregates, window functions, and virtual tables
- BLOB support
- Row objects with dict-like access
- Schema introspection utilities
Installing
cysqlite can be installed as a pre-built binary wheel with SQLite embedded into the module:
pip install cysqlite
cysqlite can be installed from a source distribution (sdist) which will link against the system SQLite:
# Link against the system sqlite.
pip install --no-binary :all: cysqlite
If you wish to build cysqlite with encryption support, you can create a self-contained build that embeds SQLCipher. At the time of writing SQLCipher does not provide a source amalgamation, so cysqlite includes a script to build an amalgamation and place the sources into the root of your checkout:
# Obtain checkout of cysqlite.
git clone https://github.com/coleifer/cysqlite
# Automatically download latest source amalgamation.
cd cysqlite/
./scripts/fetch_sqlcipher # Will add sqlite3.c and sqlite3.h in checkout.
# Build self-contained cysqlite with SQLCipher embedded.
pip install .
Alternately, you can create a self-contained build that embeds SQLite3 Multiple Ciphers:
- Obtain the latest
*amalgamation.zipfrom the sqlite3mc releases page - Extract
sqlite3mc_amalgamation.candsqlite3mc_amalgamation.hinto the root of the cysqlite checkout. - Run
pip install .
Example
Example usage:
from cysqlite import connect
db = connect(':memory:')
db.execute('create table data (k, v)')
with db.atomic():
db.executemany('insert into data (k, v) values (?, ?)',
[(f'k{i:02d}', f'v{i:02d}') for i in range(10)])
print(db.last_insert_rowid()) # 10.
curs = db.execute('select * from data')
for row in curs:
print(row) # e.g., ('k00', 'v00')
# We can use named parameters with a dict as well.
row = db.execute_one('select * from data where k = :key and v = :val',
{'key': 'k50', 'val': 'v50'})
print(row) # ('k50', 'v50')
db.close()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cysqlite-0.1.5.tar.gz.
File metadata
- Download URL: cysqlite-0.1.5.tar.gz
- Upload date:
- Size: 52.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca2402346ba996ca2243da74d4bc60302ab66e81a2699040f0a88781dc88ac0c
|
|
| MD5 |
3387920005e5433235f2ca03b6ea5da9
|
|
| BLAKE2b-256 |
aa4e260a288cba33ec9b7f99a921a60350476b4d3217a790bb52fb05df92c8ae
|
File details
Details for the file cysqlite-0.1.5-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94d9eb245c5598faa75e079cfb194c44d05fb604a969779192d740e463bbee48
|
|
| MD5 |
c1fb503a484127971e13c156bcc8d704
|
|
| BLAKE2b-256 |
8dc53b12e5cb9018c447fb67c1838f84bac5412b78588046e6df71de340511d7
|
File details
Details for the file cysqlite-0.1.5-cp314-cp314-win32.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp314-cp314-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a88a84281809d4e7bf7fa8cd4511c26ac5ad41cbe253f25eae16bf765934c0f1
|
|
| MD5 |
da61573bf9a195bdf90135912d760f28
|
|
| BLAKE2b-256 |
3d44eac9df51a24aefaa5c19696985e07452a255b7e324d2f56d292a670833cf
|
File details
Details for the file cysqlite-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04b5a907fcf9429ed1caacd0e3de63691288b7ffa231ad307cf0ae2965dadb58
|
|
| MD5 |
f15bf2b74cd7035772da2ca96b89daef
|
|
| BLAKE2b-256 |
b704f83b4439983ada59b23785071662fa65c5c80d5c00a8b299b76a1dbdf570
|
File details
Details for the file cysqlite-0.1.5-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23d6e001404c035cd692616955cbe3d2ef603be86eef6c29a77d7ec393591b2b
|
|
| MD5 |
5875e53ee673cf6b2f3b4f76484938b0
|
|
| BLAKE2b-256 |
38300617b4fd110f54c31dfb3c64e25c64cb91fee614a3d350359f4fec7a300c
|
File details
Details for the file cysqlite-0.1.5-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c911337e6996a82674e976c744312e1b0e809516be91b25873f15b3ee58885d
|
|
| MD5 |
6cf2329554745d36f03881eb887dec33
|
|
| BLAKE2b-256 |
93fda29959ddfea523e1521bcccbc53adf4806b550331eace317fda26bc1e811
|
File details
Details for the file cysqlite-0.1.5-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
027622d05a0e7ac12be3a839c8e7c0abbba46cdce016ef0fcc14545715be321c
|
|
| MD5 |
ccdb238fc7b8c1444bc4664a5cffcf9e
|
|
| BLAKE2b-256 |
aa5f3abe6147b8dd0868ccb212c7f086b0f50a0ca4b9a38deedd2ccf9b36391f
|
File details
Details for the file cysqlite-0.1.5-cp313-cp313-win32.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp313-cp313-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f6cee286e73047c3895703f555446d0ce01ada7ca5dfc9cdb163c7c8551940e
|
|
| MD5 |
2a50f46dd430618c12aa50327ef256cf
|
|
| BLAKE2b-256 |
a30446e8b0a80e668562d6b045b0e8ebc9383bf5ede04935689a841628f1611f
|
File details
Details for the file cysqlite-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1ca61ffd29504f75b25837aafcc3cb2fc2f009bcb8bafa52260c8f4489b961e
|
|
| MD5 |
7cf1430e84dbf5e10595473d10496b2a
|
|
| BLAKE2b-256 |
65d881e73a950980da4e72ed509aa613621271e43934168231ac19e47d12648d
|
File details
Details for the file cysqlite-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a3004c0fe6d395994229a877ff04e4e91b04342f533250d33709ed719a87414
|
|
| MD5 |
3bf5fcc16083d01f1b89e3ce818682c3
|
|
| BLAKE2b-256 |
9cb027099ea80f0c22410cc620a903ccf8103c64443ed6d36812084840b394ab
|
File details
Details for the file cysqlite-0.1.5-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab030839a3393ac5193dab9398d52b1d05076c51c52b079c5acdfc512adcd5b3
|
|
| MD5 |
229337004ffcf98e893afba925458224
|
|
| BLAKE2b-256 |
7475199ffbee896f3e8fb80f7ae3520cdc83822ffba35dc53be27a2dc6596cab
|
File details
Details for the file cysqlite-0.1.5-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
342121aaf44dd9fd136209f061a088b18df74a2d407c3437e8d9b32d803b5f1d
|
|
| MD5 |
f546d3845dbe4004ee203700c2ecb5d4
|
|
| BLAKE2b-256 |
257b3d4c1f37133ad561dbf444bcb18a162ed341ce566542842c67fc1e974f86
|
File details
Details for the file cysqlite-0.1.5-cp312-cp312-win32.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp312-cp312-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8d2c1ec501fccda0c1b1e3a890c666311180073c22404ceb6031ca46c8d52d2
|
|
| MD5 |
46c4a736ebaf67c9d55d385cc4cffbe3
|
|
| BLAKE2b-256 |
63062fd509f62f217d3968e61ce730707dd7ba5dc5d10f0532d30373c74846f7
|
File details
Details for the file cysqlite-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6695a82986c671ebc5c53b6936b515b9ee139813381d195bffd990307faef8c5
|
|
| MD5 |
b5d687c02adfdd2cc4fc4f9a6daa680b
|
|
| BLAKE2b-256 |
b3f8f25315aa64126852ae5d22353be95eb44e4762eb96d0fdb00385d580e7e3
|
File details
Details for the file cysqlite-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7aa8fbc6e5fd73c6cfd2612bf0af4d6b8384ef9b7c685f6fbbead41ba7c5f703
|
|
| MD5 |
2ed691ccdf7a6e3f0e3101b6453b87aa
|
|
| BLAKE2b-256 |
32f085bd8288859229fe22c7c4086e38f9614fca6b04b95244b10271566ce47d
|
File details
Details for the file cysqlite-0.1.5-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a967001af931d95aea51ac2d4d008b8df18a61539acbe8bf5caabf68c1dc87a
|
|
| MD5 |
c4e2b4c00a4184fffb1c316632c76d07
|
|
| BLAKE2b-256 |
8af2442af1b94ea70039ce98d5f3b8c12b5893a7ce9607f25ce3669d6aeb09c5
|
File details
Details for the file cysqlite-0.1.5-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
096d3385ee8c96774dde9ad658eb10d416a91c91a79b7b368a0d208157e9bc6d
|
|
| MD5 |
537a60f44ffc34ab345fbbfda03336c0
|
|
| BLAKE2b-256 |
98ac6b4b6b306552f0e266eb94c6bff23edde0246f9d863ec05c798f4558abca
|
File details
Details for the file cysqlite-0.1.5-cp311-cp311-win32.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp311-cp311-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d45a4f9bf7704a95b63beaa91320eaddb59b1d88896fee3cd62b241a86bc7cb9
|
|
| MD5 |
13890c0631cf8a4d0fb5c6f5d82457d9
|
|
| BLAKE2b-256 |
8ffd391bea8bf41267547e34716822d4f351cb811ce4c6763981a754a83c45ff
|
File details
Details for the file cysqlite-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33f73fd7f4459bea0fa944416106029ef5ce9d5cab8d233a1109bf0e97301141
|
|
| MD5 |
f3031a24dd37e6aa71b7708483b7aa1e
|
|
| BLAKE2b-256 |
b238c0db91f26bd1496533395abc77a3f9ee14c1ead8c0fc3267680f96d15d9f
|
File details
Details for the file cysqlite-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98fe120fbda3d64b59d5e31b7e577a58931b35e31b563601670c2032fe36139d
|
|
| MD5 |
7e4bd8134f9994015f2fcb6d21ba3258
|
|
| BLAKE2b-256 |
bb168167155d62a165d9d064c2f8de8902d2a655043ada1e7194243570520707
|
File details
Details for the file cysqlite-0.1.5-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c318d4545c747e3d2aaf9fe0233177c611ed2225a6cc36ab7cedbdedf99470b
|
|
| MD5 |
9806a497205c0d95e2bcf3805dd8a395
|
|
| BLAKE2b-256 |
c7b8a453522c057f531b04c16ca3c03a8d4019eb026025f24b69c58ad3296c17
|
File details
Details for the file cysqlite-0.1.5-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbb77fd9ad83494f8279ed338c5cf67ee6695cd621b319a4781e3cba05513cc1
|
|
| MD5 |
5ed1dfac05514ccbfa302695f2e2115d
|
|
| BLAKE2b-256 |
a0e306a7c092724cf7eaba03d046384fa44f1bac991368e0b9e81c42cf0b8bad
|
File details
Details for the file cysqlite-0.1.5-cp310-cp310-win32.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp310-cp310-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
facce40c113470b175fce2242330f6e0225f6dc19c3a96af5a1c32a017cd9916
|
|
| MD5 |
ab4da6d2cfee1a6453bfddfe5aea7fd6
|
|
| BLAKE2b-256 |
ca579419e124f80e4b2dcba51056f73dcf6506d5b26bb5aa2413c52adf625a99
|
File details
Details for the file cysqlite-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cccabcef01f0cd847da01cce49a92b0f7abca4219d59dc11909de9c627ca5c79
|
|
| MD5 |
6c32fa7a13c6de6ce7b6e2c945c687e7
|
|
| BLAKE2b-256 |
6cd1fa7374005028f60686124137d31ad9af6657001ff640f44cd1743a17fb66
|
File details
Details for the file cysqlite-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb68e616b4ba66849d868bd531e67ca17a21ca961bc2e2848c6fd5e5a1d07a5a
|
|
| MD5 |
dfee18e3c5a97ce0e55cfa9b9a5d1e6f
|
|
| BLAKE2b-256 |
3703d8651398632a55884d5a8bb0b00a4d0995ca6acdf958c8d11915486987a7
|
File details
Details for the file cysqlite-0.1.5-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b25d646b1dddd55c958cbf8184a93b981283331137e50f382ec2943123c0e9eb
|
|
| MD5 |
045365c9c3e638f214362e5abd50f893
|
|
| BLAKE2b-256 |
f298a2c071b3eb5121baa78ac2fd5722ca9525a5bcd8bacbf348c882d46c55c3
|
File details
Details for the file cysqlite-0.1.5-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
caba3c8b198d82a89aad76e98c1fb10475a3bab390864dd1067b673a07bf0583
|
|
| MD5 |
6c3df61a0c58a389a0edbb01dbf9e68e
|
|
| BLAKE2b-256 |
fca541366c36d9642f6f36aeb1c3738b75a39483b756be044f2dcb46b20966d5
|
File details
Details for the file cysqlite-0.1.5-cp39-cp39-win32.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp39-cp39-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69ce4d5c555c81feb0066ba302415e2016e5b786de5868353dbcd69715a97b76
|
|
| MD5 |
e6dde3b58ad728d5e7b622101cf60b6b
|
|
| BLAKE2b-256 |
c0c2aef2284ceda9f56adfee02c639130d23b1f2250256df41b61bc8ac3c36b9
|
File details
Details for the file cysqlite-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64bb511b11d69c7d02f18d70b3b4a25b2dea4f770016156d44925899d82fa20b
|
|
| MD5 |
5c344ca1c2d05366d0020ce5733090b2
|
|
| BLAKE2b-256 |
25ae1a3b24255ba2b9dacf4a3c17a6a78471bf8c73fbb7fb4876bca1b880b5a9
|
File details
Details for the file cysqlite-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c0127173519e832c1c2fad7cc762be0048b0e2ef238fd02f1b7c4b28b376237
|
|
| MD5 |
5d503ddef4bb5c1a5c32a1cc35a78887
|
|
| BLAKE2b-256 |
9fd36951bbecbc3595130536dc1e0e4fc73a1aaf3d040f4f3091d695c1a58c13
|
File details
Details for the file cysqlite-0.1.5-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: cysqlite-0.1.5-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8193dfa9325c52aff36307153eed03e55aa9e8bcc06817b22a513e46a2e52210
|
|
| MD5 |
2e006ae9e6d9be9bf52b6323025c4735
|
|
| BLAKE2b-256 |
5850726143ccf05863d7786137887a2e4afa82b17bb4a2c445f8163b8d6eeaa3
|