Skip to main content

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.

cysqlite supports standalone builds or dynamic-linking with the system SQLite.

Documentation

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
  • Asyncio support
  • Easy to create fully self-contained builds

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:

  1. Obtain the latest *amalgamation.zip from the sqlite3mc releases page
  2. Extract sqlite3mc_amalgamation.c and sqlite3mc_amalgamation.h into the root of the cysqlite checkout.
  3. 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': 'k05', 'val': 'v05'})
print(row)  # ('k05', 'v05')

db.close()

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

cysqlite-0.3.2.tar.gz (79.5 kB view details)

Uploaded Source

Built Distributions

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

cysqlite-0.3.2-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

cysqlite-0.3.2-cp314-cp314-win32.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86

cysqlite-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cysqlite-0.3.2-cp314-cp314-manylinux_2_28_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

cysqlite-0.3.2-cp314-cp314-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cysqlite-0.3.2-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

cysqlite-0.3.2-cp313-cp313-win32.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86

cysqlite-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cysqlite-0.3.2-cp313-cp313-manylinux_2_28_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

cysqlite-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cysqlite-0.3.2-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

cysqlite-0.3.2-cp312-cp312-win32.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86

cysqlite-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cysqlite-0.3.2-cp312-cp312-manylinux_2_28_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

cysqlite-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cysqlite-0.3.2-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

cysqlite-0.3.2-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86

cysqlite-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cysqlite-0.3.2-cp311-cp311-manylinux_2_28_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

cysqlite-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cysqlite-0.3.2-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

cysqlite-0.3.2-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86

cysqlite-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cysqlite-0.3.2-cp310-cp310-manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

cysqlite-0.3.2-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cysqlite-0.3.2-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

cysqlite-0.3.2-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86

cysqlite-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cysqlite-0.3.2-cp39-cp39-manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

cysqlite-0.3.2-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file cysqlite-0.3.2.tar.gz.

File metadata

  • Download URL: cysqlite-0.3.2.tar.gz
  • Upload date:
  • Size: 79.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2.tar.gz
