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,)]

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

Uploaded CPython 3.14Windows x86-64

cysqlite-0.3.7-cp314-cp314-win32.whl (947.4 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cysqlite-0.3.7-cp314-cp314-musllinux_1_2_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cysqlite-0.3.7-cp314-cp314-manylinux_2_28_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

cysqlite-0.3.7-cp314-cp314-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

cysqlite-0.3.7-cp314-cp314-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

cysqlite-0.3.7-cp313-cp313-win32.whl (928.9 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cysqlite-0.3.7-cp313-cp313-musllinux_1_2_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cysqlite-0.3.7-cp313-cp313-manylinux_2_28_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

cysqlite-0.3.7-cp313-cp313-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

cysqlite-0.3.7-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

cysqlite-0.3.7-cp312-cp312-win32.whl (928.6 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cysqlite-0.3.7-cp312-cp312-musllinux_1_2_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cysqlite-0.3.7-cp312-cp312-manylinux_2_28_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

cysqlite-0.3.7-cp312-cp312-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

cysqlite-0.3.7-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

cysqlite-0.3.7-cp311-cp311-win32.whl (927.6 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cysqlite-0.3.7-cp311-cp311-musllinux_1_2_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

cysqlite-0.3.7-cp311-cp311-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

cysqlite-0.3.7-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

cysqlite-0.3.7-cp310-cp310-win32.whl (928.6 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cysqlite-0.3.7-cp310-cp310-musllinux_1_2_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

cysqlite-0.3.7-cp310-cp310-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

cysqlite-0.3.7-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

cysqlite-0.3.7-cp39-cp39-win32.whl (929.0 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cysqlite-0.3.7-cp39-cp39-musllinux_1_2_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

cysqlite-0.3.7-cp39-cp39-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

cysqlite-0.3.7-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: cysqlite-0.3.7.tar.gz
  • Upload date:
  • Size: 573.9 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.7.tar.gz
Algorithm Hash digest
SHA256 90da285416ab66f43e76890a0311d5fbd99067baa9f5d2b61b30bc20059f94ae
MD5 11ee44cc86e97bc3156be711aa282ac1
BLAKE2b-256 f3d9ace84e0734a2f2594c0d9ea67c556826867cd98da8ed0d9c1a21ebf4db5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.7-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.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 57fa092777b483f6ef345da7ddce1d81a886c0b5b2a9517aa034ed67ad789554
MD5 d8f81f1a5efe28307809dbff6d92ae73
BLAKE2b-256 e605a8b70ddcfdf80581b578775446552f06ab657d959a0367bab2976e653a77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 947.4 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.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 adb14e888aa1b3a6c087cc6f1a692c8fcce9b95b3b96a67ea7f3ff89570b4856
MD5 ca5073bf5cc4098629b00f5c03de9089
BLAKE2b-256 6250382d257c4b02007856ec71b7b9989fa51138223a0b7f9ec9b2f5e6d2287d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbf14a378793ab63b4da6e5155960af07b5a94a75c895bd67f3dcb96b40aa8a1
MD5 4cbde4360df9ecb8a394d90bc5b98c56
BLAKE2b-256 759abf01cb900854d8d871333b4ae9f104d91b6f5a12492109457dddd7479a08

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.7-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a653b7c7e3e6e7ecbfa99d417b2be0107f51b3dd5ed938b57ae9a6a7217217b
MD5 fded0b8cee66af5746ca0f25d9b78820
BLAKE2b-256 e7aa2959bd3a90a8c3bab028a703d177306c9d64d8a25b67f79e484e1ff82c10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7d487eeebe6392bebccdb1a26d766be9bf687bc186cd76f63ec0dbb47295c7c
MD5 27c248e6444a29f08d647bfa11d8acbc
BLAKE2b-256 2e9297ade79e3a9221e62e188f1b7ff9878a2b25cf53be786a4ec1f02493a484

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.7-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29abb3115f3fa247c3c866ed5f7766692a3c239eb5844c5eace4e7cc41bb7d19
MD5 b820bb664dbfe24ac29c57794ff4f476
BLAKE2b-256 a0e4e580aa6e3021a494f69a0e5edb3a5d69fa7bff23bd3e64496ca3911174bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19f6292b6c5c8cdec17a3730981642f4ad70e2c99e11632bdabec10fca47010b
MD5 3ff1a61a225805337a08d31908b98597
BLAKE2b-256 b254793013ce58a82f29e7abc2c16bb4e3f986d74c9f5dee0d6ffdb1fcdb7b1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.7-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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b4680902e3057609fcf41d4123ee3cd459bf958c5321ed3d72c8bd49b085c4d9
MD5 fa33cd4f0cbbbed0097293c6ba8fe821
BLAKE2b-256 bf58a43fa245a42f79de90c6a7d9f620cbef1c3ffbb2e62a05a038aca48265f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 928.9 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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ff9a060b40f8d1d4e7567984a058f7615f753710b60dbd2f94327f1029ea770e
MD5 02e02e98eb2dc1f67efe0a50dea4e2cc
BLAKE2b-256 e7e5204283e424fc9b97767f69c5cdf76da26dac2cb2a32b2f25ef96869ffc80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65a76d61acf74f2b57ec4ebe2fb855b16316a2f4dede6023d8dd511c75204471
MD5 d5ae78e47e44911a12a475819cce6849
BLAKE2b-256 2852f4b9dc4927b4246b2591a4f0a4ff4b9b242f59ba226058058ebf5dfe215a

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9dcd914fdcdc08d52a33668d9e416daabd6243364c355ef3489504589853fb75
MD5 ffc9e697396dbc2d0030b5ce89403671
BLAKE2b-256 2ab70c1b420d9ad112d10addc5461bfb8bfd4911ceff61f8518d8a9aea0eefb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2805bcdf0047ba4aabb2917f640b27153df62a4af46c0b7dde502fee409d1ec0
MD5 5d618d984a245f14c658e69a68211401
BLAKE2b-256 32b779afd20a492c3e87897fc6f3dc326a7d0bcd9f891d6c164bc9b9f0988db3

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.7-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4737a9d27276de7d459d27ca15207b67da6284620262cb3476a9f61449867d18
MD5 50103d539783dc9cc18c6d19b3596aed
BLAKE2b-256 6ee2bea416ca71b42329a2bf9a9d4d5232aa4fb16428db64d3ebeac3601236a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec77b3020bc7a5c4a49d52dcf65b3e7517618b1b89e5cdfa9dc63999fe6acef4
MD5 52fb87ee7480c6426e39b614290cf96e
BLAKE2b-256 5a9f394b7ab6bca1b2049e6fe724cba12cfd73af7618a039a7d28edbb5cb7e6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.7-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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3a0fab4004ff41f3088e1dea9277e54676b052d920f1f7e2c8ad72527ee57be0
MD5 b016410c50ce4daa555784d16a11526c
BLAKE2b-256 ec6b4b52cc1f86507d61514cf4c121db1faf63b8843f0f1c104f27a36f354078

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 928.6 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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d6d3a8fcbf2bf7c537f407e936066a76865ffd6a3bacd23b4826edff696a5309
MD5 bc6b30f7d8f69fce290f9ae23ecbb354
BLAKE2b-256 98597e9d2841510b8a3da86f1df842fd32336bc492881d12413f8a95744411ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09759eb197d99f9bb8f67268d9cd1a1762b950344684d6e2b51467ebbc37418c
MD5 e93791ca881d37092d14caaad1ff730b
BLAKE2b-256 45f60895e16bb7969de76ee80988fdb782fc35eb064849ddc748428e495eafd7

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c08fe1f07f2c2da915aad76505d667827002060a5d1f1e4c5502a8a8e32fc1e
MD5 baca3568da36c81587b84bb0dd7460c1
BLAKE2b-256 5d84702d770fa134647a3c4eeeb3c7b39777dce147d05ef1448bae98feb532b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df59d2576779c8b39fca9dfe95edf3276fd69f9e49796e0ed25a2455fd7bfc11
MD5 0110f45e365af884b94ecd2c8d915c30
BLAKE2b-256 6465ea7bad26ec0a857aeade26a15b3ece73f3011939dfceac6db59197c6f145

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.7-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b4f4f83b47562a5d18a7489b02dcf2e244c03605c1ca8b16b1e849b338ea925
MD5 c74432ed2190104d2e0f3f06fe090ff0
BLAKE2b-256 9fe9dd92ff2bec8312054bba13403989416eeceb4cc119e43faef087bb29c044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51b0b3d06391d42b5f2f1b6447b758bac4294d19d7f7e1ea9df6b70745f952d5
MD5 cb88c9438b99213340384f822f59bf02
BLAKE2b-256 392aa898f97713aedc390bacf898d148e8c33516ee6dddba74cd74170e34df00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.7-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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 db5ea81c6f8763db825cd219bccdc3480a72592ce6519f7805af59d29cf2403e
MD5 51f53a1a82d16fffc39694d8b0bfcbe8
BLAKE2b-256 01379c1f4fab8dc90a88ddf8a4e4499230de87e451adbddb77ebcd8229b9c306

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 927.6 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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9d8e5f1ef61fc0e53d3146283e198b2e1f24068f1e0a7663b767620e339eb585
MD5 152819f32444b7ded7e90d3fe5c3d48c
BLAKE2b-256 8b7b850b55435b16d4e8e299d0ccad85daa5f7f0b9e7b6cbaecd4e470e4950c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a92b00151c0020f795eef15947e4a6125cfd4735d639db5537646f7d01e0e4c3
MD5 45c9c52ab3bf7acb93c45d3d13eca093
BLAKE2b-256 f18b03cdf22017c5e3c8ab1d58d2bf2e9dc0b8e8cc47f3a6e9943a9b6f18f2eb

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3852bce410c28574fb2608078bdba951d768f5ab8ee50a214c52d0b86914170c
MD5 ce55e64ad672a07aa6e4fff61e36e649
BLAKE2b-256 a73c194f3e3c07168e5166acbba8d321ef24da834ceb86eafc2e3ec6ff4e049f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04ed67e2a26f0aab24e8ad4bff58986def20123faef9460ca78bdcdcea2bc32e
MD5 9d55726a978c8291cc4289d805ac6a2c
BLAKE2b-256 e46dfbe1222f34e581d0477f816dc7f4febc197fa751d4042dc41b0965dbb574

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.7-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 982e91f3edf04c8415c2f6aa54d9ef26c67eb31a25789b14c11f837539943052
MD5 fcf4a6524155b95d9a68227fd1dbd8e9
BLAKE2b-256 acaee82a41592c4aa558ddcaeddc5829cacb42e3ad7ea5d7c007c2e16e8e7457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c028092a2d3190c13175601914ae478cd66ae2ef9691dfc5664e760221d59882
MD5 e4d562609e0edbae4db591afc8321fbe
BLAKE2b-256 415b3f7454be85be366180d824ddb4c653543189221c40fd6b349b3e083d5ca6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.7-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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 78f90c90d467d57cc6d51de0cab32e2d6690a4b293daaea35c00ca1fee5ebad4
MD5 fb26965a027663452fdad2dddeab954c
BLAKE2b-256 17bcc4c106fe59dcc3bb0be0c5d565bb21287f5f5c6714542e841389cdcc2f11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 928.6 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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c665af075209ff38a5e216b1846c3a8d500590ca3665a9a9562b988a4c543b62
MD5 519591de5a12c4b6a6e269299d9182fe
BLAKE2b-256 6c8d50a8e0aed7546e5426402608875a7b50d5c71c1ef4c310cf52276dde37b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e03b3f91109d0a6b6db77ee6d433cb92b6d523b8af01d9da3dda1436875a35b2
MD5 677e4cd051c451d9cd3ae6410639a230
BLAKE2b-256 d244db408b09c7f74f90cd02cb908201bb2bef90f942ae8d75338e3fe1d41045

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7136594877b55b1f0df8d4ab3bc0715a6874bf9566e3d75b5b0ca739266e7a3
MD5 1401c90d938a8411e0dd1c3c97cc9e46
BLAKE2b-256 d2b8caeee221469edea07a9e87b985edf06ba289b7c2997a69dc8d1bb397531a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6cd43b63c1ccb04e1293e5ee9a5b6d03431ec2bb63bca28bd13ec351a50cb78b
MD5 a9b5badf3f29dc2a8c36b3ad4a34eeb6
BLAKE2b-256 6d4317c87aa3291af7919a398f0e06771fd911a382631dbe00d97a7c91559673

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.7-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce7893ab79d1bdb7f0812b6c1e38947bed7d0b237ff2e72f987bd0c09cf066ba
MD5 4e99a1dbfb55ea0cc2d175c70c1f7c6b
BLAKE2b-256 231235e82a0a1558f5730e455a126260b732aa3fce0cea93fe0a0a5dd060b58b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 beb7337f3d8e9c47d1732deb87bb603ba3fd6905d3b1aa7ca36764d5ab0794d2
MD5 296c9cde838d0221b64434947ed6ec4f
BLAKE2b-256 60eb56786de1606db779aeec8a9082f1734b5224eb309d922943f22d26d9abde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.7-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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8cd1f41073ab488e7cc95c32d3112bf0763e5103d7e4d70966d1af757043e7f1
MD5 22d153ffe6a54cd414d3883276a4a9ba
BLAKE2b-256 931aa2fec237969b94c1341a58b60cf65f1b569f6b4def94faa3132a7b93d693

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 929.0 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.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 488536a369094b5b70d44cf7b42c0ecdadc54eca9a681aff9ba4b02771cb2f5d
MD5 7a79321097e9d19616a65150fa80aeec
BLAKE2b-256 1bf15bf8bbc3386135547191bcc3b8e4749cf840c745dcf7b1dc24e6918ca98a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58b2b161f13c2ab6076b098df49a0f427dea0f3dbd9e560be63bf084b323b4e2
MD5 06a7320fc9e24f06a16200a0e7af30ed
BLAKE2b-256 c1921c6f0b5efb186147bd5fbf4ac9f1b4235abb4df664683f5c62fdf6e12435

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.7-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf857e4ed450d26d574db9c20dd6b4ee984cac9fbacff8acfed5cc074e12fcfc
MD5 8fafb97f9af8a989415506395ddc1a55
BLAKE2b-256 2b29eb80043d33fe9b9e3ddb4d28451366d0635e88527b35e65d34b30151f3e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b3c1749a0ff08b40206f8e28c8eab053262dcef8ad91fe9a62772b6b00c90d8
MD5 6a9ff2c721a241f65619722a132ea954
BLAKE2b-256 688a31da240998bb93a1e2e96f8d676169172563527839b1b0a88c724f4467cd

See more details on using hashes here.

File details

Details for the file cysqlite-0.3.7-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c27902d15641b34767c5ba42280d5514a472fa5129c62a582bb3a409ac0eefa3
MD5 99dd5408e79975794a341ed2dae588d7
BLAKE2b-256 49090f19b4aa3671b7e493ff05908985a421cef6e12ac06093d601df7e6a8683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d535660fbbe699ad4e1ef7cda6448467e33d9597f14298781f7c8dd3cbe8a0a
MD5 59474aa562093447505081d858dfe664
BLAKE2b-256 89c101955701309f0fd299da25b4f2ccb9f983a58d668df595c01c28d7059c23

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.3.7 This release

43 files

0.3.6

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