Skip to main content

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

Self-contained builds embedding a SQLite of your choosing, SQLCipher, or SQLite3 Multiple Ciphers are described in the installation docs.

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()

User-defined functions and hooks

cysqlite lets you extend SQLite with ordinary Python callables. Functions and collations are registered on the connection and automatically restored if it is closed and re-opened:

  • Scalar functions: db.create_function(fn)
  • Aggregates: db.create_aggregate(cls) (step() + finalize())
  • Window functions: db.create_window_function(cls) (adds inverse() + value())
  • Table-valued functions: @db.table_function(columns=[...]) over a generator
  • Collations: db.create_collation(fn)

Connection hooks observe or veto activity (pass None to clear):

  • Commit / rollback hooks: db.commit_hook(fn), db.rollback_hook(fn)
  • Update hook: db.update_hook(fn) (fires on INSERT, UPDATE or DELETE)
  • Authorizer: db.authorizer(fn)
# Scalar function.
db.create_function(str.title, 'title_case')
db.execute('select title_case(?)', ('heLLo wOrLd',)).fetchone()  # ('Hello World',)

# Table-valued function from a generator.
@db.table_function(columns=['value'])
def series(start, stop, step=1):
    i = start
    while i < stop:
        yield (i,)
        i += step

list(db.execute('select value from series(0, 10, 2)'))  # [(0,), (2,), (4,), (6,), (8,)]

# Veto a COMMIT from Python (a truthy return turns it into a ROLLBACK).
readonly = True
db.commit_hook(lambda: readonly)

