Skip to main content

SQLite3 Multiple Ciphers combined with Another Python SQLite Wrapper

Project description

APSW SQLite Multiple Cipher logo - links to documentation

About

This project packages 3 things together

APSW

Another Python SQLite Wrapper, providing complete access to SQLite3 from Python.

SQLite 3

Small, fast, self-contained, high-reliability, full-featured, SQL database engine. SQLite is configured with secure delete turned on, and to use memory for temporary storage.

SQLite3 Multiple Ciphers

Extends SQLite 3 to allow reading and writing encrypted databases.

The distribution is entirely self contained, and does not use or alter any existing SQLite you may already have on your system.

Installation

Available from PyPi. Binaries are included for most platforms, and pip will build from source for the rest.:

pip install apsw-sqlite3mc

Usage

Use as you would regular APSW. You can check the version of SQLite3 Multiple Ciphers with apsw.mc_version.

For encrypted databases you need to use the relevant pragmas to set a passphrase based key, or a binary bytes based key:

connection.pragma("key", "my secret passphrase")
connection.pragma("hexkey", b"\xfe\x23\x9e\x77".hex())

Setting the key on a new database is the only change needed to your code.

>>> import apsw
>>> print(apsw.mc_version)
SQLite3 Multiple Ciphers 2.3.6
>>> con = apsw.Connection("database.sqlite3")
>>> con.pragma("key", "my secret passphrase")
ok

Note: The ok means the pragma was understood. It does not mean the key is correct or has been applied to an empty database. See the next section on best practice to check and apply the key.

Note: key only sets the key for following reads and writes. If the database already has content, and you want to encrypt it then use rekey which will modify the database to apply the supplied key.

Alternately you can use URI parameters. You need to correctly encode the filename and parameters, and tell SQLite that you are using a URI name:

import urllib.parse
import apsw

uri_filename = urllib.parse.quote("my db filename.sqlite3")
uri_parameters = urllib.parse.urlencode(
    {
        "cipher": "aes256cbc",
        "kdf_iter": 8192,
        "key": "it's a secret",
    }
)
con = apsw.Connection(
    f"file:{uri_filename}?{uri_parameters}",
    flags=apsw.SQLITE_OPEN_URI
       | apsw.SQLITE_OPEN_CREATE
       | apsw.SQLITE_OPEN_READWRITE,
)

Best practice

SQLite has various quirks in how it operates. For example database files are not populated until the first write. SQLite3MultipleCiphers can’t check keys are correct until the first access, and the database is populated. You shouldn’t set or change keys while in a transaction. In order to ensure files are populated, and the keys and cipher configuration provided are correct, use the following method with example usage shown at the end.

import apsw

def apply_encryption(db, **kwargs):
    """You must include an argument for keying, and optional cipher configurations"""

    if db.in_transaction:
        raise Exception("Won't update encryption while in a transaction")

    # the order of pragmas matters
    def pragma_order(item):
        # pragmas are case insensitive
        pragma = item[0].lower()
        # cipher must be first
        if pragma == "cipher":
            return 1
        # old default settings reset configuration next
        if pragma == "legacy":
            return 2
        # then anything with legacy in the name
        if "legacy" in pragma:
            return 3
        # all except keys
        if pragma not in {"key", "hexkey", "rekey", "hexrekey"}:
            return 3
        # keys are last
        return 100

    # check only ome key present
    if 1 != sum(1 if pragma_order(item) == 100 else 0 for item in kwargs.items()):
        raise ValueError("Exactly one key must be provided")

    for pragma, value in sorted(kwargs.items(), key=pragma_order):
        # if the pragma was understood and in range we get the value
        # back, while key related ones return 'ok'
        expected = "ok" if pragma_order((pragma, value)) == 100 else str(value)
        if db.pragma(pragma, value) != expected:
            raise ValueError(f"Failed to configure {pragma=}")

    # Try to read from the database.  If the database is encrypted and
    # the cipher/key information is wrong you will get NotADBError
    # because the file looks like random noise
    db.pragma("user_version")

    try:
        # try to set the user_version to the value it already has
        # which has a side effect of populating an empty database
        with db:
            # done inside a transaction to avoid race conditions
            db.pragma("user_version", db.pragma("user_version"))
    except apsw.ReadOnlyError:
        # can't make changes - that is ok
        pass

con = apsw.Connection("database.sqlite3")

apply_encryption(con, key="my secret key")

# you can also do more sophisticated operations.  Here we change the cipher,
# kdf rounds, and the key
apply_encryption(con, rekey="new key", cipher="ascon128", kdf_iter=1000)

