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

Performance

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.3.tar.gz (84.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.3.3-cp314-cp314-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

cysqlite-0.3.3-cp314-cp314-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cysqlite-0.3.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cysqlite-0.3.3-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

cysqlite-0.3.3-cp313-cp313-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cysqlite-0.3.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cysqlite-0.3.3-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

cysqlite-0.3.3-cp312-cp312-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cysqlite-0.3.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cysqlite-0.3.3-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

cysqlite-0.3.3-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.3-cp311-cp311-manylinux_2_28_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

cysqlite-0.3.3-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.3-cp310-cp310-manylinux_2_28_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

cysqlite-0.3.3-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.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: cysqlite-0.3.3.tar.gz
  • Upload date:
  • Size: 84.8 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.3.tar.gz
Algorithm Hash digest
SHA256 f831c7185cfe19c0820c9930c4ff1371148f4a8dd3609b86f4428abad2973a41
MD5 b574f234e05af38a09019eba176a9ca2
BLAKE2b-256 ac01392808d008aeed4a776e03155881bcbadbe08f123f8243ea9ef05a4d06b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2da238b4439bea3711171c23f7790289b8d85dae619ec8d7e04a175b62289849
MD5 4501afb07488b60b2a272a58c34a61a9
BLAKE2b-256 a859af4b69152b4335a7b02d19ac23e401cea1fdafd749bf29933b754a28f9f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.3-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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cb4aa554ad5bf5e452d2dbb0e0f79a6498e446a16528126094d2f9dfddc4f82e
MD5 ea093d9e5bc6d01a18f90f93066c7262
BLAKE2b-256 f7d2f54e4e2eb968bb98e3fc45ff13293a9364587b14fe277f0e3a4648435452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e64425b92498e55ecd1b1d9c8fa5a8d473f72aa020896a13fa8717237760b76
MD5 c5ec15100bb770498132e8fba4db7324
BLAKE2b-256 ce668f016bc3b50a5c7b6dbbad435dbfa4108309e152ef028da84ea913bcd6c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 662164caf9921f9d480c71a60c11ca56f5a3d18f8f1a88c7c642f658adea9829
MD5 29ba08e84df9c4e282565e3c45b3face
BLAKE2b-256 784b9f3fcbb981eaf960143e6a0193424cef0657aaa6973f20d96e8c0eae175f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da98a58570ff6d9baeb3c22c8e62ba0b926f38a6975ea926cf889610ccf450c6
MD5 adddf441fc389bb6b900046998942203
BLAKE2b-256 4752be4630a9f09ee40c5fb5ddda6a423a541f6f56965c1405621f1201d21131

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aca160aa7e9abed6935f81dd4560504509072013005d05df771ac72296f3c239
MD5 af1f1096f839c925174b818e4f24fafe
BLAKE2b-256 8603d215acdc28cbe4e4b2f10c4b29516cd4d5a32587ed4ca68a8b7888aa2a8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.3-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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 16f28e7ad2e3aa91fb56246de86ac0fdd2be9f69fcf4e755b1295ee8d283f7f0
MD5 d9566f80ed068caec96517fe6be8fc57
BLAKE2b-256 36985347dfae8bcf15774715d09b3908d24ad273ed0ed63bacdf478af5cd4643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd620574e224e18ff211bc967443c8d3f01c3907aed7697d620b33d38ae8d8dd
MD5 b3c2123d0123eef76e356e510471a296
BLAKE2b-256 a83d2cb8df2ca6742366ab0cb89a93ec54be6af400ef16c88533f4d0a142b76b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 047e77bfc3fc1208f9a098c77e466a61d0f399fdf1b5669d6437bb64525bc52e
MD5 610d7df0f6e19f6ccac6b0be1613230d
BLAKE2b-256 0c66376c847d8862e3eeaf9521ce8da2942dac4c9c97221da7ad90dd5b23fc25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfc886de8abcbdb80525250d1dab8c9970098d88acbfa6198040b54603850328
MD5 6dc757d2a090ccc81d154b9a3c9ada39
BLAKE2b-256 58e177a4c088a4bac9ece6864f9334d5f9d91b6b3c879d868d04545ce0f1be38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e8e185fa4bec15317d14d61cbdee08785c09a99b5aaac0601d72e2634cb36d89
MD5 16ed6c77332bfd0e74604b6bb2fae367
BLAKE2b-256 c9ad99393ebf78fe69c59789590a6b4317fa48e011163e340400ba8bbe9d014e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.3-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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ab2ffb1973aac13eda238187d03347579fabc4ccab41ed486207aade4ed15b87
MD5 1a6a1d56bf4d2fa073fef064449a60ed
BLAKE2b-256 49073f9166af5f1c24e70e3e4b9422102ac5adceb6317ea5163f28afe3a64720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f60f767cc0c6a28eb42b6e3ad081ae79a45d0b5db9d2c907c9e2e644ebbfa561
MD5 f1a4ce0cf08a8f6f7ce109f8d7f412d4
BLAKE2b-256 2cc4027a3294e9c0165e83611d7420d6e894e5b691690bcf49e9ef3e7959b6d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 62c3d89e7ca417bf1e00e4a57650e1bf2e15208760106a3273272772d9a759ac
MD5 2cb296a9c54b5478cbd7bef11b826ca4
BLAKE2b-256 0ddac5ad625d2d043862e44fc7dd9c4eaf8ded348966e8dd2c5e9233fa896cc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f915cfbacddcb9cc3d419602957019bae167efd7bf4ef5ac993743916f500a6
MD5 d5320132ca67bb02dbef4ced990f914d
BLAKE2b-256 27a533e91a1f090ce77a70b9cb37e562967bf17d5ee38fe1d4e37f75652d7f62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 68214f4a64d85038c7fe0909294e8c281e2049516243650014c5052f64aeb172
MD5 917878d5ccefec1e268f63510a3473ea
BLAKE2b-256 f0540742cc157b20720e070956e527b683ab55c6236c977457ab65cfbdd2b920

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.3-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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6d31647c7857a9e61c066166b5d02be3d84cb508200b927e2addfa715b485ba8
MD5 940bd376d68d5a8477c7e9d36539ce16
BLAKE2b-256 3fafc9a5ef5ae16b9f7724f5b3d2549aa136350de14257c9652ffdb2ee445b81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c563a102b17b27b9e82094e7f8d125690faa9bed78e209604dcc5b6188827465
MD5 578235ed936bf5c4e0dd9750c6e03f60
BLAKE2b-256 f4538524b51cee3570d88d82907257e766c3a159bbad858c4ca1f0a21000a61d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd1d3e7030947ffeb272dc3371a851bc6173f5d5b37f836e84b5da2793478eb2
MD5 b85d3395112c5cba81443b61ae3ff59d
BLAKE2b-256 2ad7b3fb7dc5cf9f2204d78698ad300bed2a5907d95f99cac3015f880bdf8256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5cc7cc95590bd963c437a1e7d246e7f823721aef6f0fffe78a6c0750df874ad
MD5 881fc975211bcc0a9d4f04e91ef4b6b4
BLAKE2b-256 fa1d4e6b242bde9d67652ba428f1e787278b71963a1ab37e3fc2a3a10f26682c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 88fd1b562d18b615f719303d7ec269298bfb5473f87dfce2de5a465a1159b652
MD5 d106549463692e1cb1ea91a397130c1b
BLAKE2b-256 fe40ff996e252327ecd04aa38030a440e25b9e62d291e0f97f911c1e592288f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.3-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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 562968f522248af817ae0264fede87955112d3c8012c1e551301219b0e2f95d2
MD5 9944758a5dbbc5c47b57e1cf7a2ea56e
BLAKE2b-256 5f7b8a568533fa41af1156f6dab3d29904acbbd4561b58b7c77fb38e224ae046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c3fd3e3428da52068a33132110e7e0475cecf968f5df242138357aa245f1130
MD5 6d2e3cf54a49d34d50a099882a1895b5
BLAKE2b-256 db517a0b86fe3c01135ef1f18782f320af9bbe141bb9e1eb2dd008ab8063ff26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44760c6c6ba73ce4522bb8eb4ffb9887cdc974e7a335ea95029c52d950e545cc
MD5 1b81eeb576ebb9f4dbc5cf7235ccf942
BLAKE2b-256 0eb8d8d327ed13ca6b9de675ac9656d512fe026e4c8686dba0b7607f495e30f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0773bc6713df562a9c25aa355c3633ec2644990a4356098b43f62cabfa21e6a
MD5 2e3fccae3ce5eaef0f2fc39bf2f83269
BLAKE2b-256 3b327e44cba224ef2c43c48b11943210f57b50cabcb42596705103bbaf7ae370

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d6ef85778bc179a42550518d3cc64ea5271b8cbd783c46ae18a6fe4d2808aa27
MD5 5f3bbc9ec23bbdef3fb50b5cbd2d4879
BLAKE2b-256 c11bf79dbaa5650a83f5fed6c596586bbb7a46e36597b72bfbd3143539a5bb75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.3-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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6c260795a24cb573cddb2f227ee5ece7076cdb610e60faf140eb61ee9552038e
MD5 33537ffab9289a57625e4d471d27f4cf
BLAKE2b-256 2abefd2591cf550c17bc61f80e166e80b6f90077236eae9e0914856fe5e91801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef2c50cd806f78d6d125b3b92684f13ab4aff065a0692bdeb6dff70bf774ce8e
MD5 ce603ae7a2c64d03e0f7d4b7cc0311d6
BLAKE2b-256 53e8be3e45d89eb87c418aa98fef0cd59ac3d8897236b892fed18ac29389a1da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22d952eccc7acef6a8af7dad1bc256d3ee68a51449ad6747f9fef35b4289edf8
MD5 bbbae899f1a96a950231d89b64a5b337
BLAKE2b-256 7cbf2449f92434b8111d6650ec4b417d6bc437fe8575d9de590f3278460c7a1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d21f5497cdff862b4aa3f6d28f69fb9d05628bb0b0928d478d94bf92c8f3366a
MD5 7af8f5897f3a49b5b74c2f2c1e5f4a9b
BLAKE2b-256 9258b9d4aca4c57e1b8d0356737b59c1c77add261cfe37e715a934440d84908f

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