See the user-defined functions guide for full examples.

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.6.tar.gz (534.0 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.6-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

cysqlite-0.3.6-cp314-cp314-win32.whl (938.7 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cysqlite-0.3.6-cp314-cp314-manylinux_2_28_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

cysqlite-0.3.6-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cysqlite-0.3.6-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

cysqlite-0.3.6-cp313-cp313-win32.whl (920.7 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

cysqlite-0.3.6-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cysqlite-0.3.6-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

cysqlite-0.3.6-cp312-cp312-win32.whl (919.7 kB view details)

Uploaded CPython 3.12Windows x86

cysqlite-0.3.6-cp312-cp312-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

cysqlite-0.3.6-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cysqlite-0.3.6-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

cysqlite-0.3.6-cp311-cp311-win32.whl (919.5 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

cysqlite-0.3.6-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cysqlite-0.3.6-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

cysqlite-0.3.6-cp310-cp310-win32.whl (919.9 kB view details)

Uploaded CPython 3.10Windows x86

cysqlite-0.3.6-cp310-cp310-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cysqlite-0.3.6-cp310-cp310-manylinux_2_28_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

cysqlite-0.3.6-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cysqlite-0.3.6-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

cysqlite-0.3.6-cp39-cp39-win32.whl (920.1 kB view details)

Uploaded CPython 3.9Windows x86

cysqlite-0.3.6-cp39-cp39-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cysqlite-0.3.6-cp39-cp39-manylinux_2_28_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

cysqlite-0.3.6-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: cysqlite-0.3.6.tar.gz
  • Upload date:
  • Size: 534.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6.tar.gz
Algorithm Hash digest
SHA256 aaffdaf5a727f2b7b862fd64125da5c27f6b80083a3edb0e070154e5a9c09234
MD5 a7a6a78e1aa2740ec11e59fe383f9347
BLAKE2b-256 93686341fbd61da7650062ce9e808d081070fa9116ace13e656f9ee12177981b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 38b8d528db8faa446c9a730445440e45fdd182aad8126d8302f2924cf702ffff
MD5 7ecc5848597d0313b1a7c22c99d21fc4
BLAKE2b-256 512ad3944c03dba34b93d81ba0c46d31bef8165d0d07c4948e4e79a9590a9765

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.6-cp314-cp314-win32.whl
  • Upload date:
  • Size: 938.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cebcc14ee1eb5a26e3ab1e989d9af8e166664b98ff2c09b2f3f5e502b5c70824
MD5 6b863b214e8646dadd5430b2b8e8060f
BLAKE2b-256 2228ff6da2b3489b82c16cd7c863dd419183ee3265f89eb4f84fe112bd53b3b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd4c79899961a1018781dbe04c6b70517b9caca9b48efa730b905dbf4f6592da
MD5 e6e1197833c8007ec80762ef2bb702e6
BLAKE2b-256 628198a23c3f486799ad48d916b06b95f567710f9a0c9aa8ec7a5d1f53b1c09b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d31bb258136edc5956d9f6e1f999237072aea94e7a00f0f33a94b9e88d36f79
MD5 97b1cc95621b15d3bbc8bd768a87f819
BLAKE2b-256 b538fe91f9343e4d1e718fa344f9f56165b1f9a4d550121a8cd634c81bfcd4e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47b719730770c79c9f6845d9d68da4cbffc7da8a6ce632014ed19ecf612e2bae
MD5 d020772d15d8b9139e4dbfe3044bccf7
BLAKE2b-256 39feaed7681feda8b9a26ea8e904bbd4ea93d751943eb513cb91f39f174b5629

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f1a403a96bf8e0e16752279c1639985d37f7f95725794c2e5c849141c7262a8d
MD5 8ebae753e6121565514bd2cf0fef9898
BLAKE2b-256 8e9efe8e00106eaac0e85ee2ccd933058f1e1f0e359105120a2b351f93064a3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 920.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9ba65caa5e396d4df1d8eb56821fd5ebdc0953b874a24e3468cdb21ede84e842
MD5 e54f6e17c3fa909295da1ef85b229f8b
BLAKE2b-256 2d1c043d1441a6fac5fcd01206946cf5368054ceb91777e53616088735d9563a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d9e3fddbb501a54e713a97b90b1c0cdb6ef555fb4796af2dd8d14cde00f843d
MD5 305d21d8f5d39cc6cc5b9e958d3e6e53
BLAKE2b-256 5e3f04c532d8b08191f82017b05f8debfebac4285370cadd080ae5e1891b4fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3886484215930a2118f13851531fce5779551b4b7ae1776959fde01abf7fa7ec
MD5 c2e5f0e46f63ce4ee8643c7c3ede7ffc
BLAKE2b-256 2585e18b03e9650f0ba7b9bea45faada8a1607995248cdecd0ba68f051c1ff40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 354bc00c0d5880bf0aa30b174a985f491df6a931fdd44a45c3a4c8648a73cdc9
MD5 78dddb694dc70317180b86450637db78
BLAKE2b-256 93fa78090b48df0cfa9f881d0cfedfc57c4a2f6d67abb3b9552b2b566c1cf8e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6fe635d29879a6ff72a2f26762f32a2d2dfd4e9a22447f97a9c2a98c9422c6df
MD5 5d865ee5d38756438ea069f908ad9347
BLAKE2b-256 f8819f46b6a2999f37b4823f6a2cf8e2b79fa09a7b5a21a831917ff39901395e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 919.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6b7cbc12c4fb8ce8e4efb6cb8c47e7dbbaf974ccf752dabfc83b0b77f533cd1e
MD5 af14d8b9245002f2ed871f5dda8a191c
BLAKE2b-256 1f5f08c79766ca758456026c8f7e7751aad652a2a54d3b60102dfb834c7d4fd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54474a452e26273b9d6350258dffef8a10ebc2d26cf6bd0a85fc7b7b30fc9e5d
MD5 025d279e43e3edab7c58d92b6909147d
BLAKE2b-256 426d10f63cbf490d6b4d70e4b0800040486010385d147981374a0fa8509e3e38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04c8f6f311b9973b6708be1bd41389dfc7297a4d6f36ee73f2d6f3d5aaea964e
MD5 f7055b35e2cc0af0aeb889f67390201c
BLAKE2b-256 6b4f6a828b92f2711cef844d99d1dbacf437436b8df528a045c4606b2dc76fc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77d883417b19fc745d16f3f7a0efbf65ec7f4daaf742d82345639ad8fb1531f9
MD5 73eba0022340783032b9e8f1580b5b39
BLAKE2b-256 83b2003be1c2cb11162c90d1a75834a6a5e5b00fe6fb8ee90cd97836d193c445

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8876dc97acdd5853117a1ff694efea8f0a89931b12f841f4918c2d380f7c395
MD5 5336766a9607bfc44eaee8abc125e6b4
BLAKE2b-256 b85ca56afed5e27b67f39ff693ec3da10a3f47ee6d102b76051937c05a251ca8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 919.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8a988a7bebc9a71185a92d45ee93cfa98020afbf09b51b0765e3b046a7262b4d
MD5 154bc6d6229f2a54d2282aa57aa11853
BLAKE2b-256 7d74f6a295d1c2ab3b9ccd1f0a8d0b7e2a958b0bea55c832977988388862205c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d35df58e6f6592bb9782b4a3eb8cd56f1c08d67451d1c0891a3fe69698a18da
MD5 d248c74116e9bc110a039dc98719b6c8
BLAKE2b-256 b7daf291dd816a4897d1301c00d135acee715d7009188322e659fb0962118fb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18522ca23e2d8172585f42921f27ceb5a5fca7b6cf65e2157b4d8a0568fde0c2
MD5 c724ef889006bcfa304b606f9e7ac6ec
BLAKE2b-256 404d5bed1031546b3b74cb437cdc11b67a90a29a213f6329af24f36e6a3e8292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bfcfdb2b06645aa06bd9a59dfde4131f6c8dcc9cfe3a5e83bcce9efdf0f7a1c
MD5 d24b0169b69efd227e7b418a2e611c13
BLAKE2b-256 1fbdca73b42bd449d6155bbd82613d68be6a92b43449710e4639a529c7f7f437

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a18db0e572b2dd9fd8936e064e33ed8b2d19a7459b1b82eeee8056ed2737c97d
MD5 54b4ce26c86cd7a483181d9370c4446b
BLAKE2b-256 137384dd341730c858f34503643573687ca47ae6aa1c888c26194eb4d107b673

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 919.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 56164e385f54352747a78bd3521c5c4b7cd699d558ce4a7e6ad511c477b9d88d
MD5 738c4e60ff8a87201cd47f4841c986fe
BLAKE2b-256 890e81d9900977d9b2aca02acc27fcd7ea7a49ff14a6c9b225cac195ef49a296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21b9da18994c17315a537a6ede9c6fc47d6828155ecc54fa56aa07242fa66f48
MD5 3bcdb5ec5a9eae70ba900599f2016737
BLAKE2b-256 63a3716d119010730abbea5caa10ca0d0b3a93d7a8b2dff19e82f6668f0c92f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e00aa4225cd7c97bb1123efad59f1141b8925ca8fb16104111d6abe0b6c2907
MD5 c32c1aebc1f84bc120630a8bb708547f
BLAKE2b-256 caf2e03c780a92b59bf0582d827dcfb104272594eacca521196008fea369548f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fc423e0d75c5766c58eb29adcaa5e1c910df90afa077d072fc41efe4816c4be
MD5 2e26306cf3fae0c938c1b14df0f8cda8
BLAKE2b-256 9b196d34f2c8ecc04d9e361c7cc5a357bed0079f4db6bfc9ce3bf52210c39908

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4b983f38597049ec8bbba851121ec67daf63b11ca8108a820cd8ef8c9faf9495
MD5 8f1556fbae84cbc2dc7187ed3dda97fa
BLAKE2b-256 0e3104043957079332ca854d06b09efa703a292088e79d4863e85fb251bbebb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 920.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cysqlite-0.3.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a0c5f68e10e34bc1f390e2f0fdc4bf9cb2e19cd877cf44d0cea94a97b52f9243
MD5 8a36679680d99e7c99ab7bc56db78a8b
BLAKE2b-256 7db2002614391795e0cd46afb7e38c405fcbf4657bbad1dfad69be579b9ee64b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eebbe01f86abb459fa787f6b35a537d945f15087d6b6d35412e45dc28cefc82d
MD5 bac49c3fa9693cda1a78143ac789564c
BLAKE2b-256 2e6c3afd21e560cf9554f7b065ed0615319d528722867c815200812123b5fd7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 732d3ea83e178a95557a0960d74e0314ae8cdf4633f97f1d57ab7503e3492a19
MD5 49f2e44c3e615470f64430be208aa59a
BLAKE2b-256 d47671ccd7841bb0d7296d7e315f47a2baf99b4195ab143b7aa1970ae86081aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0323535da4e2c2202552c45f7a4720fdfb1090bbf634f3f8936b95e7bf441d2
MD5 e7a1b6ba6788316d3729af20dbbb6c47
BLAKE2b-256 da1fda8320b98b4482abf8c4a16d57ca7fda96216bbeb47d0dbbb737ca54a82b

See more details on using hashes here.

Release history Release notifications | RSS feed

0.3.7

43 files

This release

0.3.6 This release

31 files

0.3.5

31 files

0.3.4

31 files

0.3.3

31 files

0.3.2

31 files

0.3.1

31 files

0.3.0

31 files

0.2.2

31 files

0.2.1

31 files

0.2.0

31 files

0.1.9

31 files

0.1.8

31 files

0.1.7

31 files

0.1.6

31 files

0.1.5

31 files

0.1.4

31 files

0.1.3

31 files

0.1.1

31 files

0.1.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page