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.4.0
>>> 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.4.0.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.4.0-cp314-cp314t-win_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

apsw_sqlite3mc-3.53.4.0-cp314-cp314t-win32.whl (3.3 MB view details)

Uploaded CPython 3.14tWindows x86

apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-manylinux_2_28_i686.whl (4.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-win_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-manylinux_2_28_i686.whl (4.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-win_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-manylinux_2_28_i686.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

apsw_sqlite3mc-3.53.4.0-cp313-cp313-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-win_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-manylinux_2_28_i686.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

apsw_sqlite3mc-3.53.4.0-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-win_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11Windows ARM64

apsw_sqlite3mc-3.53.4.0-cp311-cp311-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-manylinux_2_28_i686.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

apsw_sqlite3mc-3.53.4.0-cp311-cp311-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-win_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10Windows ARM64

apsw_sqlite3mc-3.53.4.0-cp310-cp310-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.31+ ARMv7l

apsw_sqlite3mc-3.53.4.0-cp310-cp310-manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

apsw_sqlite3mc-3.53.4.0-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.4.0.tar.gz.

File metadata

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

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0.tar.gz
Algorithm Hash digest
SHA256 dacf4108a4ba3c43e0a8a4d2829bd308c2313c84d63c5e3ba389bebb5b9a40de
MD5 855802362bcd5f83bd6175bc4ed49859
BLAKE2b-256 0149a19b56671e67b0683a8fd3ad7460bb5f5543c8c22f79e4de74a2fa82746c

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0.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.4.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 4477896674020dae1d7e7251b8178f7421ba8de168aa74312abc3d71472e3ade
MD5 3839970a7bd4954fac279c45a595147d
BLAKE2b-256 3a6870cf7c76f05b42dc4bb02c36a2a2f9f314b71c6c1a52dc27c56a3b29355d

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 00b7631352b9f5af14b25090fe804e1550e741a75a42efa8800f7b9cbedcde10
MD5 e989555798f7b8b0ccb54625676ca939
BLAKE2b-256 4f465641155921834318ac49b6250faef83691bb58c24fc12de30750829c14d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cd33139fa411669567c104d7daa8851fe35637ee40e0e8eef81cd9a6cf99dd15
MD5 f509c5a404400b9c9bfef63415c3b02b
BLAKE2b-256 cf48be116c5f45e0b1a0097cdcab3cf699a42750b33a4d0702267bc8f2499e84

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a79050977434e387fe40c466e6f819f3e7958fbea11253169e8e7d2e50a168d6
MD5 fe13ae609c0d1504caf4a33308049116
BLAKE2b-256 383971a2d4b88d5277e7b7bec80bbf0fdab89f6172fe14e5fa18fe88815dc4a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8dbb76d403564934c92d73b6d9f823f31ee6ef7b0a8117511b571e4e054b719
MD5 2973c037d4b0334fbecf0ec9589e5b64
BLAKE2b-256 3803c11764abbe7e26c980c4ea8a9b998e9208e43e05f44cfa7cac2d33952fce

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f33c43445b6749a0cf9c91199c6010957e14666cdc5df0c39a8b7d67c15c3b7
MD5 5f79d70edbc24d42e73a12e1e67168c6
BLAKE2b-256 dbf6337dc26f9e4b73bde1738d6a6c56f527c0ed2de6ed49706f98d386b8c61d

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb0ebd530f64714346d7286199bfdbe0e9228a169aef19ab928670b07aa80512
MD5 0e24253cb4aaf3326bf056e9feb11cf3
BLAKE2b-256 b89e9f33067b1f92bfdd038509a787b0982749b60c4c969d00453f06151c8d60

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29f555cbfbbad11b7e0b2bed8f8abf6ce076969d900655a570151b132932c0c3
MD5 f4c79ea58889adc53c8439b30dcd9481
BLAKE2b-256 fdefccca4c7ced4843cb2da9b7687c22d1f6882895e49315ecbd20b64f4405f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a515a1182adecace702bebdb43041da121d6e65f41a4e316dbf74b0eaf1848aa
MD5 22dbd87cbbd873ffda811343d2d7001c
BLAKE2b-256 81058e60f0d4984373695ed1ac3d9e1b3d5256865d1fb3b697380c1f2ada4eea

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 07e11b3c68d9d858e4480033760c81076ce2cf49eefaeeaa5584ce08728f1a4d
MD5 24b017e6fa30af3be0ff9f9929c53fbc
BLAKE2b-256 c7563135408bf7c6b9f4d3ac7bdf1a089b5432f0b1a0972320fc8b80999c5823

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfa1bfcfbbdea0afbc18967bc154e6e054cc937605648ac6ecec7fceb7b3a557
MD5 bf3093a44b45b0dfc38f75e0f0ae3d7f
BLAKE2b-256 0c1a343f34d381c142759e524b2e07ff15b7402f0e4d39013070aae9b6fb2168

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b91c81648b580f7322c93099c9cfc5db55fcf886ee05af1056323b05076778e
MD5 79de7880951832f259ad4aa943f459ee
BLAKE2b-256 3a2e6a1c50a8c23b96033f1c730ded2a78e33ef35669108c64d312678742ec09

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 73922fbf8bd1b5244ad85fbbcbbcd09b0b8890f676a12ee127492a76d1e19ada
MD5 ec7211528a9468d50f242b7525091f60
BLAKE2b-256 f9572a85e9e7f2783bc133e055a02e00d2c7b9f09dbded5dabc27d7737cb1cdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 eb88e8dcc79270b55177f186456db9f6e9554c3e519dd00e38b20bda2b1d167d
MD5 64ea92a345d19c6502eae41d660507c0
BLAKE2b-256 e123b36ab4f8ee2684ed6aa10c966af1bce1960d5b93011002257f7dce1c7cc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 998e7be3abc205628e6b94e676fdbcfb5f5251e58a112bea942ee121fa7b70cc
MD5 68ab829799a95d6d475cd0e329287a27
BLAKE2b-256 a05d05a46828f73d596f921a181ca73928f30665a146c4a194d2bcc2fa5ff7dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e94dbbdc1aeed47d2acb53d4e489ab6cc47cabd4ae1462f019bbf1de42d824fd
MD5 0903e62b61de22c53b8e289bb14faaad
BLAKE2b-256 a41b67fe802ec4ff0909ca7edb39b7d4bc79e809ca5ae8fa980493ec1f9c0980

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 f4593646d217b88cce0442ed33708b6c71803ab1bed2d54ea5dd0fda40ebbe22
MD5 728c1fa39d8329b200c812b226107b27
BLAKE2b-256 ed768049d68f3c73b20e9b66b434a427f5876cad7e1cc559aebc8b3a8f00645d

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16259364fc3de5c0288544d88065644c2e98b66bab4414f44ff5ee351058b8ab
MD5 920b6145c84d52c48161b0b2f36b851e
BLAKE2b-256 c9e45e42612af816171077df0f167ada722821d12a178b96eb28149a3ebf7635

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b64c68d33685cd4e4ef39731458f45cb1525666815494b916b696ebb5f00bcd1
MD5 2d81b786f2512f2d21182b96770b55bd
BLAKE2b-256 de372beba37952a8d789f830ad229e7d7514e8db63d7a41bb698f5ac1625e01e

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14de239dc2e71dd5b93f5349434b863886a4879daac975db21e6ecd031a6ee78
MD5 6aecaa7afa4cb1ac967fd1e3ebac1d2b
BLAKE2b-256 6e1bcb71680cd7c7273a39a663a52ca216218a4da3f16c6c496dec40ee26ed60

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3de3660734ff460afe3910ed31931c7b11bbc9b6b3766c04df65266392e3cd45
MD5 8552d4acefe2fe26db8980231b65a42b
BLAKE2b-256 d079e2f9e462ae27a62585898567490db09fb27d729fd0209ba2e79a60cf4c89

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be9a7643c4bb52c39887ea0b2764c4d2618a11e709dd84e3003fb6c3072953a4
MD5 0f72e8b620dac71f03868e6dddc5e810
BLAKE2b-256 53b3fade190df90253a068dac228e8646984006cc59c17ec77d283c2743d8cbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d04bf892a636826d45ed98d72194c8c6b476e36ef5120312cde8ea7f3429b801
MD5 cf84200ce662a3f928a8d5fb8b1524a3
BLAKE2b-256 b09ad1ab0354218033b0fd17272fd09fe932d218cc1239449aeecdbf96d49e4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 465ef4fb17bb7707a5b3358f51002bb170c38aa646eba66ccf7733adfd74e99e
MD5 2b1860874a1368907261d93337414875
BLAKE2b-256 5845974bd4173cd8c45dea367a689b7f404b0c1583cd200b0434a0cb72fc40a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61cd12b859ac8d21b4adcda1639c1d0dcf89b07e3177b14507cd16a69828edb6
MD5 c781258e3465e616c3bb8235f978c3b6
BLAKE2b-256 6676a178e768b44fd9b041058e809425bf6854bf373db321be8105ec98f6a3e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b55b9e8a7edfbd44adccfff48c81e2f420c9615b0b968b310ae0a10fc25ec84a
MD5 bcbe3feb2df9ef9e1e0ae67bbf003053
BLAKE2b-256 94b37887e2c27155704695f63bef9f0013636146b5bfc8289c9922b9ce4cd848

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cca2faa7d7537021e07d2e4c3fa2efa51aaac7233bf8387b5afaf3f577e4c560
MD5 2424ce1344859003cb32813a4a3b03c7
BLAKE2b-256 a5d22a9a72a78cf8bd22cef651ab8627019d574694ffdb56675ca5ec8763a75a

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7199a3e962b0784760cb02f9fed0bfab77cf145cd145d803319fecce897d034f
MD5 ce75828fee53209007f6ae7077143124
BLAKE2b-256 a9f9a668aeaaae9049c6d7e26a9384c30dfc8439aae3abbfa9d6b9e912ad109a

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0818aa0c59f00a64144f6ed7e9dd116ca4922c29c233d15d8df13031fc428497
MD5 72954df9896f21a603c150f8724790d0
BLAKE2b-256 89a82890fc8966d5c90c22df15c6956775dd4bd11147eebe0349c2e8cf6c642a

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 11496e4571c132047d2f32014ba56728c1bddd987020ba66529bef991df1a7b1
MD5 0de942020a28a89d9b5fa942f18082c0
BLAKE2b-256 4ee962d4d26f20dee60b118497809bab970efa3881a107a923274c86bc6667a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 1ee171c503cb2915f28ab6a5948646fb3b552fdd7ea1b174fdb5ed4b1f9cedf7
MD5 ef9f7fbc8a3e0fd2ab798c005094c55a
BLAKE2b-256 6863b662215c08ef7d93b0499ac761a4d2a4aa59268d0bb2e42863198f12cee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e40a730f3e83489e2cf8b508ae18242bdd4dd4dc7b3a3a04a886bf2d55945b76
MD5 dea1e5d467e7032e8f8717628660776c
BLAKE2b-256 f3adac6379f967bf6da92b3096461830e10712959da9ae4ceba03edd2607aad1

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3713dfbe9886b7570d50ca0abf47a79858fdc9810a68fe1e86643dbae8428881
MD5 8e968d36744a7976129bc96e05e7855d
BLAKE2b-256 f09b29507d7d795709817fbe30986af629038430123da2dc5341a16ad3002867

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b7decb1d4fd68d8e128ff1dc8983ecb73ec245db5dd95128b7a79f4062242d0
MD5 91b9284109795e16aa40f8d6129acbd5
BLAKE2b-256 b74b5fcb9e770e436d01779766dfa2f74a91151bc32acfb0ade6c4d9f8f1ba20

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 faf86c21f704ac52b2cfa2e28bed4f99ca135f8c0e72d6040603c7be1068fa71
MD5 63bf7a5315ca3c397386d879517c6254
BLAKE2b-256 2a6de16df411857fda023669010036d66b0619bb3f69900afb43122a323ca13a

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 99fe1459a85fd515ffb8d2f36a97912046531ec47e208cf9c5cef546a8039777
MD5 cca857f140b060f594992d6ff05bd8b7
BLAKE2b-256 3dca54720f728799720ba0f7a7137e78a2af72f60e59183e2b935141b978a86c

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fb35388020466bc45e479e686a071a6f6ca8f2af6a7e195d13e54a0451485d96
MD5 c40907cefd49c1debf3c6e72ae41ab57
BLAKE2b-256 0cf3e1746bd592892ac1d19b5b61966cdf76eee26af1869363cfaaedfb0fe5ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 065bc48486064ade3e7626296cac196c27bfdb5d2df47d59c8c2a95e62c733df
MD5 8b5fbba07a24c6c9fae7d76df234f878
BLAKE2b-256 2361b5f3e1d76bfa10f448dbbba425c32326ddb8ea2f89a70f881df896cd7356

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6205f59d5376e4cfa19eb5ebb922a03004d4c08fbbe7ead69f84a38e83ec253a
MD5 aa79aa2cfec56417376114bdf88bf837
BLAKE2b-256 f0f6379e4020d9d9fdd9be607e9208597f5b8aae08d72c98d09c5a5511eb5673

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19b0a29eba41b6330818f1e7b586987cb38e331ed9f38c635beaaf6967ca2936
MD5 0184e2bb52453b507e9a72b9d2c9bfec
BLAKE2b-256 7288cdbcd17bca6e9f0695a85f1c445848852b9fd4b35cd26e8e037cfaf5369f

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f08694e1a301f4d96015f1e6d6c53ea6097285f25f25dd6d9d556c664ea7af1d
MD5 34ebad3ac82a2bb8e04891a9e67154ff
BLAKE2b-256 6c547a040519d9e3d02fa7d32b7b69b93c20a9514181412f03f623c4c1a7dd74

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0c1e180331d3c16fafcba0a7c67d937bde200106e55c4f0ce564230f00877f2e
MD5 3f6e6ed3ba85104e179c7d64cfef6ed3
BLAKE2b-256 e329c353083c532db85b805c7bd74852c0ef9b44d1099f2425171c06b563e613

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b7e6deb3f01016ba84a187e398cf03b7aeb9e454469e1b4885ce8f04b5318554
MD5 6737920c89c6898c7f5226db38724fab
BLAKE2b-256 f5dc96d2a3ba4e03444d73fd572cdaafb488a3e8271718d276deb3ad6359c35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7d45e5683e624d6773a26f0557f101f8a9a6dae0e04285c4b4a13228fbea06c6
MD5 f6e57450d19b25b0129fd9e502a1c7c4
BLAKE2b-256 28887f9704d03e192e3a389ccbbc44b7ac095b21f97799c7c435b855c3f8eba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 637076f7fb314024329b846c181dedd2ea0675396df81b585ea3062933ea06bf
MD5 2bd615e4da87dc2ac635c9c5047f0cd2
BLAKE2b-256 06853d067eb549a5cb3413572d5aace1f9226b249946455d31a9da4173298575

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57fb24f28bfb3954a946f6f4d430579662f0c5ae14a754c43e39df8d3c554b18
MD5 3635358266ca48c2a6021aa9c66cc05e
BLAKE2b-256 58aa8b12948d3416922bc104b0b3b42f7c593a74c6f36c6ce8a8027141cdac72

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6af25ee4ea3c47f196ea86a7af0c49d490e7b13cd20b64e9479e1f8c4c6d0523
MD5 b57aa2f99b9868f8a84fa5c653aa6b4c
BLAKE2b-256 e70fb30dda8ff7e44890c928140f957cb19bf1159c0ea1c80d018c811e755d50

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00505223ba76405812d836e4007388a7a265331a8ab20b3383b7f7623806f7d9
MD5 c7c589c98250d2b9b7bbd604ef01596e
BLAKE2b-256 320e98fb4995304f2f345dfc87b7ab619246d0edb80189c237913587e6946d95

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19d681e11c18e3cc82328149ee225835ee9eef9098eee43d865815fbd3576800
MD5 c6927c1c0ab549083151814bc3f04e12
BLAKE2b-256 12faeee0d3440813f519a85447e215f19558e7e76b576e3563b3bb5c0e2eb02b

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 666856c65706e2e99a6d4c2cc048ad5792746bd65f27f757e0890331de32220b
MD5 43af0441a2177adc91a4144dde03e108
BLAKE2b-256 4ff89482d1e4928d560501d8e87b6b32616b65e440db3f6d4ae67de847392808

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9114bdf1d2d59c6faf57da6d774b71cd5523c9bbd332df82d888564a5ba8f9ad
MD5 cccfb6e81987bbcc09036c3da7b19ada
BLAKE2b-256 be963b51b7ba95e8ff985bd427b918e842b50adbd27c5678869ca8acc779b8bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e8379aed131f478a93a4fbb8f55e0b3844ced13b71c7a6ff198fcae81553e43
MD5 6ee5acb48ea2803fac1581d229bb4d76
BLAKE2b-256 6fd514b4a262cee2f2fe0f199dcea5f5c07f3218b87b24ad6e531dc980d2ff47

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f38f141692220f35a4f5c36a6dd30d3249f149073ea69d9112b845a46d856df
MD5 a50849f0f7afe15613f3cf505c9e814c
BLAKE2b-256 70ec37f41e1e0a38f5fb85e180a231a10543f9a4745cb777973534a068b9a4f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3c53c6636c3c37cee719006c2c9d6bcca58fe0aa819dda2536b910b6315f6077
MD5 a15b5bb9b28112bc3c750ccf4f7b98a8
BLAKE2b-256 c2e94a6ca1b632a4fd5354b7f81d248d37f164fb18170ceece748f8a4e966ca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6d2ca132b9038c2f0b96936b8533b40ce924437f0871c224ea84d6bcee1498d1
MD5 56d94fe379a91aa8dded30672a3fa0d3
BLAKE2b-256 0fdf605e244fee73f2843e66e11391bd8b6bca13fc971665bb9d0b9a8fe3c747

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d134997c91eed22d38c8ca13fa9160ceaf8fa5e1c332cc5068e130994b3cc6d3
MD5 046b2a21faa80722ced8fb47e3f01621
BLAKE2b-256 7609d58fc9f3b3218ad4829c52af961ebe0aa00b438644a580fd7b158ab72523

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5a43a2b752e4c259ea8227f2d7a1ba3d25ff0be9619c815f2849dc168b411ca7
MD5 0b6181011ec734b2bb562ebccaa64943
BLAKE2b-256 50964bc47dc165713cca28469b8faece26e37a38090098de6e7c374bc526b489

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4fd2ace97c8ed8ba79681e73cc3814ca9fcfd907b7cb642f64954ed810ace32
MD5 c66bbc3cb177ca95056a5d0e22b1ac48
BLAKE2b-256 5009ee8705cf773e295b4a7b5beaa15015e65865d492835eaecdc97d4221d99d

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 008c254363151b59c38430b3e89fcee431adc5e9d5cb92a6d906f207cbfbe54d
MD5 e4fe6ae0a040ec01b166af9ec216dbba
BLAKE2b-256 ff373978d6a2272522fdfa0db9d3fea97e76fb2e8bd56f786f7325b0937c5a8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5175afcd60ba80f1400688173a88a5b1ba54fb788609adbb2a1c44cf5d96f092
MD5 defa3463915ca36682cf017e88ee70dd
BLAKE2b-256 e03d44181352136abe4fdaf7122646ac7c63f436d09090f6bc27e8fac5f82d60

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7fededfeabb53d9a1516e1786cc38db5a27b83ae26a07f2bf346541b2222388
MD5 5904a333bbe8973bf8a6147ad72d2b12
BLAKE2b-256 9d886d8ec9af62360dc691f6389d72764cbf32b3a22c6529d41aed44046fad0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f32c5495034318d9969a738ab45a8e5f65d066b9866d416ba911fc8723fd61d
MD5 8e5e7d7049b287468553ff4c1dc0cf1a
BLAKE2b-256 4481f855e54b861c92824ef19e2720385aed1328de1a44463c4a071aed10aba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 86ee26698b21c674b406aadf9dfa89ced1434a4615d4fc671b591745b2fc0f0c
MD5 228eb5cc3b6b4c1614bdb1ed970fc7d3
BLAKE2b-256 9a5a6fae1d8d97172801ca1217e75b7993f99121e65ad1c1d851408f2bd91630

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a095c47023096cd172c7eda31164cece947e2a2fa8adf2ee33d2e3b0fc3bf1f4
MD5 da41cae0185da231e3ebadd583547e88
BLAKE2b-256 ca9c33a0f30518fc6ef8e58c6828a60e17dcd4567a3018d22428b2bee884d1de

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2075375b6bef598bf9ad03921a7eedca29a88b9252e42b923d68e5ea312315a8
MD5 a6f04318d1d5acfc710d0e67f5a6db93
BLAKE2b-256 07c3d014b49df8c0595ccb7ca4eb55de138e0d4a629e6a9026973806128314f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df85664c7e1866b661851b33161d24e109d9a9f7080a47b6412554f9fd8cb7aa
MD5 802104cc9e81c80b4e874b27253887a8
BLAKE2b-256 5f2b26b5d71cdff0ad240f4398b7561519dda6cf9204e288dcf13ec6f04e3b99

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c078c84af405da88efd1a88286e341c24485480c94f3f9f5b4775c2d18435aef
MD5 b1d90b0d19984bb5b272718e0687a5c8
BLAKE2b-256 e20f8e170bba2998a0fb9bdd85e1d29510bd176a3b1ac0d287d6a08172497132

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 5aad913c5967ccbe34688091516fc497ebc1b16af59884c437a832b6f51f0b85
MD5 ce8bfcb6f9c8c1ea088fa8be31482dde
BLAKE2b-256 1c3a584cb361c4cc4b372e5f65219abacee2b99f126621737e34b0d79df3dd3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d41b8481baa660ff7980df476b5d3846d5a86b9a7b42f356df4f68034ed10de6
MD5 8084a1328781b3b6ec3b8081a4eeb522
BLAKE2b-256 4661e6bc1f494f8a4d8bdbb001e2b02cf9a71b0307c2fc70e3db034beda85488

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ef0071cc4a82a91c20e381f49651af64c89c87cdfb7b3000d389e7a7e48035cc
MD5 990c9b24204b8a011dd5e031fa0abb57
BLAKE2b-256 2470790f89e5551819ed5b18a6b23816cb8413856e405d3721e03890e3c6d402

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5523faa91686e486413e2bd5bb1d1e252aee7f2447e5a05658520d0ff6571b5b
MD5 99b064e46d6cb7c1fa89726acc5559ce
BLAKE2b-256 1b09f5f0aa0ddbf7f814da871bd487249de04f9c39fd967262ebb7d61d9b5514

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1df472d66089783feaf66428038e562e98ff9c099c9f39faf7a4497f7357c0f
MD5 8a7ab37d5c2b4e4f6e8b5cdbaeca696d
BLAKE2b-256 7fb28029576a9a6c9191434769ec2c878d820d42b195224a8ee35c2bd6e73336

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ffa18c557a6ae6033cf382553b3705c0c7e870e1c8294d10fcabc91de37bcebe
MD5 0d35602168aaf7d9def94fd4c090cbbe
BLAKE2b-256 f6582d2d9eb34fd191c45de120681622cc350ef182e9f4ecbbc21ecfddd662cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ea55d2e9811b70577c5e65a8df8f20bf753a47d322c725e3d4e3e984877ac24
MD5 fb1d69a696defc671fa6474b8cf13dd0
BLAKE2b-256 0a570f53e2a84f99c9fe11778e14c4afbf9c88bf64efe2222607c653ec4cb8a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b30304c87e49768a529daf93ea69537cdbe8b7c02b230438309fbe580da9f03f
MD5 4ce0d84925a72ab53bf682536c2cd6bb
BLAKE2b-256 5eb276cf239401e4d0c415728009f16518b91a0511b112c13dcb02ce2d0bde21

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24607a3eadd07ad5e42e31e364e58352d1467809df3ef62fc00d237323a6bd8a
MD5 6c226f2bf663904d9b2e0f7deb8b9c12
BLAKE2b-256 9eeb6a2d7e9c7b39024e966134bd7242c4f9a3ba378fa8c6c38732a30dde3b91

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d19c0641285b45faa1af2676297c14d39104d0e289e06cf4f324f102b0db789d
MD5 bb16ae90bb76759d7cfd411557b57f73
BLAKE2b-256 94c2b8427aa8496a51ef7f5811ef715f8271a8733fa4c2e22e1448f6ff456c5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77337736653c47bc142c2c56db2870eee81a523cc42db5dbbd485bedb10194bf
MD5 648a11b599dc64ac676a4e645297f8b2
BLAKE2b-256 86b6229979a24e547744b6b4911c00b7a0155022aeeeddfd64853b975dea3944

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6b43305b2af9a286684895e0618cd812cd9be79f9b018b21538f5f29c285bc1
MD5 30ec761ee80afcc9a3db451e50e94961
BLAKE2b-256 cd71f67bc522ca01ed7a09890bad9326b4cce9839e21aafeca68af13cb8ac390

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for apsw_sqlite3mc-3.53.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8e1dba37504ecb4b39e62f047acb89d0a757008dd06f722c796b1dddad7df9d
MD5 1bac6102f23e6b3dadfb8bbad8920470
BLAKE2b-256 9c9a868e21b460b826c1bb2910a53e6155b2d8f5016f467c78ac6a38a2386680

See more details on using hashes here.

Provenance

The following attestation bundles were made for apsw_sqlite3mc-3.53.4.0-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