Verification

You can verify your database is encrypted with a hex viewer. Regular database files start with SQLite format 3 while encrypted database files are random.

$ hexdump -C database.sqlite3  | head
00000000  e1 3e f0 7c 5e 66 4c 20  19 85 9d de 04 d9 e8 e7  |.>.|^fL ........|
00000010  10 00 01 01 20 40 20 20  29 2e cb 95 ef 4e 4e 67  |.... @  )....NNg|
00000020  22 a1 5a 8f 18 1a fa a1  cf b3 a8 ba b1 80 07 b5  |".Z.............|
00000030  2f 68 4d 8a 13 26 fd 6a  0c 99 5a a4 2c a7 f3 a7  |/hM..&.j..Z.,...|
00000040  d9 ae ef 24 dd 1c d1 9c  cc 91 4b e8 58 00 96 62  |...$......K.X..b|
00000050  b2 aa 51 bf 57 8e 9a a9  d7 6d b2 75 58 84 f6 7d  |..Q.W....m.uX..}|
00000060  c9 fd a9 57 88 05 ca 60  7f db d1 73 40 ad 98 59  |...W...`...s@..Y|
00000070  c2 a0 4c 76 f5 88 31 d3  d7 6f 9e ef f6 c1 c4 88  |..Lv..1..o......|
00000080  92 ed 8a 3e 00 ce 35 ef  4b 0d 38 33 9a 61 88 8a  |...>..5.K.83.a..|
00000090  34 37 72 70 4b 33 f3 1d  a2 4b 86 5f c5 59 02 c6  |47rpK3...K._.Y..|

$ hexdump -C regular.db | head
00000000  53 51 4c 69 74 65 20 66  6f 72 6d 61 74 20 33 00  |SQLite format 3.|
00000010  10 00 02 02 00 40 20 20  00 00 00 95 00 09 22 e6  |.....@  ......".|
00000020  00 08 eb 8f 00 00 ff 8c  00 00 03 d5 00 00 00 04  |................|
00000030  00 00 00 00 00 00 00 00  00 00 00 01 00 00 00 00  |................|
00000040  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000050  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 95  |................|
00000060  00 2e 7a 70 0d 09 30 00  09 08 c9 00 0f a9 0e d5  |..zp..0.........|
00000070  0e 70 0d f7 0d 8c 08 c9  0c 67 0b 2f 09 71 08 db  |.p.......g./.q..|
00000080  08 db 08 db 03 ae 03 55  03 55 03 55 03 55 03 55  |.......U.U.U.U.U|
00000090  03 55 03 55 03 55 03 55  03 55 03 55 03 55 03 55  |.U.U.U.U.U.U.U.U|

Support/Discussions

For SQLite questions, support, and issues, use the SQLite Forum.`

For APSW questions, support, and issues, see your choices.

For SQLite3MultipleCiphers questions, support, and issues see the project page.

For APSW together with SQLite3MultipleCiphers questions, support, and issues see the project page.

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

