Skip to main content

sqlite3 binding

Project description

cysqlite

cysqlite provides performant bindings to SQLite. cysqlite aims to be roughly compatible with the behavior of the standard lib sqlite3 module.

cysqlite supports standalone builds or dynamic-linking with the system SQLite.

Documentation

Overview

cysqlite is a Cython-based SQLite driver that provides:

  • DB-API 2.0 compatible
  • Performant query execution
  • Transaction management with context-managers and decorators
  • User-defined functions, aggregates, window functions, and virtual tables
  • BLOB support
  • Row objects with dict-like access
  • Schema introspection utilities
  • Asyncio support
  • Easy to create fully self-contained builds

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

cysqlite-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

cysqlite-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

cysqlite-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

cysqlite-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cysqlite-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

cysqlite-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cysqlite-0.3.1-cp310-cp310-manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

cysqlite-0.3.1-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.1-cp39-cp39-manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

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

File metadata

  • Download URL: cysqlite-0.3.1.tar.gz
  • Upload date:
  • Size: 78.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.1.tar.gz
Algorithm Hash digest
SHA256 7b88fe46237c60046466aad434e536f033b3805bcd7dcbe2b6aa95b11e96e74a
MD5 22d14ba1764c9ab3f13104de2a788a5d
BLAKE2b-256 c234cc74838ef7f8e9227a965788699eccdaded88035080898ad04132ff6a90b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 31459ccdeadf8d8bf05090e819d72fbc27dd6280393bacef3ccca96c52fae84e
MD5 7492ef2a942f7e526adb28e721225098
BLAKE2b-256 3175df7006272965549f23090593207670d5e1a4b646ad73a1ce950ee8328919

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 df8918aa7bd6cb439356db444a4ddc764b9f771e77f6d9700ca19d9d04c296cd
MD5 3fafac5b0a0668649666f91843c6c189
BLAKE2b-256 e16871086d085d01084f71aa093e6d2ba327594a0489aa343b15e9cf5752e6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f2d93a12b5927e6eb3e5d80443aa5d36f57e7d316c0b4d7ef08158753324271
MD5 d3018e5b3e1d6ba477ce4d3474a0364c
BLAKE2b-256 c8453e9e02309385b76fa386e455ab78424d684f3adf4bf65d93e0592f196e70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7bf1e6956c19788792be049ebd993925af9b0332a61a293d5e83a9edb45ed1d
MD5 daf03e8feb4a28711a7776729012e484
BLAKE2b-256 8d64db37220d101a48de22982ba2df1386151bb1c9de9f096e2f3478883c468a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b58342c96121b32fe325cc00418547a1d659f083f0c324286b214e79a43e3582
MD5 a459933d22b696927099513f54e89f6c
BLAKE2b-256 aab22a82e96411f2cb30e2fbc26ded092ec83612e7398299372ec54b31710da1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d7163036d2193de90bfef026934bc1874d9110b32fc28ddd31328f5aba1d94a7
MD5 d90dd5df0cff63c14fdfbc434582f9b8
BLAKE2b-256 3b4fa4c405f7522275a79ee4550333bfe463e484ce0f56f755f893c3445c02ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 293f1429b4f05d69cff121b5859fd9ea4fe0f106150ffecb1391960c8839ae33
MD5 87a1315104d58be9fe007d71ce5e918b
BLAKE2b-256 bced589d6f2dd852ad81936d832ef37e4e5b5cd5e025210a3aefe50817c5efc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6ae6809ac01189f9f6d97f57d846ccdc21bbf41745a874718781ff5e4fa83c0
MD5 4942e2af2fc4da02da38e1125b0cc5e6
BLAKE2b-256 8f1f2c1a37a46bca5130f0cfd3f4b6ae9a7c8bced4097914dcf4bea21008ddb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1946e63dda475d466da14c493d13e3569c21b6987fcbc4a19730537e2eccdd30
MD5 c1980abe395ca3a14811848501f7eb9c
BLAKE2b-256 c502e919ad2fce09c3e52c93cbd480cc026d1e54d4cfdb9daa6fae5f8e4dee28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81248cc0cb79d1204fe6b7058034116645dea5e7ed9454369efb9e8278ce364a
MD5 2af08c321856ad1f0343331c1e76b74b
BLAKE2b-256 919aac38b3d1be1d20474741674064167bc9ec2fdb43b2c0624c239e4e28d9d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bdd706edcdf18c08af4a27cfaa45599586e050bb4e27d811da5f1ad45a5ee46a
MD5 a476e77f8daaf61c139ff2a0730b68d5
BLAKE2b-256 fc3bde07b1c4316cd5fe513a4166a2ffd1251ff21aafe29b3b74b57544cd68d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fb1dcaa1d31069ebf31181118f46312541c1f5ddef78dc668fb082ed40152115
MD5 a92b9bbec38986dcbc23844bcf791ad0
BLAKE2b-256 01cd2b9286cbe0c16d467020ede6f219413711e0217eb71b78647c0819558571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4137cbd1c6b308c07cc21bcfe8f2661e0259a9a5b2687736aff5e87a7702e3b
MD5 1d008e7697391a5df8270667ebcdfb37
BLAKE2b-256 8417fbf4366682ee945091db4488fa977fea78eaa25d2508ac620ee24d789cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb0cfb235147e2d879e459edea15a1584abca209149b1bd20e3f09fc441d4688
MD5 6bb3b4962d54bb01f580c7929923f0fd
BLAKE2b-256 cc41add6b7c2219c4089894cc32f1cc378ea1a287a1c494182db9c78e3fa0af7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8717076ce27b7626883c08c79c082054c024035823e10cbc15a2a66b9cf8871b
MD5 77bebfface915ddda7c3a7fb450ebdd5
BLAKE2b-256 6e7becb57fb486d05dff76b8cbc537f068905fb187e42c0828c4279c727ff714

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4d9484c81329188ced59dfb18306b566f0f7aee6d1f5d8b1c8e7e72a30a2ed16
MD5 1c4ab25d7ed24a4c9b6be67dfffe1977
BLAKE2b-256 e2842bb3dbc84b0dc798599fb32c52835ae80dee169226d6ecb4020ca5da3969

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 98090b1ad990506f69f38b7e8a7fe2673161456c07cb2d472147ff68baccc561
MD5 ee5d0f640619008ce5ef63aa223e930d
BLAKE2b-256 109a14d21d98c8c960875ede594d4ab3e47f87587558b1a616fcf8dcb2053993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a6826d9ddf430ab51d4036ea0b98b3dee2d0af1c0fbf0594e867beca978b9ad
MD5 c01c2d1634d67b732990fe18a76bdf33
BLAKE2b-256 187f7dc696c850ac845a28afac2197cb209a114392baf1c387024a1c7802a76d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 863ee08100b65273e898d3c586a6a66437aa50a516b3279c390c2d33748e0e2c
MD5 d09dc6965dcfa9188e738dd3fb787eae
BLAKE2b-256 40d1d7bd13b794aa35fffde19ef54b3e1e60ad9871ebf920d2ba0cc0740fc072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dec78222eb65d6b5e90afc74e6b98a28e2106ca42947deea1254744d899eae30
MD5 7a329fcd342cfbea681265fe79c9b9c5
BLAKE2b-256 f01574fcd45873f5448bd5f809b945df5559aee3779ca87958323091426d13b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5d4d543404c9d4f9a244a5ae338dcbfcc1328dec74791830b3b5f0a278a601f7
MD5 93b6b5b873ea452d5bff168770ca077a
BLAKE2b-256 5e51cf6e9630c11fbcb6c9fb3b8b011d8ce525d323f9831489e28a6c38a2c121

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 607837e6739d1c8b47dc1bc52fe15befacdeea1190066966e47bb85246886325
MD5 4447d8f288fbb0d30a9f26b006660b68
BLAKE2b-256 b2c1746bdf974993574d47f2707a69acd95b4035b09058b185ec92a5feb06486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dfec7fb2cc97e32728548b6b8d2ab377ef079cc69baf44f393c0845af68ad76
MD5 afa881f840af6a9c67e103413e2a7b25
BLAKE2b-256 2c74ffbc8d4b845f8761f31e29ce60ff7c39318b5e5ca75313fa2a47f06ad0bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee56dc74f2499628858d95b44d27e23b9b89e97d3ca4e2a171ddf19343d9a35c
MD5 5aca0dd26b50989513b3cbcfec0aea39
BLAKE2b-256 a148fa803abea3fdeb54bff65b37c317b304eed6430c9e4bfeea90ff892c0e8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c87e1e23f1a38bf575db1bc0d4f9cf395b0b27fbbb9b8980240995194dc26909
MD5 4797ccf42abbab16d862741c70e43b5c
BLAKE2b-256 3815b2be225f560ac354d48e8a3bb21e4e2bc0e5796d0f6b33984b06b50106ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c85508f361995f79af0a70d84c150ff58cec07a8b2bc79800aab064d444dbd36
MD5 12f1a579a585610c3e18ca1f8f91e5a2
BLAKE2b-256 6750ec8edc3cd3bb6e4fa62e82f6a715060c7263525d0c7317f0b3b813d97d26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cysqlite-0.3.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 13850748354a3a02c94c4c3401ec7ab493241231d66f481e5120c77c96c22b6a
MD5 bc557f61421776bcbbda08c6bc46fe29
BLAKE2b-256 2455dc8b96ec4a5b1adeeaa70b9b3390bc266982309651584fb1462b73cee7d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9bc46cb492fb57ee8d45da9bf444f48342f1c8ef1b78bef635023344b55035c
MD5 d39e00e39062f231ab35fded1907f447
BLAKE2b-256 33edca86f3e94bb2358a0bdc2dae9f505dd1667f3915e7a5b940886f257e53e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1473a87f4fdeeb8bda968b6719395a84c6c4e3340c5a7485c2ac93dc02a5e70d
MD5 587e7d361fe3c852e28939bca53cb543
BLAKE2b-256 17a583ed813880d663741efce339cf6a5295e3bfc78201dca7482af3c626607b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cysqlite-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95f054b011da1958a1107fcc6b4b0a2fa6ff38e5363641316b145419e1231b01
MD5 806e3b0192e3e4207aa0873b72b0d908
BLAKE2b-256 18c5882e84bd179367a72878ecef3d4234ccc04936dda828fc01ee927f9691a3

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