Algorithm Hash digest
SHA256 e5f73914a9ba52689ef9c2d602f15d97167eeb00d94fb21db51038fba8cb046d
MD5 464994b3246ec6fb1cc87719ffd63c76
BLAKE2b-256 81c4f8120b13a1c1eebf22de18cf936f21c618b706477c398cf7545414caeb88

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cysqlite-0.3.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6a42a543a0e0232a70fc6e43b9ba6b228b53f843327dd95008775314501b4f37
MD5 c114d78b0e1fac958df1fb624343d342
BLAKE2b-256 ad89b4d1d7b3adc354ab1ecb9d3ab44d5ea944a2fcef6cc3ad50d38900142549

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: cysqlite-0.3.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2724b50443e5a78b8643108ff5c7128bde65343c5c8586bc1c7b41bce040e57a
MD5 b4641ee150466a7bf5204e143ac2249c
BLAKE2b-256 83aefdf69e2920363f179388c021ff07817f0b1b3448938c7e20c05c5a3f41b1

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 742c1f832e7d17785bda49180664198cac34dadec5506ad2b1f3c142b5ffbe61
MD5 e3dc6eab6e2e457a688e669f448fb4c1
BLAKE2b-256 65b0039f5a3859722b0df58379291048406cf3f9a018717bd47958eae40f8e2e

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 916dde0946336b2be4a559919a4ee5b9b2bc28e6fc74e5b46885aa8bf9b83a0d
MD5 7f96699029f69565f8538b5b88e77be2
BLAKE2b-256 8b251a189aa1b278f7b2b8256b28f72e9d71f182d8827082095d153c5b1de66c

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db3dea87f9edada30e110f35e804bb8c38cfa278e2d687173fe8e58a5d75e4bd
MD5 4ee4fdfae05ec7833910d749026df7f4
BLAKE2b-256 2ffdc852a6a4c7289876933cf3c422373dc5d1221528766d2dc88d639522649a

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cysqlite-0.3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d7f3c918bbdec4c50328b2f9ea5766e8ff79bb0280637cb20fa917e553b6a98b
MD5 892aa101c42607b29f228c219311145c
BLAKE2b-256 2b686603d863c746ed5fc6c8f0331d3b06fa7584a2e6f3256708073c6b1808ee

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: cysqlite-0.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7bab12aa2f8eb52e2fd14cb499fa25301e09f50f159dac593d4f42efc0028ef7
MD5 4878d11e3470c0bd936a4c1833ab8c55
BLAKE2b-256 90ea23386dab6b89ddf9f3d51949b34a4f26762243ff7d4c72cca305e41a2ac2

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3c09b6f8e802f24617e128f9b9d61ced173d803c9d7e1d0d244e58e42ad4105
MD5 50aba6946e9fd7848a4023a517bdd4b7
BLAKE2b-256 7d93f4ece98a6f9cc353ecfb5eff52adaa682015bdfcaca7ecd5f50a7355008b

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc0598499a9ff63871a08f0f04581090ce2088ca4e902a00f028188d060e6c3d
MD5 33afc8fdb42b9d425c95c1d9ab39b440
BLAKE2b-256 eb2491c04b8ecd459b535c7370629cfd836240469ac90ed2d30dd518b685ad3d

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0d5b8cc4fb11990dc4a9b7dd19d3403b76b7f1d35c18706d2ea51687220df3b
MD5 0fca5d6eec759db8f0b4a733cc79c98c
BLAKE2b-256 01a072eb88f5584b726cb36e9eaddc632ff1204902fbf505680f8ea9758a76c7

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cysqlite-0.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d64e94854bf7d28f9e1e80c514b9313a1d78cbf9e4547fe3e206cf55de425108
MD5 6c8180078d1ffb50938aaac06d0c19eb
BLAKE2b-256 273dc69f0711c6d53e14f3c47e2de00d3b3070c1ab52856d37bb80e7e041b6c2

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: cysqlite-0.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bd02f068976418f9440cadecc01f7c2c1b04e87d1674631fdfaabb39bcf71e53
MD5 16aedacc2539c2d372b59ec3beb49d58
BLAKE2b-256 793c3c9184ea77dea6ea52d751dcb01a9607cf09c119b6465d23516416cb0c48

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14955714023249a8b46f249c5f398047e1171f12396ba882010f892c082f66a6
MD5 bd4ec961115736e5f4aed4539ae93558
BLAKE2b-256 84326496bda0d227c5067e5b9e54143a57819a66a9a694dc0cae3f8e622a9c04

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46a02473057450b7989fbf61bc09249d56a2ca5b0bd3763c9f86704807359eee
MD5 e66f6b7f96e9a43055a9c1909ef28eb6
BLAKE2b-256 5e60506b705535b85881696fe0d88a720f8fdab872b937d0df19df6158059e69

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2bbb566829c61ce9c336876f47b411d7c4f609bd57a1c685798e37911ed8917
MD5 45b92e7a4b87e39ae240855388f34c13
BLAKE2b-256 170597f1bb4b45369fe9ffdaa68ce1e5b597ef68dd5dda4d33a60b3df58d0f13

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cysqlite-0.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9b6e97ca26fea590103ccc29740d68c87931ea9a33dd35c05d3610590dcddefc
MD5 5d839f2b8a9b957902be6b989e8d1aff
BLAKE2b-256 f77178925434ae088cd3d1d4536ee34d5c41d837848e2b1235d5053c9ca94b06

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: cysqlite-0.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a4d9cdb5b23a56462eaf39d8874d4ff1c86104036227f48c3b2e71fecff35d01
MD5 952ce61912c8b5a520b1828287667fbe
BLAKE2b-256 0ad7129143b3b66adf64e34b2e4dd87cf654d26db0769d5565f655515d3a7235

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a28259483c5c5306ee50d9f5554fdc3a6dd813a84e192f49e7c321f8eaad640
MD5 912fb7967ec6e0ed3ce01d850f508e2f
BLAKE2b-256 270459a5f3ab00de73042f07768944d55af8c81caa874aafe6703170add25ac0

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d83e5684a182321a0de0be53d9ce0c7ddda3afec45a5bf2d7fec8736d565982d
MD5 2c9dcd87a60c76bbe2f2bfaca6def2ab
BLAKE2b-256 a9ec5200f3287b0f10e1efead9e601293ab67bd8bb3ddc77c9230bc6c6a7415a

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f5631a160814793a7b0be6508c9fae6fd963181bf0a199bb17a1b5230a83d68
MD5 1011794190eb4a7c3b34e6f28abd5103
BLAKE2b-256 e9b6b81a3a2334d15352603e605d1880ce7ce984264d5c8f6446a144e3de3fae

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cysqlite-0.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6366ff2dcf94ecf1a4b8c24dac111e2b09cf3468bd3b140bcb058555888b8b84
MD5 116846449629a8e76994db8a245b3e55
BLAKE2b-256 34792fa2f7d579918e9f009847354aafe450498067049f905eb8425b2f90931c

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: cysqlite-0.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a34b55b538d1e3e583f4073edf77303ab80ca84e8e9b3ac1369d43e25ba8fc6f
MD5 1f681fcefe1dce37c25af6a9df3634e4
BLAKE2b-256 1cc6548c1a4ca1aba7795e0757e10dca5528e00d9b399e8e51266a04d1f64936

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1d02ba519b15cbc79f8d276ba5dde0727d03b0f989cc967f7753763d785e468
MD5 fac02b69913e8370f5741421cd5098c9
BLAKE2b-256 0c8fc3e76b258e0aa8340b062521db807e1b3dc6bbe6c601960263d93292e23d

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 618740402cd253e3c3d288e42ad41d10bbd2bae83329a729784f842ec0198415
MD5 a9603fb0037dafe900c6c757fa72173a
BLAKE2b-256 0079208ba4461948b688500b14b7559abe92aca9dbc0332e6349a5b9d2ee0b3a

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7531d91c04e1a19a070ece827302abb76c5185a6bf76796285d742dbdd2ba9a7
MD5 35671b3fe3f20aacef8c34149c9b53f0
BLAKE2b-256 dd68263145607efdff4f98918101061f8c42a6f960a2cfbcae7417791eb6b493

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cysqlite-0.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 339a72f725f3564ff68c1509a82d866588870ec73b41d1b2e311333945e48913
MD5 46afe6c443f12ed790fda0325279405b
BLAKE2b-256 0a4956366ff2ecd6a7683fe9a04fdc35b89c98a365acf96a4efbaba7b4d1136b

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: cysqlite-0.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cysqlite-0.3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6376e35e2e6f95d7bdfcf9be95b4069b26f1555d5ab9259f7991fb10d102324c
MD5 90ec1816137609978b90826615315b41
BLAKE2b-256 9854e0608d443ad121677e349f7525f4bd1a31421d838e4490e7d9f6e27abdbe

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a78be04209eabe27bcf731e410131e9200e08b606630fca74e6946bbc07c23e
MD5 92143698f575735184b37d2b084277ed
BLAKE2b-256 fa68c83db555b1b92208e6746702617965395030eeeed9755201d039a312f5d3

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd7ddd549da5af84e7c9b0d30d098410d96617827caf0bed9de1edb4b48ddcb9
MD5 98b0405ab828b0ce3e189564302963ae
BLAKE2b-256 794b552d4bd4e1cd1f6730371ec03c5b7f7763154af20caade1f3e575f64ee43

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77d25f6cd9952823d1636013fa74442ccd025bb14b592ce9dd62bdabab672e72
MD5 13a392c69e51c8989788858141359b6e
BLAKE2b-256 a2518b000549c50c8a202c9d62bef1b67a0ec05fb21177d6ba29629cd811c32c

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