DB-API 2.0 interface for SQLCipher 3.x
Project description
sqlcipher3
NOTICE: This is a fork of sqlcipher3
which adds github action for creating wheels for Windows, MacOS and Linux.
The unofficial wheels from this fork are uploaded to sqlcipher3-wheels
on pypi,
while the official wheels are sqlcipher3-binary
.
To install openssl easily, conan is used. I made some reference with
this fork of pysqlite3 by Dobatymo
NOTICE: To build from this fork, copy sqlite3.c
and sqlite3.h
to src/sqlcipher
, then run pip wheel .
or python -m build .
NOTICE: The wheels are built with sqlcipher version 4. You have to execute
PRAGMA cipher_compatibility = 3
before doing any operations on a database
encrypted with SQLCipher version 3 when a newer version is installed.
Keep in mind, you have to add PRAGMA cipher_compatibility
after PRAGMA key
:
from sqlcipher3 import dbapi2 as sqlite
conn = sqlite.connect('test.db')
c = conn.cursor()
c.execute("PRAGMA key='password'")
c.execute("PRAGMA cipher_compatibility = 3")
c.execute('''create table stocks (date text, trans text, symbol text, qty real, price real)''')
c.execute("""insert into stocks values ('2006-01-05','BUY','RHAT',100,35.14)""")
conn.commit()
c.close()
This library takes pysqlite3 and makes some small modifications so it is suitable for use with sqlcipher (sqlite with encryption).
Additional features:
- User-defined window functions (requires SQLite >= 3.25)
- Flags and VFS an be specified when opening connection
- Incremental BLOB I/O, bpo-24905
- Improved error messages, bpo-16379
- Simplified detection of DML statements via
sqlite3_stmt_readonly
. - Sqlite native backup API (also present in standard library 3.7 and newer).
A completely self-contained binary package (wheel) is available for versions
0.4.0 and newer as sqlcipher3-binary
. This package contains the latest
release of sqlcipher compiled with numerous extensions, and requires no
external dependencies.
Building with System SQLCipher
To build sqlcipher3
linked against the system SQLCipher, run:
$ python setup.py build
Building a statically-linked library
To build sqlcipher3
statically-linked against a particular version of
SQLCipher, you need to obtain the SQLCipher source code and copy sqlite3.c
and sqlite3.h
into the source tree.
# Download the latest version of SQLCipher source code and build the source
# amalgamation files (sqlite3.c and sqlite3.h).
$ git clone https://github.com/sqlcipher/sqlcipher
$ cd sqlcipher/
$ ./configure
$ make sqlite3.c
# Copy the sqlcipher amalgamation files into the root of the sqlcipher3
# checkout and run build_static + build:
$ cp sqlcipher/sqlite3.[ch] sqlcipher3/
$ cd sqlcipher3
$ python setup.py build_static build
You now have a statically-linked, completely self-contained sqlcipher3
.
Using the binary package
A binary package (wheel) is available for linux with a completely
self-contained sqlcipher3
, statically-linked against the most recent release
of sqlcipher.
$ pip install sqlcipher3-binary
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file sqlcipher3-wheels-0.5.2.post1.tar.gz
.
File metadata
- Download URL: sqlcipher3-wheels-0.5.2.post1.tar.gz
- Upload date:
- Size: 2.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3cdeb0603236c4dcb83b359177cca9cdb37c4f47d258006144b6d6b9e1df738f |
|
MD5 | ceee277bb5a67081e12c99bbe08b2809 |
|
BLAKE2b-256 | d27ab14324494d04c852243459c5b208bd9348e07b911d087a37274f9a322d03 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-win_arm64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf41d2fd4c5c011a40e1b8627e43ddd75c23939def611d02629762581ffb596d |
|
MD5 | fca3e4b1e18d77fbe543ffebea6bb371 |
|
BLAKE2b-256 | 1e5034f7dcbacb6da6d08e93b6cc9c13769ff396b74670e77799aceaa1d0bde3 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-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/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25d81ec306e2cdd087e3e6e48e5eadada0de3fcd6a00c31f01a9724d34ebc1c8 |
|
MD5 | a3418b3a174f8ecd1fcf0abe107129be |
|
BLAKE2b-256 | bf18f25d1693dea806f8807644ab4993847035d911f9cc8819333baa7e2002d9 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-win32.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2972464b7324303f4007c93aaef8a73aebcb9837f162508483a285f2f7c6c1ec |
|
MD5 | dafb3a3d0451fa4968e7bf2aa2e9a69f |
|
BLAKE2b-256 | 686fc693bce8322037d0a335e3c8726190ff8e2ef9755f647ed00321dcdb93f3 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc1f26c4d6a3bad6caf555195245e2f56f2fbc007cf161626c0c151e06374049 |
|
MD5 | 64848732f18d673c82cea04bd4095190 |
|
BLAKE2b-256 | 54e1dcbcb67036dd1cc955f9c7dc9cc499f5449a4bfec6685aa96623406d4743 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-musllinux_1_1_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-musllinux_1_1_s390x.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbec7c9f65f7e81915d0c9b902871179b1cbc56e3d5b7966b64ad4c2832e6d0e |
|
MD5 | a78a13135b2cd86d8e390df4835485fd |
|
BLAKE2b-256 | 4140536edfcde7dd8fbafac6806ade68ca7797e997d86d463080c79bf8fe39ae |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-musllinux_1_1_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-musllinux_1_1_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4bb8bf64cd11462eb009f6730307cb21a03bd2a9dfa94b78d77da3bfb9651ad |
|
MD5 | 25c52bfbeeca749f8a1a361e9bc66fe2 |
|
BLAKE2b-256 | ddfc8264594923dfd29612ccef90dd270e8bf58ba5459452db713eae0ffac6ff |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-musllinux_1_1_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-musllinux_1_1_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a895948c40979653f599229817e435592f8478b8f3ac0eb0e84a8c68ff0c7b2 |
|
MD5 | 9d9d5a298ec98162f059ea6d78457cbe |
|
BLAKE2b-256 | 33c1074be8d30438d87a8cf08d9bccec0f5956222399b1f3fbb2bd2e7cfe22dd |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12df91518f7ecfa9219c6108d1cdf26480ab7bbff9a33216ef30542cad024c92 |
|
MD5 | 4900ec77dcb4026c05c84d4cc2618bb6 |
|
BLAKE2b-256 | 6625afef7e05a3ebddafa7a8c549a9ffa5a4d31dae92cc81274539fa1bc94c0f |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79e3cc617924fad1213b96ce932dba833b49b7b46fc8568d421a1216d30e661d |
|
MD5 | 9dafed187ca48c071e6171afe50252c1 |
|
BLAKE2b-256 | ef5cc8eae7455e2dba8acb3e9b8f53286556bed9497b82d6ce6832a116bf8b34 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9723e245f906a2d0cc00a2da195aaa229a112e0fabbb735184abd1e73fc52a7 |
|
MD5 | d39e7614f53888646d824e84e47becda |
|
BLAKE2b-256 | 9de31792d9c85dfa7dab5f53c6d7100636255fd96c8c6b53d97926a8dbee07ee |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39320d4874a6fe775ef8b81d9ea663f71547f36ac81069c7575681e5f663fca4 |
|
MD5 | bdfc31f1934c820f370fc19316d2753b |
|
BLAKE2b-256 | 07730ed70fd89795c592046dabaffa48ed326467e3a33d755fc5cd4a0157dee8 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfd9f4329b79d94264799a1a5bf8f877520f79e85ed0cb55e6b997dd41239fea |
|
MD5 | 45a105d28685c30aaf8a3bceedbec852 |
|
BLAKE2b-256 | 9978b670b54ef03ff1db6dde0e28dc2be3e10ed7926f358741d22a8f86835bfd |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 358144723d1a6dd8bb1f0bbc511dad62852e7f8d3197e22c30a18616bb72420b |
|
MD5 | b13d35f04000ed65175cbe5e53683354 |
|
BLAKE2b-256 | d55f1a30d2bf2d09dba50630996f6985708f07eceed04de35130eddfd19fd2da |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8bc1819490bce8579d0af6a638c31b4e6ec6f4c2377cb5f34eec475d9754533 |
|
MD5 | 87dea0b57959ac5946c3ba6347a92e28 |
|
BLAKE2b-256 | c4b79792fa7cf8e9e4ccedb3a56eaf113b9319e67481a122a3f0debdae2f7302 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b468af7bba0268144a8e83e22d313eec415d8ee8a69a3aecf2a52b3ef4fc143 |
|
MD5 | 8921c2d7f49a2d110eafc995dab98a2c |
|
BLAKE2b-256 | b13504a2fad50e825e9016c5d3f17153dd7ff3c962e2cea8a8ad57240ff62c00 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp312-cp312-macosx_10_9_universal2.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp312-cp312-macosx_10_9_universal2.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.12, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5deb84c9c75558f8f0bab784f56e720a0af789d537fec36ea28fad2a9aa94c93 |
|
MD5 | feadb92db91ef86968f0db6938325768 |
|
BLAKE2b-256 | 0f756ab0b97d700f7a448f1518cc15d0a323c2ee80572c66596aa99fc7f24d56 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-win_arm64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 475f78ad795176d90dfd481f81618aa2b0574c16c21ad50a26baeb053e80ff8a |
|
MD5 | 650a0dd987823a1d8f74b1bb1e5359a2 |
|
BLAKE2b-256 | ea55552d79983a921e740ec9d5cffed9afbbc3a96f8da4d5faa441253a84261c |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-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/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4245f4c1bd51bb2c7da82d61f9cceccb1cdcd251e2c698c8105da1406693c692 |
|
MD5 | bd85d81d6a7d79d9f0509eab224a44f9 |
|
BLAKE2b-256 | 0fdf16d907032c81e27e10a58ee0facfe2055ed8194625a1d727ddbd5106bebe |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-win32.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a2fba2947bc67df0022bfb9952f84dc0309b0f8baaaa68ba0a34063797cbe72 |
|
MD5 | d2244c6ab2fae96a72e32fd33fb79d04 |
|
BLAKE2b-256 | 5e45e58736ede445726edfa75047c210581c9afde532280b0d4a0e1e2c59d76e |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f64a20d32ab10afa99b26f8e5e9969b2926c516375cd4bc578331d401ededfd |
|
MD5 | 210a51af9b46411471a5d07fcdb3293e |
|
BLAKE2b-256 | c97d58b85c71e62219b46d8650b7eaf48b140aa7808b28f71b43210b297d0c14 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-musllinux_1_1_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-musllinux_1_1_s390x.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9629d6a1b40d47af51100a6312d1d11a9de6cae70031095ad8f5e6a94318fc15 |
|
MD5 | fb97a518acc10b1fbcfbbfee39e0de2b |
|
BLAKE2b-256 | 7eda48f7ecd73ae81775ea4165cff2493f06493ec8002297b99a4176a922d54f |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-musllinux_1_1_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-musllinux_1_1_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 126d8fe15171d8abae9c1cd4640d7a89170923197992b680427254d969dfba23 |
|
MD5 | 0667b4a0d05109353e221d8fe26885bf |
|
BLAKE2b-256 | c412646b1f28b78bc46742ede35a021f03648b83efb485db0096df01ecb82131 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-musllinux_1_1_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ba987484a0b2d491f96ea51aa882e24786512c9638a62925400d57c9e62f9a3 |
|
MD5 | 7cca78b301c536b49bcfb6ea1b3c6c8d |
|
BLAKE2b-256 | 096c5433a83ca043ff97b563d88e0689c42f00d8f87e2584733d3593e7a7d488 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea70bd0db5ed058794e51c5f2ef0d6bf3ef6c63bd7e09d1677d3cdb2350fafee |
|
MD5 | 7b7b0662be4ac2b2cf91c8f877c87d9f |
|
BLAKE2b-256 | a194466da4856ad46d8532688e8de67a39ebca31b7e2405e6d1935276e605988 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33c017a03152f15d2fa387b66bcd2e9e491ee8d8e8fda5f2b4c55fede173a88c |
|
MD5 | f4176b14f598c4cd330dba9f0de1614f |
|
BLAKE2b-256 | 06d8e3c71655721072db593530aa60b55b57552a10c096efb1e9d774e7cadaa9 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8cfc8c7cc5dbcc895c4fdfbac2b2799c930d4b165522358358f398c461e969c |
|
MD5 | 9daa555105aaa38081b7af72c9ada41a |
|
BLAKE2b-256 | b683556dc977d602d5b97ad2219317a3fc9429b4006c88eb0f53fde42265de02 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27729f74cd934d6be88311b7a5ed1f96158db1bc2e49aeab5bdd245a58ec5e06 |
|
MD5 | 1c5e6a9088c1303b1092fca4730d5850 |
|
BLAKE2b-256 | 8c0727106fc9e91a13b0f2caf45161ffb236862f424f1e5f3858334960156990 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21f6ac0be44eaea07962448c340c170a41db9d057549589d74cbe35fd9536e07 |
|
MD5 | 0991558db13ab3ed5d2809535145d949 |
|
BLAKE2b-256 | 25d29ef51e8bf853102a284309573332e9637a73c4cde5ecb7131564071331c6 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34442ac7046c691ab525d30c9d5762eb9b352e814badb4f36fc83f8d9fab4316 |
|
MD5 | 87894d38717d93f80a95c637bf6f2ee5 |
|
BLAKE2b-256 | a85ecc5e2c9f3826119d2c822b250c7a5d6bd204a43ea6a1efb6a5e0c69b2398 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 953cef308068506ac39cb02600cd9634eb5a2b38e77c89dda6c7478d997507d5 |
|
MD5 | 841043cb85df99aa9161ce59da81c599 |
|
BLAKE2b-256 | 192318cb913b0f6a68833642d743f78355e49d59651990114222ba3ad19bad8f |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 620b82bbba9dac0c93c26b58039fdab0602c1274b490501c189b467a08af5548 |
|
MD5 | dd14ad5283b7c5eed498f25f91be8ebb |
|
BLAKE2b-256 | 47518fb5652b09b2310de75029fc7b196845c493fe7069660a71b6ae673ba1b2 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp311-cp311-macosx_10_9_universal2.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8a9ac12e9a5cef78e281a77ca3ac3c5d284c8ec083018bcb5fc0245a9b5c6e8 |
|
MD5 | 2d3e73c0be25aed5fd67e871baf81d48 |
|
BLAKE2b-256 | ea2bc320d1d7609b8a5cdd07f1875eca41ed0badb2388002914aefee5395dacc |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-win_arm64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e67d18d88e6eb0ee4b66839ffefb8df17399ae987ef38f927302428752948ab |
|
MD5 | 81d0d7bbca696a0396b693186ba36780 |
|
BLAKE2b-256 | c2b7adcbe7f1989c1ea347c0081a194b66b2ae9d2527a4a6cc7ddd38e181bda7 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-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/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e456a6550e4893aede5a759d78a621798e72407dc0b3ba50ad62f905ed794ff |
|
MD5 | d522f52e272d4055d84d405b92e37515 |
|
BLAKE2b-256 | cd09cdf9b4f366a6f26faf1d3469a9e052b56719ffecb40515544467945a055e |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-win32.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c461283ba838c1b76ccfe64cf1b008713e0b79550c947db49cbcc010e55d5b28 |
|
MD5 | fb41848018ea3fa1c0873867d4197504 |
|
BLAKE2b-256 | 874aaab69b6ab386afaa65bcd669c7007a8b73882074319363600bc61f601562 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9454c00af3a9e01e11a4d98043b3bcc9f449aacd87c79291f806ff17479f4b96 |
|
MD5 | 3ee4bff02033d04264664f3f95af67b8 |
|
BLAKE2b-256 | 9ead10f2bb780b84e6bcda6ab96236aaa3d927ea0971b9b375632afb9a0b631f |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-musllinux_1_1_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-musllinux_1_1_s390x.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2456fae6cff59f9b9f6cd8a978d82ec74e0453064859bf0fe9e7347a296510bc |
|
MD5 | 4328b1d7c494651a4d02d7c748d681b6 |
|
BLAKE2b-256 | e503fd8164d914749946476eb05ee215b2d7d3aea5506e1b03f46c2d4b7a9e6a |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-musllinux_1_1_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-musllinux_1_1_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 598bf89cc322438f433846e92993925371d9115ae6d428087d679650bc8f81cb |
|
MD5 | 1df0c069eef0a252ad9e0043d75758b4 |
|
BLAKE2b-256 | 5c98512543408e68abde6bd451f862736c0451ece0b6827470012ffa7b22d8f7 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-musllinux_1_1_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac90c8c37ec16941f94f5d57c124d72b53e5ac766bf80a87f7709f7eaf2111fa |
|
MD5 | bb4225a0f2db21638f2cd3246a59d0e4 |
|
BLAKE2b-256 | 24d13da733dcaa0673be4c22ebb64317098557d09cbd70396c83c96d549b2441 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8323eea49328adbaaeace72e3f94a134618c642c514c524637a9025d4081d411 |
|
MD5 | 58eba1615820c97b290900df27bf340a |
|
BLAKE2b-256 | 2d6ffec5baf9eca2d60f2313e0c70ede28eb72d70605bc59c4f46fb8853de327 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24d2c167bde883f841953c06c47e2a494af2a55c7dfe6a45ee4425325c98e378 |
|
MD5 | 1152937d9365b1f6f792d712526187d6 |
|
BLAKE2b-256 | 3526a65c3f49fc501a22ddbce709d2f360ab85627d199bf274030bdc52a831fd |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d16678bc22b49f1def5678b4a89b35d9643b23f9be7fb0878de39deb950dc980 |
|
MD5 | 20467a11ffe6c8792c3074391443cd09 |
|
BLAKE2b-256 | 7a11d279fda09537bc04d4418709f99384ca9d8c8b543637c6dd0b29bb6ea420 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de847b3c39f84a2c5756374e0a4097aabfc211487c2decc5bc428750fbb9374c |
|
MD5 | 8e35933c344e991715f50d0e94a990e4 |
|
BLAKE2b-256 | 8fe50f94fe38580477b72377d66f9f92a7c02052d8fe285c8e5640d416f2eb62 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b4ad0c6c72f40896c3125bc42818a324c5e319bdbd122371d8fcd694427ee0a |
|
MD5 | b7d8a594d7351c61f08e50d9f3d6812d |
|
BLAKE2b-256 | fea113c1019510574ece7957d08c4a6e2f9cd4fbc9456d59858a45761070f735 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 435f162e704485d31bacaef8fa32779f608c5ea85f9580b8ff6d0ab5d75613ae |
|
MD5 | 5e34c37ec8cc40fd4cea1006054ee610 |
|
BLAKE2b-256 | bb9ed2be0187ea5d45ddca79a7644e43234132f20c60d6a6f1e66061511902b5 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d937ebae17a352b6fc1d74fe64b86dc3a2fd99824bed3a161ab54c9b23db0a4c |
|
MD5 | ad392cc47640a0229d23cd306a509d6f |
|
BLAKE2b-256 | 6c7e607ca12f842ee17618c357fcd31c37acfd63633e6549d9e4826713dbae67 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdcdcaf0f2849699560e8404b1b97a1fd054833c3783f1d786d961dfe9b6398e |
|
MD5 | a96242f7fe8ca133b606c4aa9d6e9d39 |
|
BLAKE2b-256 | d5c3162f8bc2d3cc4177ac65e8b4ed2205d8e451f9ab610c917153b410236545 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp310-cp310-macosx_10_9_universal2.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c81128804e4edb5ee473a058a50077128456ab26b0f9b6a2f2bdb031f1e790c |
|
MD5 | a0c9389f5a39471c9f95d8ffe4fa5c6d |
|
BLAKE2b-256 | b67262d5ab838bc108bfa2d9257fcdce6e3cb4231fa7f17dc3c07d89b3615c26 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-win_arm64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9973644047a0231032bbb872247707ab69cc375336c324636255b5ea6093d61 |
|
MD5 | ec5c28affe7839353889e1111cd97ff0 |
|
BLAKE2b-256 | 7d2a473dc44b1d5bfd1d513d7771563586d5461cee74e0e0dcb82c23e280e0a6 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-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/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e920ac1d036b2fa8a5988ba1eb747f9099749fb9fdc603882262a00957ecbdf8 |
|
MD5 | 91d0a0b73d313a4dd5291440d3f2b29f |
|
BLAKE2b-256 | 422338c7ce6fad88d3f5750c63dddb81ccfb2ff6d254003c2088de728a499347 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-win32.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58dfdd964a07e10deb3d624dfe205f8b9400fb10799765aaeab26d4afa23e11a |
|
MD5 | c1997b152c4fb7a84a0191378bb1a61b |
|
BLAKE2b-256 | 02be66386a757b7d70d85897e458a38f84478e6094ca91d7a053d82b21efa8a0 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7bd995b162f6d3d37e4169e1c378c191a944aac6ed88ec6f1d01c1ac985e2e0 |
|
MD5 | 022f34dfc8436ef6fee627941ed45c9d |
|
BLAKE2b-256 | 439f428d11868ffb8b2c096e3955f2a587926ead443bb3d128e6e42f74cf9a1f |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-musllinux_1_1_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-musllinux_1_1_s390x.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6bcf6458ac21421156c7de0b622025c75b949fb044ff4f9429a63db9c1cf47bd |
|
MD5 | eb292426c82e97d9f14d2e49bec3dd25 |
|
BLAKE2b-256 | 3351bc7c5faf70432d1d9c0299d3270d162a5e0d13bda42e449516fb4c32ed34 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-musllinux_1_1_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-musllinux_1_1_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8d2209bc44e392337d20e8fd9fc2d5a8e898d072dd0b36cfcd9972d193cbcdf |
|
MD5 | 5e71134de71e21ad90fa4f9066ac3c94 |
|
BLAKE2b-256 | 64e5fe21ad2963931b177c74d9ee47abc009d2fa9caebf55f51f7222da3c8923 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-musllinux_1_1_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 934fb3f3ac605d922f7be89497da94af757ffe4d7bb7218547baa24e707e1bbd |
|
MD5 | c300a8378842b7e6eb3a712d299afabf |
|
BLAKE2b-256 | 7d7e9957fdc89a4cf431a107613d7ae29aacd2774c5b08aac6a4d7ea0ee6f507 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 136472810a48ff18a5825d6d1c142d886d90548d7e004c8b504dea3c92e54f19 |
|
MD5 | 391f1ad49895e1cbc5edbe5e0570b5e5 |
|
BLAKE2b-256 | 4613573e092f710f85182780f3eb3b42e74c7874451559c3269a5d384b8c1b32 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86191f39c0988f5b733a80ad6656b07bc853e7f5ba615b95493b2006d526209e |
|
MD5 | 747b80923d3a5724dd58569aec26491b |
|
BLAKE2b-256 | bd1f2db6345f110574ce97a4aa139fed1e25208998cc3689c3aecb2fade1f39a |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab030326c4e180e6df8814130c19a213488b2f4baf01112c5c5b8ce3cdaa0a5a |
|
MD5 | 3e3c54faf2a7b3de4a595d21a10059c3 |
|
BLAKE2b-256 | 74823ffe48e6e0f32b35a1fe5dab0a3d7ef09e4e7fa04aeb287e124c34150942 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a5fc59e4c89cfd7faf309191fdeb417180440e3afa5d39494592808305ec326 |
|
MD5 | 6110ba65e277835692d597c3ce60b6d9 |
|
BLAKE2b-256 | e2225c097a9aa24a24dfbbcb88d3590f22c8f95c24783696d79d118820e3267d |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b282dafd850df56d9af107945573afa0b4e777ec148ec92622c781fe181bc27e |
|
MD5 | eb7f9911c7bac7091e630b717cf5fbb6 |
|
BLAKE2b-256 | 553179f0a32df7d4a7abb4b0599ec649f6bbca42eb066feb4a9802d8b0b9292f |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e14f7b85bcb8bfd6bcd290b3197571513a2b91ff9a72ba209725efbf381f4228 |
|
MD5 | a9d429544556fa4a820006ed22dd6f04 |
|
BLAKE2b-256 | e7b346d963ebfdc1ea087650d75663460a42620525d01bc9137b09678be3ad39 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d789dc1e8e09f9a8eb5f52c8422751abec3931fa2dc47f5b4f6480bee142cdc3 |
|
MD5 | e8be3cc5eaa85ab337da5e5a5409aead |
|
BLAKE2b-256 | 21e841eee11793e921675a15003425bd068b08702cea05c76a05f91ec6efaf6f |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbd8d1e1db213b1bdc0cd713cf6fd69d1fa745a0d2f778a26b0684ca651de2fe |
|
MD5 | 0ae4d05d974cc01c6d6d3d6be4682626 |
|
BLAKE2b-256 | b5c8082be3b87f3d5e6fba47f4d8edb4d6209253de5a4ac177deee5a7b8d3f58 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp39-cp39-macosx_10_9_universal2.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea225b41a646cc0aaca9c01d655ef8a7139e77c5c5e290ff17ab81b4468fc30a |
|
MD5 | 218fdaec844e921583f7af02489318c4 |
|
BLAKE2b-256 | e95b8483424d2a25b393585dcac2895ab07d408f39398680c56067fe3ea8b73c |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15512d50fe0ecc3a1cffc6b8dd808328e65a840eb4db6efe639b6469283e4ecb |
|
MD5 | 1243b1d422d21134ef8c71914a75e86a |
|
BLAKE2b-256 | e27dcd161e73b1c9e08a70a2833a7ffed3202ece7a8909f9cc139f8a54584091 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-win32.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c28f5062dc6e947ef0d19cb436eea55a412d2e14cd6ebb70c5866d96c83e22e1 |
|
MD5 | fa17098fb8c33fb56961df9f11b74f95 |
|
BLAKE2b-256 | 99e295b54d589c42716e7fdfd5e8dfafc6c59b3fe696677ef7b219ad3332b2c3 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 957478a4d19e5825ba561aa5598fe30ad7f651f13e4a1874254422ad3ecbdc98 |
|
MD5 | 8c173bf56c0ab03eabac9e2db81ff5b1 |
|
BLAKE2b-256 | c5cc0b1ca61fb312aeb86c7132a9b5b9a1ada50ab278a87e889dffa4e91c63d3 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-musllinux_1_1_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-musllinux_1_1_s390x.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aabbebd4990cbe7d17a862059a9fe0ddec75ba6fd4f4b6d5a801489cfcfb1132 |
|
MD5 | 9fb2fa7bab3ab0e484e1a8927e792e1f |
|
BLAKE2b-256 | d8d54e428a4c1aa8a9e0949395daae8e78a9d97e6c30342938665da4e854024e |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-musllinux_1_1_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-musllinux_1_1_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f079173fcf3a10988408f7fe80a4cb241515ed5e3ffdc43cfd8fe58e1ea3059e |
|
MD5 | 55c6ebbad8a2ed01b8778e810a1cc03a |
|
BLAKE2b-256 | efbdf166813235a6180f94cfbd744e6ae2a0cfeb7b65406ef12d4ba12bf0e899 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-musllinux_1_1_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-musllinux_1_1_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78dc6f83e39d2328792655e49020a07d3e3d804b505f7b18b19c5f97713406ff |
|
MD5 | e45b0182e24c179150ff791cd2ba6cfd |
|
BLAKE2b-256 | c864bab21ae266dfc47373b626a495d182229c1268622a74c70684fff43d4e10 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0bc85b4af71ae131c0a1e7e9e0290ed31050788d01696b8de4b1b558369acb4d |
|
MD5 | 9d226ddbdfa1846bef93d82aab45060e |
|
BLAKE2b-256 | 5a280222336cdf657075883520b9f6d727f5601e292ddcf5049bb698ba30461c |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8eef66bf8b498e4d32cdec7f6629ea3ce2e933ac1ada11ff2d979e2a6788e061 |
|
MD5 | ab9c08c785303da64a111c64652d232e |
|
BLAKE2b-256 | c177da94b85497c4b0d2131e526afdc8ad4229d3c01c579da9c6ab2a382bf9b2 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b9bb753af6af68e3d2d655bc65763239b0845be36904bcf72c181628807a719 |
|
MD5 | 57c72b16744ecc2a461c1bb5045a101e |
|
BLAKE2b-256 | 2c1c9a066606df1a002e934aea3d403b2296a2a5964a573f3acb5e219fbc7dec |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41f41d0a8c38d706a5bfb8d9d17d02afbaa4fad33b11b89ddf5ddc3bd62d0a9a |
|
MD5 | 8a85f1a28cdb2c0d9929ec829dc4165f |
|
BLAKE2b-256 | f552c24bb7766401e3daec6f294d0badde40a4347c6840603e63f4fe464ffd14 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc644f9173c260c640afe30e71d3164fd85e882a05160b8794d708d16e3024b2 |
|
MD5 | ca7ac9e760e326197452de60c932a140 |
|
BLAKE2b-256 | 2412bcd8f59e536f5c9481059a32c34396f011f94902ec0897544a99e1ca8cc0 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89d12dad2b39c3167b76b780fbb917b9a63702b95113ad768d8875054d0293ae |
|
MD5 | 8b1d299cbe151a614a5be2ba6c5cf28e |
|
BLAKE2b-256 | 5b4fe28f470bc259fe71d701333a84a23e16dec572bb7a5ea189064af77781c0 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07f08e6dc7dea92ca9bc4e28b3ac22380b87c50a884eb89c8443d27277034121 |
|
MD5 | 26f0a213ac07004c68a2caec486ae315 |
|
BLAKE2b-256 | a5f75f24d6c16cc355294196a20ea3035b1a0ce8b283bd1197a9f9e8e9891adb |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbe3a099387f523bf7ff70c99f0c996fa4f69a2cd0bfa736e01fa26be5a7a596 |
|
MD5 | 22c3e06490dc61bc7f3f156442478237 |
|
BLAKE2b-256 | c2011b84d727821dedadc9e40662a3e53852a34cac6d50b4667eaf540a2bc72f |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp38-cp38-macosx_10_9_universal2.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4d35b97952a5ac4d5adae718c86f666edcc147a0ab3b222a4a3e4ef7c345826 |
|
MD5 | c1606173516de713ebe5b4efb089d52b |
|
BLAKE2b-256 | 60e795045f7df0e881b03af284f7ed7c870f80e42f752b6b3a4c6847ea5f5df9 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 344f423ec92fa5062ae61431d45d21940c88cca15f4298d3a3e2cd8ab3cf26d0 |
|
MD5 | 8922cb7c2e01030a97d992f17c248edd |
|
BLAKE2b-256 | bb0b67ceea26961fc5977d94b5dcd86fc7c28ea19a39e197044cfa758c2449f3 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-win32.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc50a70b6431b8cf2c2f65bbc8cebdac1efbf28811a0bdbf41604c117085f330 |
|
MD5 | 04f665fd39eb55183d106feacf5ae2ee |
|
BLAKE2b-256 | a5cfee9ed616c02efb36bb8fe0ef4e55f775104e94fb38ac4bb8bb6a4361769e |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 422bb565750187a70aed64ceadd3ae95add79c6fab886707da5f3c0fd1060d70 |
|
MD5 | 7a9292a213561536b5640903d938a379 |
|
BLAKE2b-256 | 8603a5a418a2436b2942c7fd4bf1b54b51de70df2c45ceb4e8d952a2c53c1175 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-musllinux_1_1_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-musllinux_1_1_s390x.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f785b82c7709847ee45a44fc7d20c81996da17fcb9f988372418e9011528a3c |
|
MD5 | c26dba0520a1794a09a8dc57d72d95e2 |
|
BLAKE2b-256 | f3efcb5d4a5ef50b0167395778710157199812b393bd9c30905e92dbf0faf8c4 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-musllinux_1_1_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-musllinux_1_1_ppc64le.whl
- Upload date:
- Size: 4.7 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2d2e0c549634989a32a7c21a5f339a143feedd28f2cacb6e68ff1781477f4a0 |
|
MD5 | 7ce246c0b76c5d0f82150438facd0ecf |
|
BLAKE2b-256 | 583b7bccd30183fd937654eecc2d3ead94b71d6ed28d9fd94fa1f7da6a82374d |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-musllinux_1_1_i686.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06179b16432943ee8392db85c02fd807f896ddf7d2ce5539b67f41cc3d2e5297 |
|
MD5 | 5521456e9d15cf78ed1a8cd55c1689d4 |
|
BLAKE2b-256 | 02dbabc419b38dd75758d6c5db5ae002b98629b20fa3b300f25ddc4406d1ba9e |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe96ed456508e21346e7b04cb815bae70714f558b150fcee5aa882406a47627b |
|
MD5 | 565a754fdba9d7b9632d14b0781e21b1 |
|
BLAKE2b-256 | cf87c4d7642cb0d247cd3a2d3fa842f5edf2a644c2754a01481cfd712826171d |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73784d0e6d5b8d7d391f49c431f3118052882e0c28c67930dfbd493ef38af6ac |
|
MD5 | 1209fb2fac78e406ff741f24e86d9e4a |
|
BLAKE2b-256 | af1b115cbd074964001bd89544ad8daa601803d8851e358f861fcc8777f4bbd8 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34c77d59df65c5817d707d5035ee3e8d92cd64893f8eaf8265bcc43cc6f256ed |
|
MD5 | 426d21dbb57659c099e2ccf5e39d6d61 |
|
BLAKE2b-256 | cfcbe518131ff8bbc286858efc8214084a1485ba9a276e2ddde46292b87dfc77 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f074eec7a78022e2c068d93f1db4af5f9204ae911f94c746065aeb46ca90a765 |
|
MD5 | 1c85c8b050e4d0f650357face267939c |
|
BLAKE2b-256 | 196e0f156bc71e348f774562d7d462bb218a90d63e649bf12f6e4ba149602a3e |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b88e4702069fdf5e6d29051d326437cc627f4ac3bdebf02a04f72770d6b80ecb |
|
MD5 | 9adab00715498866304b04ea821d180e |
|
BLAKE2b-256 | 6d75861aee4ee3735dfe2b16d763c213f519ff8f27a9742b2713d6cb7dddfe2e |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c6466f3cf49e183fafa64ddbdee46382efa371878b74db38c19943eaaf8cc4d |
|
MD5 | c6a97f83011ab070e700d07a7a83628d |
|
BLAKE2b-256 | 3635e3b00a55ed8748d158fb1df3c248899309270f50b38b9ef889498800c627 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4204ab3d10bc7527d5a5aac8b6463517924dca105a7b28dbf9644170b2fdca9d |
|
MD5 | 90f356b7e457001ed16bce1dc19df0a4 |
|
BLAKE2b-256 | 37cd40136ec7a633306dbbc4452698bb7d0e2535d6b303f44203bcb4f3e36176 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 64a55647a2eafcdfe9a7d3a04a81e9edaf8d3a9b4a04896b840f7402945360e2 |
|
MD5 | a4a72fd9ae4c615efb795404fb94a470 |
|
BLAKE2b-256 | 345c2546d33221ac2f8805e491c96eb971fcabf96ebe4b73c156a297e6d9666f |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-win32.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7733c0b4507cf7d82368ce94a3db7d2f02fd03be79f2d847c320cbbb4886947f |
|
MD5 | aec9c4e6d9d2a573d4ac6ef0f965012d |
|
BLAKE2b-256 | 939eb35d28a22047801e6a450e6943f8adbbdb37b8b93163656a14476b0bb697 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 520f416173d1ced1bc8912212b6a1dd762af72f34feafbc9c7153af84d75489e |
|
MD5 | 85150ba4c84489953ac8874e1d483300 |
|
BLAKE2b-256 | a9a7ccffed22667fea89f4e94fe913ff4e0f72e421d8e63175107cf4ff24bee7 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-musllinux_1_1_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-musllinux_1_1_s390x.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.6m, musllinux: musl 1.1+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf846439055e6571be8760d28c7069c4e63bb13d2282ed6244f120f304a348a2 |
|
MD5 | 7552c3acf39c49133db61a24c70d6e35 |
|
BLAKE2b-256 | 1032625998d7b1e1b7d0ae97d9e2ff8496770cb4b2449c74e5d2f164cdb44c48 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-musllinux_1_1_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-musllinux_1_1_ppc64le.whl
- Upload date:
- Size: 4.7 MB
- Tags: CPython 3.6m, musllinux: musl 1.1+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4aafff025149ede7b2225372efca817dedf9c9ffebb03e13fd0a29048a667d60 |
|
MD5 | 140124c3318aeca0b67e7867ded42cb1 |
|
BLAKE2b-256 | 3546780d637c606c3402f78d952853560fece9993c9eab1d955dbfec58668c0f |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-musllinux_1_1_i686.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.6m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e264ad45deb4c0f0ec92f3ae3e6f07877bdf422bf776d844f3c480654f461c49 |
|
MD5 | 32fbd9a30567b68cb92ab65980246758 |
|
BLAKE2b-256 | 3f612a13b3fba113ead7aec0657182fd0a75805b871a10c5f3bbd19f0d677996 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.6m, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b80e05292c9b6b6b7265878f2e529531ce224ba6a12ba450a664c9c8fdf8009c |
|
MD5 | d044cbc7e03b12e15bf9539d49cb00e8 |
|
BLAKE2b-256 | 9a76d62c7990d00993646eb31919d81a49dc28b9bd763b5617ad082d8100f240 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80abc54ef0d8964a618cca7e24c97c30be58fc3cb3958e3921ed9219fee68c13 |
|
MD5 | 31c494feaa337edf20050751175652c0 |
|
BLAKE2b-256 | 497abb674f2b8cf462ddd3f184ac0a898cc63b15db2753a5fc94c644501c2efb |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5d90e917c1ed065011ec4c95cd1d110b1c7ccc1ea6e99954173a80b8be86f49 |
|
MD5 | 2a9088f8fdff5f2c9bb4402805088384 |
|
BLAKE2b-256 | 6f6b3210b8c0ab85230e2379101735837773b96a1de606b4694ab64e3d1c9405 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af032ad0fd17b5922394427fb01cca9ba5c0a630fcd867addd02401fbf741d29 |
|
MD5 | d6cd975db7bc226c319b26c61b4420b9 |
|
BLAKE2b-256 | fd6fd2517e2a59507b4aabc0f16630a842518bf9ce5aaeff3242b51d0aa4edf4 |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0be26d963274b5636e2cbf3e4f859e9f332af80fb446c9abff312c9093f0168 |
|
MD5 | da8a269bc76d347c758df4184daf6585 |
|
BLAKE2b-256 | 90497e8b65dd7b28dbbef7b2c4a2d8879ca9b2b95ddc332bcbd92e58c1025c8e |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05514a127cb9bfab48a603086e56894ed5e144efad3a65a260e33a108c4dc026 |
|
MD5 | 69efc88c798b6db4c5557be8559df2b7 |
|
BLAKE2b-256 | b2ceea0e3273d08d53f0e6dd794fffc3a8e85ca249eb2662af13aaa8b49ed78c |
File details
Details for the file sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: sqlcipher3_wheels-0.5.2.post1-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b69ed7c26d21cd20018a71fee88aea9ef45dc963c5103ce2a4fdd123fdd4ec18 |
|
MD5 | 6684870dd572c7dc19a4a650e6551067 |
|
BLAKE2b-256 | 3ccd81d0c6d5e7d4fe2993d715593727c35b5f5d801251543b74d8c7c6c097d8 |