apsw_sqlite3mc-3.53.3.1.tar.gz (4.3 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-win_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14tWindows ARM64

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.14tWindows x86-64

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-win32.whl (3.2 MB view details)

Uploaded CPython 3.14tWindows x86

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_i686.whl (4.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

apsw_sqlite3mc-3.53.3.1-cp314-cp314t-macosx_10_15_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

apsw_sqlite3mc-3.53.3.1-cp314-cp314-win_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14Windows ARM64

apsw_sqlite3mc-3.53.3.1-cp314-cp314-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.14Windows x86-64

apsw_sqlite3mc-3.53.3.1-cp314-cp314-win32.whl (3.2 MB view details)

Uploaded CPython 3.14Windows x86

apsw_sqlite3mc-3.53.3.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl (2.2 MB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_i686.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

apsw_sqlite3mc-3.53.3.1-cp314-cp314-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

apsw_sqlite3mc-3.53.3.1-cp314-cp314-macosx_10_15_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

apsw_sqlite3mc-3.53.3.1-cp313-cp313-win_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13Windows ARM64

apsw_sqlite3mc-3.53.3.1-cp313-cp313-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.13Windows x86-64

apsw_sqlite3mc-3.53.3.1-cp313-cp313-win32.whl (3.2 MB view details)

Uploaded CPython 3.13Windows x86

apsw_sqlite3mc-3.53.3.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl (1.4 MB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_i686.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

apsw_sqlite3mc-3.53.3.1-cp313-cp313-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

apsw_sqlite3mc-3.53.3.1-cp313-cp313-macosx_10_13_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

apsw_sqlite3mc-3.53.3.1-cp312-cp312-win_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows ARM64

apsw_sqlite3mc-3.53.3.1-cp312-cp312-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.12Windows x86-64

apsw_sqlite3mc-3.53.3.1-cp312-cp312-win32.whl (3.2 MB view details)

Uploaded CPython 3.12Windows x86

apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_i686.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

apsw_sqlite3mc-3.53.3.1-cp312-cp312-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

apsw_sqlite3mc-3.53.3.1-cp312-cp312-macosx_10_13_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

apsw_sqlite3mc-3.53.3.1-cp311-cp311-win_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11Windows ARM64

apsw_sqlite3mc-3.53.3.1-cp311-cp311-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.11Windows x86-64

apsw_sqlite3mc-3.53.3.1-cp311-cp311-win32.whl (3.2 MB view details)

Uploaded CPython 3.11Windows x86

apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_i686.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

apsw_sqlite3mc-3.53.3.1-cp311-cp311-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

apsw_sqlite3mc-3.53.3.1-cp311-cp311-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

apsw_sqlite3mc-3.53.3.1-cp310-cp310-win_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10Windows ARM64

apsw_sqlite3mc-3.53.3.1-cp310-cp310-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.10Windows x86-64

apsw_sqlite3mc-3.53.3.1-cp310-cp310-win32.whl (3.2 MB view details)

Uploaded CPython 3.10Windows x86

apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_31_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ ARMv7l

apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_28_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_28_i686.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

apsw_sqlite3mc-3.53.3.1-cp310-cp310-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

apsw_sqlite3mc-3.53.3.1-cp310-cp310-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file apsw_sqlite3mc-3.53.3.1.tar.gz.

File metadata

  • Download URL: apsw_sqlite3mc-3.53.3.1.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1.tar.gz
Algorithm Hash digest
SHA256 64af7bf9a030e57fd426f8100d0be91bc901a32cb37a53b848bd12aa1ca062e6
MD5 cb91b304e5ae20133c83a79a536a34f0
BLAKE2b-256 222e3a67e345a697de1d1de3dff67f8f75da97fb26adcba69ca88ebcf44c4de7

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1.tar.gz:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d19abe438f715e5543db9a00058d01c56fcde503167b35e0954d276565bafa62
MD5 285ceb0561fb6e5ae745356f7e1bfa91
BLAKE2b-256 ef471e07d8f87b7fd14131c934de5990c4ca133d7c86ce893c07820b4cc27594

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-win_arm64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f45cbf52737b4b46da88014d0bc9b9b8998503e8ae0dd2d50f120ea0e89a657f
MD5 191df2d09a2f1ed658f249f3ee618bf0
BLAKE2b-256 fd73c83a32b681d980873875ddffdcd0d3995823c7952d81ee56e42cde8ecb85

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-win_amd64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7a400fe3544eb5fe63bf7ccc65a91213021eb93efed65a7a44e0651352db5480
MD5 1223ef4173f6b924d4829cae218113b0
BLAKE2b-256 3eb771e76e19cbefe0eea9b3fd336ed8557ead292c09be307248934add076294

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-win32.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 daadf349a45a621d34243925c1fd75b18f707e2eedd5812b219a40345be2e02b
MD5 c6526a244c1366918d84b7ac5f878ed0
BLAKE2b-256 3bee5ae0a103c6eb3c7efd4c5e90816f0a0874afbdf4c57acda5c9906c4962a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97f3b2802e94bd489ec8e9dc7014d82d2f7087f21c010e68de4fb173d979a278
MD5 ad63a1853c791250776bb5d5623959f6
BLAKE2b-256 1111b9e64a65873b072da94b2700d263c4293fbffda91ebb08ecb2f2570ccd3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35480fd608d037b3de8075c6a790edd0b52e97707add27b5d79cd8fb71400bc2
MD5 ecffe55d6be4c897962164997198227b
BLAKE2b-256 af7402449dcfa727e099aa6eaa4dd86c4803f8acdb72b9fbd168f0f089cf30b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 483a0fe7d5788b8b312f31337c7096306d529a7b495908f24df68468f1008e8d
MD5 681e376f048cf0e09efa2dd6826bd979
BLAKE2b-256 72bf85b65b3bcf5929e818719a2a3ca6743e8568e3ce9ef53bbb9e44b7a9eb36

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 feae6aa4eff9c91b2212e7c9ec51c3feb83dd4a5ae7615f3244efac4ccf63fd0
MD5 0e2d68e1633de2f42ac0bb4f769c369f
BLAKE2b-256 df91a5f306aef57fe0b8696f14ff5a38240cbf8d53eb98cbf059f13aba488dec

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5095197725f9379467dbe1333095f131414684c890f5509e4fdc46b1d87b538e
MD5 346909b2a270922f68645681dd88111f
BLAKE2b-256 fbb23ec167bdfe443494ca59b81e9eef95ca9dec4acb1fac76d2a7a3dc2b8421

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_i686.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 abc350aa0edd8f7c46c8994c30fefb5ec1a3b9499c5e5cfdb75fb01539696b1a
MD5 fd50886e0ea54548d7cb01ab031eaf6d
BLAKE2b-256 48e5a5375d5531945df5dfbd6d119c9572118a1e118513e66f044e2eb988e4cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2268543b37ead36d98dca3f19051c204e95a207bf8e7bce7b5c84400990e2c1
MD5 58d66b54954763bd39a8ed8b48b9f5e1
BLAKE2b-256 3ac099a26bdc482ef003fb767c814ab8545f7f0b9b91fe6107142e6583cfc01a

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 179f61ee450197fde8e6bf70a2bdca27eb70f3ae62719a067d012a9ba69a5937
MD5 2260f8e568d4e4b4cb80efb851cf9f81
BLAKE2b-256 09748fd43c438ae491dc57120109c4098ef3c4eb4ef06a5c5583ce652e63a413

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e6307ffb345f8d95c36cca604e7e7e14ef8b1aa9b838d7b1716991ae18306931
MD5 220af70975924da9b7d648b21cc06fd0
BLAKE2b-256 ea2259ae0a05f142bd354d520f764d0f2ca8c24abb08297550eeb0a2acfa9a0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c51af359cec6f43208162a4458bf5f48b4a8799fac1a63b180aa0389ced372a2
MD5 e58e017f037fbefe884c37f15a138044
BLAKE2b-256 d68c10387f69f87fe7be7de616e0ccf1de81a3eee2ac42a2d92c8b3f84c18509

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-win_arm64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 644d1e26843c1445c5990bd40afbc0c033c3b6980bf30a956ab39f96d114f37e
MD5 bb66440d094696c3aa471261b9defaa1
BLAKE2b-256 0a3ea62d1c0f7a995ac1a39829dc73b16c91f216d92cf5372de2182977cebab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-win_amd64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6ce0f7afb42d370068eccec4281a89cd6fc472a8504af3d1cbe2bf810a3f6e13
MD5 c08ebcbf13f7495451bb8231a9bfa557
BLAKE2b-256 f715b6bef058ceb671afcf167c82a633f004ec5c6501424bb68e7afbfee3787b

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-win32.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 c1bd121a3e2ddd5b913878dd7dc2882ce05c8039c17eb622eed394ac2127de0a
MD5 c7afbb0b6bcf701e118ac85d857f05e5
BLAKE2b-256 56a00e4260ba3193dc69420f046979d578791f61fad16289f3eeec62e790be0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dae3ae4a0749710646a6a79c06ae68fdde67d0d0bd5997dff69233f3ddde3c53
MD5 843c04da3cb0fc3a1e325691afe2cfeb
BLAKE2b-256 a947b64a28c9a6048c1b4029c162c0300bf7057ef714adb796153323c9592de1

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6700b2133ce0a232ccc682812951dd6c90fb864f85cf5f235e4eb06af0a3c159
MD5 09dbb689e42ad7c821dba5a33a1aa528
BLAKE2b-256 fa3d8452cd40cea3eecb6cfc7156dc20c6c44a47ea36343769e5b21e5b26e438

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 135904bbd43e8fd1bc6494a8e143a03db18d46c038fd0ce51e4e3049ccaf5290
MD5 71bafcd071b34108a9e7ae6bac722392
BLAKE2b-256 4f4986339c9015d60fa69c126b06ffc01def1924686148040e98c9fb8876ac7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19aca38669e20a795f4999d2c583a7a0704aa1b715f16481624167d53599884d
MD5 971c560d2ca2bb62231fa61991018cc7
BLAKE2b-256 f04f192b0d3d04c449858071aaccaa342dabfe11e39718a2edb609159a33c32a

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 605e7ddb8dabbcf98070a5e7838470d68a50ae68697018a3c6682eaacfa74f27
MD5 62b991ef86b8f11913940aef8615200a
BLAKE2b-256 14da4897d1b9d0ec2560aed703c4e9be915bbf78d921aa29be4663d1aafbe22f

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9ee8bb546a97174a66f72bec0eded700251fddf930f87b502180f6bcc7622dae
MD5 7a08a4e8f04fa938da41727a1836a655
BLAKE2b-256 62757d66d12df676ca341b8899b3140990fb04e24d8ed601a78286a84bf0ebf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_i686.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d53b0d847e5c3ebc957b235760062b56b9d592bea8397d01e37ac6e86598a883
MD5 521bdf2d5a19160c3ce598a4313530c7
BLAKE2b-256 6b0dde4b1a2d69dd17dc6b3303db72e8da87b3e9edf64fa08074574fd8be52f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1cf1033855c2a8a2dcf8a7f32e52e862edf7dc687d1fb6cbbfe0856454502bb5
MD5 fbc6756385e5938b78a94cae3fc9ed96
BLAKE2b-256 23fbffa5ca05c27e64207a76e59309a927f77241a25ed4ced51b67c076d95a90

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cd96861849638b0b0a4812d29a7ca44d69308abeca6e1c4f0de9efdfe6f48f6
MD5 0a23cf023262241487faf3fc296101d4
BLAKE2b-256 51918ca4d1095e99441d752532ec576893d405bfaba4d86616759796c10bd6a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bc668e2e2dc40d41229a388deccc85cd855800039f730eb47422fa281ec2ebad
MD5 316d597be0830e7a7c8eb3bf0f94f720
BLAKE2b-256 e8228862052d933724190c06b26c906e92b8d898528631586043c10ac7fe94ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c14351279464983fd3383644e81632e335a98cfc60feb8ac2c45b6e43afc4bca
MD5 d2a18f2b14b83492caa67f74ca8f6c1b
BLAKE2b-256 a37f686c650222a6bba6a7ecd18af49c0ba71a5e815b3d8cd1291bad5a4abe1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-win_arm64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7e153d6de8c7eee616ffce717a056e5ba9c647d74b4cdfe9633ee82a5376b382
MD5 be97d9f93775aa83341044ffb0f94311
BLAKE2b-256 609a379e86cf1d1a43cd3f54f36d22da51c98326e255bf7149d2f10f1d204205

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-win_amd64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 43da3fc083404f87441ce9c4d186454fa4c208ab9b0459b2ad5bed3f7bf66f4b
MD5 44c9745d7d08ef8f8af85b5c9ee76108
BLAKE2b-256 3db3034b07ffd8b883e0623d138af0668f0b6fde1d5d65d1d1739cca2099987d

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-win32.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 e0b610f5403eca497ace55c5dad22fad54b63499f867f9f13e044311bd358711
MD5 7626854ed429ef7340de965ada140c77
BLAKE2b-256 0f357639b4f6c2aa66b38e2b00457cc73aa57862d3f6c58aadbb06fe37a97bcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20da3ab93cf17de9119e93baa2824ba32575ffc3d32ca04e70f6ddbbd78a79fb
MD5 f7862a54618320311c533103e87584eb
BLAKE2b-256 a3c8e9fac0fb164800bcc88a3bc1bebdf7f3f5fb5bc9de88482f5f9daddb06e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3fee48c3e52fc0aa41a4f8d8f4444fc81ad1128a31685970f32d4e90887692cb
MD5 6ecc003da38b7e99d0ad0fbd6ba10a62
BLAKE2b-256 8fe0d1d72289211e15146c71d47505c40f32a62ca1a3936fa974a93e34893467

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96f80ee2db9b7eb455899f9f1f05021dedb58271dd1a1d579048c002b24814d1
MD5 3296f3877fca87d5650012996a581bca
BLAKE2b-256 50a7b9880eaf254774fbee0ba080763dd3a4d1466004f1b78e82a3e72b986064

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 becce7f82de6e0add87d9c708a6ab4427f45696a7d3ec78f8c8dc08ca168ff89
MD5 47d4429e28519e09e5c12827205d4212
BLAKE2b-256 c40c9124b0c012a1e2c5a090a3fe2bf4f21bcf0a0120d3960db73237d5a50e4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db9836a1d14656b36fbcbb6b6eb852d55a493debbe59c1dbf69f815e8ebf592f
MD5 69d2fbf9fa22a5245d27cb87d2807f1a
BLAKE2b-256 6ee5de2d5d256ce8cea18f9b82d9627a6560fb0451e2cfa9b3ce8be0700b2400

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b1943490b240e21bdbd64d4d195f47d4bdaf3a01ad3356b7be65f7a90f0a55d5
MD5 d68e5f24c49b1363c2d5191003f0c601
BLAKE2b-256 ecea6ef5a19f3fabbda280f975b53b905868f2401faac6033f0f0c4cf181802b

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_i686.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4efa27191c5a28982a0a72595fd8bd85d22644d6551fd4cdcb538fe32df81bce
MD5 6556f7628efb477600f2236642371364
BLAKE2b-256 6097f7202cc4da0252542d985bc428f3062fc8030d2ebbfbe60548153c208199

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa12e9c049c718392fddc2a12b70a73d2f4eed74ed52601f3806348dcb7a9abd
MD5 82c72671913b7899285d2704b365ffd7
BLAKE2b-256 a03084f86c98f90eb657d8c49fc428e2e0ae5566b1838edcb634d24cd43476a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dedd2753358d63e25b294eced11b02953ad74aff0ffef8d5527e4678674b2c0c
MD5 a436bdfa6bc616f679b210f4252d40ef
BLAKE2b-256 fcf7ae84a3d78ae4491dc09323802dfb2960df75643797117b61e5b2c4a0f481

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8754c9f67b913d48ab507c94f107db9c2f5291aef7ef0374f56f3fe95423a73f
MD5 b944dee56afee9fcc8f8892a6791e3ad
BLAKE2b-256 fad5162c613f5f0470715de04690a13d06bf436c34f6c450723091e3341e5096

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 54289e84710e55e38461d56484456421fd63ae61e1caf110d7d02f36f217623a
MD5 4e789938f9bae01c6447df043fb00396
BLAKE2b-256 3e9cedc2cc390be5aaa981616f8b839ff649a32d535ce18bfead16af96c26b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-win_arm64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2ef17a9ec95bcc06d516f1445b6af2787950765f9f627848a022bfcd4183df6e
MD5 4b354f52cdd76ef4aca89c27378d6093
BLAKE2b-256 9f0582c8324952262f186624bf8a16bd8c0b175ec4c71969667708b3d8354f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-win_amd64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 67f19ecb7a8935fdcf55a9c121664f1e384434e424a32f513d8276052d00e239
MD5 317fde8fa664950a457f37decbe4f73c
BLAKE2b-256 73ee2eaed33d16a881e1f9f56613262f4f820e2ef4a70fc0a0f78cf29174faf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-win32.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 883916f2c8bc6ef8d330d9aa5208beaa37e9ded9fb073c0b0b0a1e253de4ae49
MD5 1a13269848bbcc6110b09ff1d6a47bf3
BLAKE2b-256 5830f41eda0271861a125bb89e4f190c9ecabc1044dbbe7616b43753527092ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d46883c3723f500fedb4c2e002584c06b0bf3b38edb8a2cf53b4c5327daffbb4
MD5 ca569ea7bb1cb0797f3b77f358478ec9
BLAKE2b-256 65223ec803f1d619178bce0ed8830b240db1246524008c1e731cf3112d77301b

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55460a76354d83151b5c184829286d70b2495c7277bf128b90db3a9f21bba34b
MD5 82cc9bcfe6caf3566d18855c82c816a4
BLAKE2b-256 8cc769c146ad700839336719fabcb181f56d7e0614df2348cf8206316e19365c

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95e0f4e875a7e2aeb75066fe10d4cd1ea97b93d97994963f44f093f66abad2d0
MD5 4ed856b54dc85e0ddbf68e0dbe90dc32
BLAKE2b-256 3b995fb6c5a4937a7d325302ecce314b851922e0a9422e781b83bf5e4114756c

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6897e9ed71ee9a194f4b077b655f65b4ef3363c2a321a7f627f4824187514c4b
MD5 8ba1a4bf281b26b62f27e0806daef26f
BLAKE2b-256 de1c9d1e61bff1ca8f133fa46d8031f7ab0d7ac5c3d85e978fb031b8992636e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 97f2e7ac571ff498eb8eafd196932849582dbe24e460c82cad973a47c95b00cf
MD5 0c2812f2e9f209a6066df2215bb6d417
BLAKE2b-256 4f06c4c10b0e4389b014b83dbb18caa2a3f771cb8769b7a3f8228d5b65fb6e53

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_i686.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4b8a907836be4c264d0ca538d9d9580b514ae544942ec0a1c5ab43a1dbd66d7c
MD5 df6ac34341e1a7f9e43666efbe7ad761
BLAKE2b-256 a59d2a670f621b6a909db51810117e11af0884a1536cab8768259fa89f532cf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 430f6977100b4771737db4de03d042688dbd9875c68f48d364ed5b7269eae012
MD5 0faf2ec76145f9ca73b084f7547e12e2
BLAKE2b-256 0366681c7713026a51a6dadb9331e0a6ae3470dcec60ef214b7252f4e37cbb79

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ac861ddedd33fea829f072b3e041eb008db6b590c27da4efde061fe4a5193f8
MD5 7040c6b9a7f9359cce2781115711d207
BLAKE2b-256 65402f6887d2b47a29ebd18099db5ec8d3532477dda3b067570d30bb89658713

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e5c954840836680456cc8cb5bbff38c2858431e65905ba870c86ba83124eec24
MD5 8557621e2d5be3b3770826e785d01e7a
BLAKE2b-256 5ad92588a4c332de72afbb3c6522692b531da9d26a51834a12043a47187ebbec

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8a24025b17917cde542066b0bbe2e299b19933870df0fb12aafdf79fa67a827d
MD5 306bec653aa4102a9c7562f33f630239
BLAKE2b-256 e052d7703053165b7ba49345c5f565f6bf8668f6e22371674d12e4bfe097c176

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-win_arm64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ebe2dfa54ca73dd6ffe30d92b8aee0fd98eeb4a7efb54e158d3da6c51241cf61
MD5 5515a9ab92010de3ae86474d5605b8ce
BLAKE2b-256 0e58a08115dea3d644a7fe367df7d3ba5e73432565f00cfc869198265a989b4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-win_amd64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f3a1aefe1f4c9bd7770e720b0b19119d6b928a4d18806e8ad442a865ae8c0c5d
MD5 6b9ba4b60e58c8b5d22fb5560105607c
BLAKE2b-256 8625385116212d94a751ba8c0b7aba2a31bf41247d29d404fc530594b5206933

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-win32.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffb5c684e9561488002d0b46e2f132099bcb42e31415eb22692e81296e2d3850
MD5 c73f382a57af9377332814fd38ff6b37
BLAKE2b-256 3f90bd4e3a308bdb508aff5f42f05a905f1d3f7788c7321e0245f54d708898e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd617a72b3c6da8539f1ff9bd4971512aef3f833ced74c4c01e2178b5cfff2f2
MD5 a0b9be8116bce73fa7a1430160c91477
BLAKE2b-256 406848e0a526947723eb743ad7141b4bd49a480e76c03e048d1232bddcbb6ba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6bfb38689aeef59db786dbcd797911201edc0cbb83f70a53591750fc0e6c96ad
MD5 02b388dc45df5c8db6a352d892f6ce80
BLAKE2b-256 c7738f7576ff32a7b2420afcc89714d60e9f4709c9efbb77db3fbb6710e70c2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c103f0545b66587184090d2e868e6598a4e9ecef47525a4482f7a46ab9f7430
MD5 ef7b8c60758f0a4f9bfd389208467d36
BLAKE2b-256 b0f120b3bc16c3e87dc062686977df726258b39b355789e3b55dea1f104907f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ce9c8a2f28b1b74851bed76ebf18dffaa448a0e875d994d6a9597f5396c2bad
MD5 873e42f4c56eef147c621758731e64fa
BLAKE2b-256 d18d1c16b67097dfa6337d3baf9dc8917999aae7f14ff5135e85f0a5c5e39304

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4eb7d68d7d30aada8e79dada4b21e90976338b6fc7f7f4a82c3a60e1230a368a
MD5 33ff86348d97c68e2d61593f0a38b140
BLAKE2b-256 d74b9a4078cce416df56f10db4f2e4a51553d6639d2f2ecc24c48c16544260bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_i686.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 52a15c7669796d4eb92eb5042d0cf33d432e7f416d70a6fd37d3b20a1862b411
MD5 5b2e3f8adf2f37921a2269b29689a1fc
BLAKE2b-256 92455aeb7698873df5746cb2a61de3f8f798aeefcf8611bab55b623af21df0ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9aed1ef14d622e42a1b2486f371cd67c015f3e5d52c8eca1092536116a89780c
MD5 bd4107d00009b98723fb174ef5afdf2d
BLAKE2b-256 e647e6b0f507212c3acd4f37bae4bc2d737fb2064988edac35d5cb725d77480d

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d80e1b43aeb1f6ee71d4cc2b60696efc366555c4c94daf34d88a4f7cbb98bc7
MD5 c398354a07d6de16d206367dfa527f96
BLAKE2b-256 1c22b58bf74b5be3bf86d709cb688bc8477c040c28bd9fbe2146492682764e53

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a03c9904f99d8d12d64b21f1039e011bda8c3e5a80c7611d905e14e65ed1492e
MD5 055209c402f53f308e42f45100502e4d
BLAKE2b-256 df43d74143bcdb806d34715208f1331896d14df941dd0ace0ae13718a990eb37

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 baf45a49ce0249bb7803daa5060b1219fcc3088317b0587d86ec8aeab2e0cd28
MD5 af3611099356a27206eee11f5ae5024d
BLAKE2b-256 32ba706b96fa5379ae8821a906907669a473d4d23f78b60523b1dff7dcd66d36

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-win_arm64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 05685a870194e24110e09ec2ac202409f7afcaa271994f7b720801eb1ed78668
MD5 778b2b160568fe5698312625276052f7
BLAKE2b-256 c252961455b151bd3a82c3b4fcbb3b1375f61a0d22a6c366231b97b9b227029d

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-win_amd64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a23b9b17dfbdce985bc53633a5b0307142453d33e0a90f5ea66c5764ac3377bc
MD5 d0c321e3fe38a86e6acf98385e7c1330
BLAKE2b-256 0e0e9c857788ce4c35ea7d3f3f0fcf8fc0e488d5b7f2a51287d92552dd6ef98e

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-win32.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30e193194a60030eca13fe6351e38d0f31a3ec33dcff2980e1ba09cd415bfe0e
MD5 1c67f0f7d396f658b933965de0c4b672
BLAKE2b-256 d4f556c6c9e3c69b9af7c529d174c21c42c5a20f65750c82a197dfdf1c93fa2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68885ff73bf6d4470eada181074141f52314560ea4fe66b34f07475a5a5628cd
MD5 8bdae6ea329477b355671017a80ff216
BLAKE2b-256 2a25a4d4ed44347f0b2f5e67711f67fe512a4c44b80667dc3b41ca99016ffbc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b207bf3f5630e5ccbf3be97beb39531eaeac39d5df2397969caf9c0950eab9b
MD5 b4cd9329adaba7f92a3461d0eacd02bf
BLAKE2b-256 c0897527118b49c7f39f7cbc604bd488481f99ac92f3f0a0a0c066a73589bec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21efea1a51e613e29965d37598c9893248f33211ff7c3ef9dd7be01c154048f4
MD5 d710bd82edd05caa087b02fdbe019efa
BLAKE2b-256 3b50ede7d3bb7d77a251db458ec82fbe84c69a3fb96c6378379cb077f49aadef

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 807995353368a2499f3b451714c6b8d6f467054f18add87079d3d4ed4dda2707
MD5 b0dbfd71600af7a74abc7ed3939ff155
BLAKE2b-256 4fd5c49ff65cd009dae39c55a41550e82750a641a69d6d3c62b6da21ac973518

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_31_armv7l.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cb1ab233e86d6c00894c86d5d99f6e4692d76193fad2143cf40dffaaccb6219
MD5 6ebbd7b83114c70a480b7b05e7c41d9c
BLAKE2b-256 545b44b0ab8a2e5453c7ce42c1f44476374f1b7ecb07cfe71abe4215695a50e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7a50d1c888037869b41bccf5b8efcba4809f4506f05da48680d19b0b69fd2e5e
MD5 72024e37870177b279aa3fa96cb69213
BLAKE2b-256 37225e8e41be2f15ddf55e7557c2f56b31095917ef227e4763f4594a34f80768

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_28_i686.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e28c9f0db888b510f5f024bc862086f6dd54aa804855f15754a463b68100a0f6
MD5 8e2b733fa7c19319ceb718ad9dfc2654
BLAKE2b-256 7aa2ee7a49f6bd63997c6d9ed1e77cb77a44ec9e5a61e9ba20588b23f6ba42be

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f7e10bc7eaac0eace9dc583f54f8aa09a9ed54625d37204eb2692f2a651ebbc
MD5 28e5ec575d28ee00356ba8c30a54510e
BLAKE2b-256 1a7fbabaa697431c19db4504a4df5535ace3190840328194cca62b40cde0b0fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file apsw_sqlite3mc-3.53.3.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 140e6c351f741ea1a2747436a8ef3660d088fccf6dc5bac12f1e9998810acbfa
MD5 818f5add7cb869d09ee09cf07ef6c512
BLAKE2b-256 6e2aa23a33f9ba5e6e6a8bcbdb16e10c962c0376e498b6f973eb9caada518525

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.3.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-pypi.yml on utelle/apsw-sqlite3mc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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