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, but is closer in spirit to apsw, just with fewer features.

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

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.2.0.tar.gz (56.8 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.2.0-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

cysqlite-0.2.0-cp314-cp314-win32.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86

cysqlite-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cysqlite-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

cysqlite-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cysqlite-0.2.0-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

cysqlite-0.2.0-cp313-cp313-win32.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86

cysqlite-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cysqlite-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

cysqlite-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cysqlite-0.2.0-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

cysqlite-0.2.0-cp312-cp312-win32.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86

cysqlite-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cysqlite-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

cysqlite-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cysqlite-0.2.0-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

cysqlite-0.2.0-cp311-cp311-win32.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86

cysqlite-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cysqlite-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

cysqlite-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cysqlite-0.2.0-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

cysqlite-0.2.0-cp310-cp310-win32.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86

cysqlite-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cysqlite-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

cysqlite-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cysqlite-0.2.0-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

cysqlite-0.2.0-cp39-cp39-win32.whl (1.3 MB view details)

Uploaded CPython 3.9Windows x86

cysqlite-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cysqlite-0.2.0-cp39-cp39-manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

cysqlite-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for cysqlite-0.2.0.tar.gz
Algorithm Hash digest
SHA256 1e5fd363526fdb422262e1dad3614af59565c26cfb9f50a4caa8e77bcf2bb4b0
MD5 6a6747c50c727802005b7b40571ee7ef
BLAKE2b-256 fde0b90fafc76eef95486d8c8b0051be54d807cfdca5f819a2b28bb3b162f521

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.0-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

Hashes for cysqlite-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9b2bba09d0a8200697a547c12ecbe0fec6bde20b67900ac9ece9380deda9f2c3
MD5 a15db97427f0ec0a6efbb9025cc74242
BLAKE2b-256 b239885851e7b17fc32085fddbc24e1dd41b3e594035e26732aa27138572b252

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.0-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

Hashes for cysqlite-0.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 78186372d8d78af4fadbb18c3a87d4155e79c80a4ce24722c7cc8f2a84eb4d60
MD5 994d64810d3e391501976d9ef7bcda8c
BLAKE2b-256 569c529ae84da4b3a69fe8c9528b66b67ff79e53a9acb8060bb11fcc6134b876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bf7f15bf58060a61250e8e7f0e7690b4acca917bd38bcc023d605dee103b4ae
MD5 d6edc78b99a24b683bbb584845275582
BLAKE2b-256 a29aa3fddd929caeafdc02b240d2f13c08316116a7ca9c5b2bb9c06d0ef9df15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82fbcf069437fdd02e6b069ab46a81b4b7c4ce5b537ea538521c22a2f55d4462
MD5 0ecab3b9f13225ecaafaf30e061467e4
BLAKE2b-256 0532e5c153fd2a5fed92b548427e393c5b0d010cb2a316a308ef84c64aa9ada8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e71e607662326e202fe0fddd8115ddaa6791bea1cfd08a9058e0386c642b56d8
MD5 02f8233174faf415aa57ec9fd3d05493
BLAKE2b-256 8735434b2bcd69a8e481549afd0474a12838a088b43336bc39699f2420646f4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.0-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

Hashes for cysqlite-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9d587b9252612bcd9a7f722ac76b839a7ad42642c4155a95396b2f1fc42ade52
MD5 5db1b6c620351b831ecfd1998968e54b
BLAKE2b-256 49ae4defd4d9dcac3811bc9149a28518a8ddea300208bf3b4bef18ea6897bc22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.0-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

Hashes for cysqlite-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 46815a7cba2864d39e4f31daf16a5651e4a5be15d7e1f8e7ac49bd948e138505
MD5 ebe97871a38b361a2e582cb87471fa2d
BLAKE2b-256 b6568ac32d515bdb97716872d4f5e53c269538449900d7aa7e1a0068018426fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65fc41db3f5d08d15cf60201aa11ae8e3b2b2668539c1bcc7691fc68353b2e4f
MD5 6523226ec069bcb10e8bb6669eaf437f
BLAKE2b-256 e9faa2e3470eb7aa23d51528c3bfcb5a642f5edf58f36bc6092cdf17aeef9e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28abf2f6fac0556923af7164171de28eb35259fab456864fc639be959b4df95a
MD5 c26f62c17f958148666033c1c010bbf0
BLAKE2b-256 a0c0c69392cfe8b8090def3a59815f52d47aed0e081f6a65359d70b46d073bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e02f46e143fc099dc37e80ce7d03bed1afe26298135582521a7125f80c86afbb
MD5 834868e7aa1c0a04749a8841e960c614
BLAKE2b-256 199bcc8b1256f2957367c64d115ae7b0d3fc8dc6b89dce9865576395f9ae153e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.0-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

Hashes for cysqlite-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d5166de84047dec381fee2d51e8bb22e09a6e56150b9a3f3d113e625e1edd7bf
MD5 eebba197465a0823e7707520c1507b47
BLAKE2b-256 122541ab321488c38060160ba9068a354fd4a8ffad401c5bf3097237ccc5b893

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.0-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

Hashes for cysqlite-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9d31338351d2ffa6b34b0cb57914759538e61eb31a10a466fdd1adb36bd31bd3
MD5 fcb1807f035392fd4246847d1a7d7011
BLAKE2b-256 91f085066afa75698968008780efc33e5fd3bdde30a8e2e1f312959ad5f5709e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d753aab94847c3cfddcc67df1835b3be063925b38b209fdc7cf07a763a5e624e
MD5 280f85136797eb4f7a880569414172c6
BLAKE2b-256 d295100be279d6fcf90ebfc2227079ecf348c81f901f6617e48d79ebde0dfc9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f10586b27c473c9019c9eef300c06b74f7593d70f318431b4446eac9c2fd993
MD5 7f10a54f7d9beb8ac76b465776ae2086
BLAKE2b-256 101db4035b3113be75fba6dfa1876f2b02bcf3e9279498487a8465f952ff0a5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c32f72ee70375698e333593213fbf06051d51cb6b2793b84cf8df81d341d50dd
MD5 a6493d47236e4557ee0f494211dffa13
BLAKE2b-256 dcb6a12de8712f0a35242c80eeddcc80995b11eaf04dff288bb05b23f25d60b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.0-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

Hashes for cysqlite-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 520d37758239b5929b7d8eb5ca28b76847acbd2cb5009fbe3d65e3b82cfebc1f
MD5 c3fc8a8149288fc40ba4c2c9a2952bbd
BLAKE2b-256 1e0448d959ce67338fca9ccdcf4e0a1584e5d35866df33116f8644757ab0b7a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.0-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

Hashes for cysqlite-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7773556060857b6ad61f100c54d598d3686c3af30a968eabc338654e39bc38a6
MD5 695c9f71c26af5edb0aaac549426fd6e
BLAKE2b-256 50039756b885023c7dd81500cacdce6d74321c48a611b1b3468d9ea2200c3594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9cde1b178693908bdae708f5b15d90030aa274517f53917ebed6b161494ad010
MD5 23bcb9ce4059b23029dc38e27eb29ce5
BLAKE2b-256 50834ec4a92d3f42622525a79f5e25ec5c418b541966b7604939d8ac083cf803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b4663853434d4a14f5f49c63ee6e53b9d7269830a7405a67e8ba264c199317f
MD5 9374af7635f6c805a52f33c08c41e9e5
BLAKE2b-256 7345af3021c78f6cea4b268d6da60d6f502bd7972f17933bba5f9fde5c062e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bf41f241e086594516cf462cff7de322f16211d2731be55f3b4ef8ac723b355
MD5 6fb388c7961fedf026eb5649982e75dd
BLAKE2b-256 3ef0d9cb48b76c24920675f858b5d5ee7b2078ec836a0627c0d05c2d60c20e01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.0-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

Hashes for cysqlite-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4c1b65984840852041277fa5caec25298fe467cfb4bfe702830def0451f4909c
MD5 3d0bc391c90db26c0ba037087caa6853
BLAKE2b-256 0bdc60edcfe365f0c419d441c2546c6b55433c60f652122efabfaa4ce33e9c66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.0-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

Hashes for cysqlite-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 35e9c5a090251803e6ad5cef42e40031b7b09df5e748f6e11afe3d46676bb10e
MD5 e7548f37dbac8c121d676a6843446721
BLAKE2b-256 0566493dd88731f3f7e074c2637653538fc01ff650d7eaf092bf4433fabaeac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69835b999b0c77a651757cc86fc2dc153d1ae046a78b31f81f786db24438f889
MD5 2020f12bb1b195d8d5b491499a4595f6
BLAKE2b-256 091fa92d8d1bcc3b6568b8e298756bf6f5259feef10d1e1f793f2ce104bc4bbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c33bd779db9f619e828857947c53cef040a96e605593646029de8b66992551d1
MD5 88f1e708ef5e621b9ed9890b11e8bb3a
BLAKE2b-256 908e11bb6f5a58ff6ff12090f6eb560dee487b8bd28ffb893d7f299989087f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46b530146092a0eb76169ee990d03cb36e5e36d4ebee8d0f4ec5d0b34fff136c
MD5 90b4314b8a4f7be0cc4b4312086323bf
BLAKE2b-256 21f58ad7f8306ada6c2ae97ce5512d11a31d197e00f6ca40ad573cbc3b51806d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.0-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

Hashes for cysqlite-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 db6b2f398a1fc05a05f9792a17955904993cd3d05e984dd9462c60de4039e760
MD5 914994fadd38c1dfbd547300bd6045a2
BLAKE2b-256 a84e09af121dd15ccd5392cb681115512fc6ccee9f40ea24d74cc3e4ee4ce2ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.0-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

Hashes for cysqlite-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 70ea189ca3528055a7312d45251e06ccc581ae5d68e9666556428b0ca51ff9a0
MD5 5b5939129878d3084b2af4718db56ff8
BLAKE2b-256 29ed2f281578fb77a93c55e6a819ca405224bb90e12e14f6d28ea408982ca1ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 941e1a33917798f7b7fea3f64decf1e879f3a2ea230f835d1ed75c6e0ad11501
MD5 5a03f58b45bc3d8304501f45e64e479b
BLAKE2b-256 cfc39972816ab98cc1cc7f1f378b52d67b1dfb9e26d4507849267f4018788508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d09aa39352f69335b7e1233106f3495858debf0d1f94ec2655602a7ab903d966
MD5 c0798364219dd6c151dbb65911939aa1
BLAKE2b-256 a0ea5d6730ff589452d496d94cc27da8e1036e77940f266f393f02ebc783d91d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e33713a7b3b5bbdfd2ddb82ebb4fd6529552e20d53d2f42af1001da183bebb4
MD5 dfc86f5b279ca4a4899c5c4d65d3d223
BLAKE2b-256 ab2bdfcc82e13b668306503600d2df9c188285eaf89f6c0b298f89eef4cbef71

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