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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

cysqlite-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cysqlite-0.2.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

cysqlite-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cysqlite-0.2.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

cysqlite-0.2.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

cysqlite-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cysqlite-0.2.1-cp311-cp311-manylinux_2_28_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

cysqlite-0.2.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

cysqlite-0.2.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: cysqlite-0.2.1.tar.gz
  • Upload date:
  • Size: 57.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.1.tar.gz
Algorithm Hash digest
SHA256 0ce13ba0dea3da96cdcd1a226adb33aa7023e291ffb536b8816908fb908a80f9
MD5 7c54f500d52b826cdcb7f3fec6358ede
BLAKE2b-256 14c860399719940c22b031658c89e3f21659dcf623755cc440222814c0e5288c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 79a8537eb20bd3732f5ebd1b6edb8cabc3331ae61d4680c5df6d59ce7ca9d99b
MD5 7abae3a4447623d225645146e2ebf141
BLAKE2b-256 6f0bb3d69a8d3316d594fcb3d5bc5bed944e3d6bdbccbf6937bb55dd279ac1d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a39b997130489896c24043bd1138a06df34109298f950d2a96d84d77c5346c16
MD5 8806ecceb7e5eb657c40133f408c3121
BLAKE2b-256 9f183b9f23cd31017afedc9897e3007e79299bcef4b9cb96cd3ee931695766a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c1604afc61bc5f492518c121ad7a99c942f4d0658875aaf90aa42e261e2dedf
MD5 f453768b086c98570d603f79af23df0f
BLAKE2b-256 c48c1c961550cdb77b3faa1a3874c02f41ab1a3e9444a999e895e5ed5bc7ab2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41574bd3cec145870ddf0089ec7101a2bb3f7b24de49c9c6825d2385cdfa8021
MD5 25964503bc6a16be0bec10d1c924a0f9
BLAKE2b-256 bb88d3861255dbb84ef5cfe4c0c487f606906368442e6df86384dbc3e66905cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0e3da48e4ef0f9cb69b6d70ea7945d8896492b146f19bbed5d43098e3e0fc1c
MD5 4285665d806dd4c4952e3f60909a1f96
BLAKE2b-256 bf660fad495db293a7ecca74fa31edf6f70633a0c5c295989ff61401d601899f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4d723252c6771f44948649f445ba57b2856dd11c929c3a2f4ebb960f45f6f107
MD5 2f9bfa8cdd0aabb79fef6ac86723d3d8
BLAKE2b-256 1ea696abec88862c3ee10c171a58f430a30f83b88c9132852d7a03fb201ab82b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e5cbedde76d938d024c6fb9e905b1f8ce38f22c0fd5b5f80f4d0432f54b96325
MD5 c4c4dabdd6ea625bdf6729db72d0735c
BLAKE2b-256 de139311d4a993b04a64ceddb4a784770c91a664ef95e4c25dac080484fae958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04e0fa270687d4026443d80cd32981bba6a27bb46a494ba610169a53f8c82338
MD5 e95a654d0a61dd5824ebc3c6b1c186b2
BLAKE2b-256 c73d863e12357b199a0d711e04c92a01ae11da53b0ea477d589ec3fabd3d9532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5443c1676a98ab2f5b1e80417e4dd2523fedd970babbf3f721e9692e8d9d0df
MD5 cd63727a4f19bf3da574cf320a96db21
BLAKE2b-256 c13b5207773f528273bdf0c39b70b08f78f0fcd2bbd9154b540fc98cc635f8bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2054ca64c899990f2596b002c144839732dca0302824dbbd1688f8266b46d76c
MD5 b8386919d084dd536a10c6d253108c23
BLAKE2b-256 f73983372e903e9bfbe8c6cf45c2032e3a213821bb54e36245677e8bf8848a10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ef3855fc377d453b54634a738d62b11120a0daa6657688d6504fbc82c93aaa6
MD5 7344b3cdd854788133eb03c266b52fb4
BLAKE2b-256 8a1a81ea15fc02839ffb0b5f27759e92768fffac37fe69c196538bfe747a0443

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b978f7888d82c9ac864748c6c4b9d095268ea13edb94679bb9af2aecd6baf829
MD5 a76b28abb27d0d7aa5a249303654dfb4
BLAKE2b-256 9a7895e3b751f829dcefe7209bf6874c5a66147729f2e79ed50c2cbfc8f5d972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f8f0c76cf1b746525f2962245b5d0ecc1ef41955e87a6963291f4b3c3114ff3
MD5 28ff7c4aa9297fbb4fb499d141d74a99
BLAKE2b-256 423c0b7a25fc242114c57858dcab38fd204672aa331f17433869973af2df84d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc5243ed78baa3368dc70d13ce6fad17e6fad461ba5cdcd4329b8edc93bc3e40
MD5 48c5ba90f32fa0e8fc8087784a4574e6
BLAKE2b-256 1846ebf8bc9143cb893b2c1fc5cdb59f396823ca1d05b747ec5d70db07c4497e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4150707dbe570696702712b32fc1353b7c9f576e60589081b9265dafc9fc01f0
MD5 97fb1a762505551ad49a4c27e43d6c2e
BLAKE2b-256 dd5daa6f568e89f9fd359ea39764423ed886c1ac38f3b432f2eb54d8e74bd5c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 faf50534d1eed7f830724e364be7975c3399f05233b9100933d6bec5de94e949
MD5 fe07338bab3663f1792e3b24173ed17d
BLAKE2b-256 823fce91967a968ff7ce41ff17142b032405e0dc7d5a8fb5f5f6e6643f4cd8ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 509674e7cc477eccea6c87df56a5d269eca4ecf24818c0f9946781f647e0671b
MD5 e09c2f86cf8a4aea0ceb2c8ccff5cce3
BLAKE2b-256 be7cdc3f039811e828d3f66a130cd13fa6f10ed4596c6e2611378f6acb7c8fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0536bc880aae9932cb57b90344cda2063798f7dff77b0626d9a62c9d1e9c0650
MD5 d02a8c3ec6b712366f929e72cf0729c2
BLAKE2b-256 dca7757022f8b8ffbe1b760fda7f17a02eb7296983818a9eb7ce8129ecacf472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4830105729fa601a871d0bd7534b057c66b582225e0ab37407ae634fb682eda
MD5 42681069675d9b8ba08d628409f07920
BLAKE2b-256 d028d64538aba2569574f815270851b3ab362e7d69a064c90ccfb92f4defabc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 618456fd4f57767aeab53ecde911aba42485a100ef8bc0fa5fde60a7484a9195
MD5 0edfcbd57f14dce690279c6e1837a223
BLAKE2b-256 5ca8a28ae7ff0c84553444827dc810c512b9465035bcbe1a7b582e08347e4049

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 173d53bf26af837e66b0a8495e1b94e351c1dfcc95abc7314bb8a35bba1207a0
MD5 7841023ff6f0c4a76250400bcdd01e65
BLAKE2b-256 80a3922fadb4b873f08239b4fec749a0817a63d568ec2a4da26fd6efeef59d1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bdb0bde712a2ce397e82b46201ff87c91d692d86876d6ba6a3d5781ab12567a3
MD5 5635ead0c478c6615e449c0b65f8e5e4
BLAKE2b-256 ac186408421336f99b59fb658c0b5b0492cfa95310a429b1f4a56466c8b83347

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba1d00916ade8722f6d595520fd8bec1fe32850fa5693e09145283b3152c93ee
MD5 c58f91d78c174bcae4167c94fedbf5a9
BLAKE2b-256 7c672f0e1065dd03b13a90a715551b1ef90a01226e069f8ebd609fb0d0953914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d53dcd1b98e4a93ddefa0780d269aa3224da55947c724778e2a41a9528f946f
MD5 4b35739a40df2dc3e5c95ecd37d545a3
BLAKE2b-256 3f7eb3959dd60c120ad956f836084da5502f198c0eda47c672b68467735e1520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da19a5826563f97423d4682fe31d958594d0866d5e15a2f6e28a40dde064316b
MD5 78b2dfe60f37c233be3a3637539903db
BLAKE2b-256 0a5beff7a13ca50c04bbb6c0c0a3e14c2adb8634fc9177544eb8f90614ebff0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e31cebd6b22020230e11c20e70190c7709f0850f535861ff8f663686fdede8f9
MD5 f2b0de1a7bf39a1e6acf9faed9468455
BLAKE2b-256 42f0d8c50c2fafad4f5d35da343d900581fd393c3926855ec49048d3aff99721

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.2.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fb95aa3659c142ab3ebab39321e9c614be7f76ec7ad1fe2b766f410bda3018a4
MD5 c3c8c519a0cc22f37640b213811066c9
BLAKE2b-256 752748f900498eb53ef9048429446de65adcaa9a305650d01711ba5a1710c391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4bb2e5809a3a8c965ce3fd2d1d58015c73a5bde9bc0148dfa4e0f0b8e2b2b01d
MD5 21b52e4c9af9fe9b389491f8edd963ec
BLAKE2b-256 8e38cf64950508fb9fc5100a1ad9dee44886aefeffd500878775e45f936ef8cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb31fcc850128a810868eea8d42a0f991efe7d8dc16f46726ef5a4f10f48681d
MD5 7a436db389cdcf659383a85519d0c409
BLAKE2b-256 59bcc00329ecad9b32ae2963312996ff2e428027db57eb84c9bd51c61016d0be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 563edb7d9a4abe7a273fdcc36ad363b983a85b4aaf7fe7d84d69ba4237f3ed0f
MD5 bff710cdcb2eeb4a93e9f6188a88bf91
BLAKE2b-256 9996e929ba32635818bec2504148e5d9782ff4658dc73a2f39359645b92b3470

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