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

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.0.tar.gz (71.4 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.0-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

cysqlite-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cysqlite-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

cysqlite-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cysqlite-0.3.0-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

cysqlite-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cysqlite-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

cysqlite-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cysqlite-0.3.0-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

cysqlite-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cysqlite-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

cysqlite-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cysqlite-0.3.0-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

cysqlite-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cysqlite-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

cysqlite-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cysqlite-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

cysqlite-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cysqlite-0.3.0-cp39-cp39-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

cysqlite-0.3.0-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.0.tar.gz.

File metadata

  • Download URL: cysqlite-0.3.0.tar.gz
  • Upload date:
  • Size: 71.4 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.0.tar.gz
Algorithm Hash digest
SHA256 aaac2707c2ec96e75af7b48cc72914f0db235ed2793155b5339aaab7ec5b9320
MD5 bf70ca78e2050427382514f6c0705670
BLAKE2b-256 71b03989fb1faf3e487d910a241ca6a0706a7a7ead963be58aea5eec3082d112

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.6 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 76407a61e7124e54add73a3c836a58c1b2fb2bd675533ae2ab70f20ee8b247fb
MD5 fb4a516202cb9d572703e924b7f67e36
BLAKE2b-256 f404ea47727c5016209ada4839af8bc69e5fc4c216c44c1dc1db312878f23460

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.0-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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6db742ad0b267ad0da5440925931921f0d3fa16168615bccd9dd3c93dfacfb80
MD5 88fc610087b4e7df637e0239560340d4
BLAKE2b-256 8f30f8fe2b17e3d9ea4fc918e33348a6c3e477263450b70a3d56bbd02e08dacc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 069b27320ad50f2cee3466e55495bc515b98f43a309771ffb92a2d48b6c701c5
MD5 6ed7500315f6627d6a135c7dd3edff3b
BLAKE2b-256 2682507541f681a7e5bfcdccd093e442bc1e01080d15652d12a955e328623cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48f04beb212db22bfb2ebd2bdf3872b139358b5474a07d5aa455875f75807d11
MD5 494f568301fcac25bbf803b895aacb7b
BLAKE2b-256 648eb544453f00b810718ab3cb93ad230c45db11122377d0956f60cc9684d82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72d1c00d9bc2e6ca443adc43f94a8bb6994ad4ca0ea7def5c8a683859886ae1a
MD5 4523733c0e122cc0427e134f6949ddb6
BLAKE2b-256 2f4efb643dd29e991475dcd52d415752f44f9073a1c6964560d53194bf4e336b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.6 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9b5e8d71e5695de5a117dc768b6934580b3dc82563eac648a710cdfcfa32ada3
MD5 f0909a93c9104523972397fc03002ebb
BLAKE2b-256 3e284de29f9ef472452a4f6fde0e0b3e65a94f1c1581de01357e5625a4de0b10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c6c9b8aab4fd2d6d63c2d49833a5bc057e9383b6f674601fa154bcaf63074214
MD5 b46efde08357fd5c7965c68fb4502127
BLAKE2b-256 d1b3355c0e4ce6674d534b7c7629ca7158722c918b2ffa522f650ae589375bf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5926bfb937f4f198bcfeae4f8623956adb4fa4d1c2b7350aee74a8dd77f1967e
MD5 720a2621a9ecd20e528c22d2877cb558
BLAKE2b-256 fe57fb0ed46b51f4cf9f74854e76d69890870c84e76b31efec19eb7906998ff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6b3f8bdec706f49c6d729b14fb506f0972cea5ee898dc7de471727fc1574ad4
MD5 4d5086a621c6e5285a26eefc41e022f8
BLAKE2b-256 f21bc719b876a53a92f7e9dc2665df9e529c92bd616a21039ed8b4870ca85e40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85b91f8fa8422e8ec3f1e204921aca7b8c51ea4d843601ac4aac1a4502cb1d14
MD5 90c5b8cfa1cc091374bd4c5fc54078f7
BLAKE2b-256 115695c46cd0c1d1086e0ea108fc6a6561482c2cd38428b9168e03a45166db2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.6 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cd8402387496d9a587318ec7707ea9837ece2c70ae2e7b0899b69f9c31ab01aa
MD5 6949644744c2936329694ce505bf8387
BLAKE2b-256 d16cd82c5be1e39e8b0abe5a7bf612a145a06863b279910ad1a896c1f3ef7d3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d6d5ec377fb3da87807683dc7e99211a8dbdf9c56154a938799d18c9f9d366e5
MD5 84711ce192a9ee015be2ab4a6d69eeb7
BLAKE2b-256 61d53a682d8698b69ea30c0c0709be41e2cb1e5f3fbdffe7e4cd2ad91ae06965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 276a521e5438bf81d8a28efa48b2b11807a4e5e6f39fe13074005995bd348f7e
MD5 36e80d2903dd701b9a744861f69f422d
BLAKE2b-256 864c0ec9172e6926a32e418f176b490a0486c6e22eccf95fa57cbd7cd31f985f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37d6c97b6b24ce1aaa40e1ddcbaa0aaf9d7820989673895a0bb5fa230cd88fff
MD5 d58ab2824be102b0c94c98a386bda22a
BLAKE2b-256 7b8081763d43452bf3f33b205f59d4c4df92ad992a4926aaddaabd04cc9a6745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5a3328389faa45ebd022cd96e53fcaca4b3f754af21878b38f5289ebbcaf791
MD5 812b399932d32eef33adcf8dbfc8036d
BLAKE2b-256 e082018e020f6233b67a1bd3215b154791194047a238769638b31d68743f9f7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.6 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ed834933d671f9d7ae17c0314e6d9091cbae28898dbb087de8f340b9f303ea84
MD5 282544bc4c35597b29e1d1a2458fd838
BLAKE2b-256 b4127136e36eec8a1dccbb2d19317af6149d73eae3ba48ebd9a8b85042c7045b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f4cce9a71b98287596e02ce322b3c2ed81c7293cce0c989f270639cba69ddcb0
MD5 6b244812ddfee9a24f9c310affcf2c6e
BLAKE2b-256 fa27abb7d34b22078f6368f1a463c8042ad07888cf695428115d6b08d9a1b74d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cac7f138570fb7e03d97c3a3ea8b34b7a3869d1e1f4001ab1aea9150b8df014f
MD5 7cf14c46596047f907faac663d713c68
BLAKE2b-256 b057b10a641f51d918364850001e020ad94b2b804b71a790dae235f9ffe4f359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b77023c24561feda855be31b522ec878429d635487a7e76d93eb7c6f614f901
MD5 d62d807a2d4f73df16c2a27dcec94cc3
BLAKE2b-256 a671a3ee8efc2687e3e14b2345b7f0b47efbd8e5dee2b6d4a9fa00555e97507d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd37f1919789f578cfb38e9166ed2900b5bdfa395675b474cc848ff3d6f6dc72
MD5 b283fb5951a9c7821af8cc51fe9e815f
BLAKE2b-256 914de81601786ed32575441b1f351d794c23e96d7d13b785d0756e3a616176b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4fbca6c7c6614655d67946619b6fade9d55d9736f2b3f2e0f94361cdf6fdd05b
MD5 049053b2498aad12f34ed058d9313d6c
BLAKE2b-256 3b663468756ce3453c284e455d7f1b5f9e1cb3b952bfcd914c2f1e5b222879af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 660537d10f9c6d9b5496064c87679d446a514c2d7cc2f0334de7612185a9bdc1
MD5 666a87db222bd0cc33a0d7a34159d041
BLAKE2b-256 a9755491830ddca238568b0f5d2c03ca0e0556e5ceb3bcc12e975fd122c9f13c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15e6bff5d7482711899822015d23d25716e1ef1c75a48b729642ac87f86b28a3
MD5 310a6c9dd1961d7e093678cfee3bcc9c
BLAKE2b-256 1abcfe27576d38d500bea3645e816c8faa709d40ff296f4b82384130bb0dc816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1afd29202d031398a354d244d365cec8cc4b54216afe56c8527b1a522da09183
MD5 f1ede5afccecbc31f9f4c988d6d65a99
BLAKE2b-256 73ac716d53f81987502ff94c65b0b032c5911036ee1baef519ccc8396277b832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce3df11b348ae87e866b6d3724ab727319322bc2abbfc5965e1b92bb35f0aa05
MD5 acec58eda2a08d98e54e462162e4c4da
BLAKE2b-256 1393783f84f0c5c8a25fa60646d64a4ce2ee99eceecff22269ec082ca3e9bbe0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e8fc2c7a99845a3335624e44f5077a9563a76e3378846c50bc83b72716179dc7
MD5 9d3fdc4b54909342520f253c794527fb
BLAKE2b-256 4a6d21e154180460bdf91665f82b472865db2f353ff5e3e5d8986773e47bc112

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d5a58401acec8a46dade8d8623a453f581b2ea06c8cdd9177884fd3779770663
MD5 632117aa43916b6637baf6e8f56c2a42
BLAKE2b-256 ea489325ff4b6c2ae1c9e71f8e2344ddf1a1d385eb6709b3fc3d63dc1003cf41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78284cb3150df3b9ab602311469a72d33d0402ed48c89af3e68808a1bd07dc99
MD5 8ee5e5c3d057707e84d61f55b7a34937
BLAKE2b-256 7c893004d2ec0c94dacd0b23953ab2c5082d6ff33f231fe1c3df807839d489d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2395297ecfe103352ef777f51a9272df950a5b29a4f496b29b896d96b81bc0e1
MD5 86b8258b4863ffdac4529517e8872df2
BLAKE2b-256 c7cd7e3de4315f8088661690183e463ff72c1abb8857fb769262fc48c057a9f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c79d892ee2a5e81b0c6856a1b5340ed6a97b84dbc7b19e03bee549203831d1a1
MD5 4d523eb4dc52387906adc9b87bb3df45
BLAKE2b-256 cc7b5ee79962d00c3e1d96799af5d4e4f2c6a6710e2350dae76c97350cfbcd62

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