Skip to main content

A SQL fingerprinter.

Project description

https://img.shields.io/github/actions/workflow/status/adamchainz/sql-impressao/main.yml.svg?branch=main&style=for-the-badge https://img.shields.io/pypi/v/sql-impressao.svg?style=for-the-badge pre-commit

Python bindings for sql-fingerprint, a SQL fingerprinter. (Impressão digital is Portuguese for “fingerprint”.)

A quick example:

>>> from sql_impressao import fingerprint_one
>>> fingerprint_one('SELECT a, b FROM cheeses WHERE origin = "France" ORDER BY age DESC')
'SELECT ... FROM cheeses WHERE ... ORDER BY ...'

Improve your Django and Git skills with my books.


Installation

With pip:

python -m pip install sql-impressao

Python 3.9 to 3.13 supported.

Usage

fingerprint_one(sql: str, *, dialect: str | None = None) -> str

Generate the fingerprint for a single SQL string.

sql is the SQL string to fingerprint. It may contain multiple statements separated by semicolons.

dialect is an optional string that specifies the SQL dialect to use. Supported names include:

  • generic - the default, a generic SQL dialect.

  • mysql - MySQL dialect.

  • postgresql or postgres - PostgreSQL dialect.

  • sqlite - SQLite dialect.

See the source of the underlying function for a full list.

Example:

from sql_impressao import fingerprint_one

sql = 'SELECT a, b FROM cheeses WHERE origin = "France" ORDER BY age DESC'
fingerprint = fingerprint_one(sql)
assert fingerprint == "SELECT ... FROM cheeses WHERE ... ORDER BY ..."

fingerprint_many(sql: list[str], *, dialect: str | None = None) -> list[str]

Generate the fingerprints for a list of SQL strings. Doing so for a batch of strings allows sharing some state, such as savepoint ID aliases.

sql is a list of SQL strings to fingerprint. Each string may contain multiple statements separated by semicolons.

dialect is an optional string that specifies the SQL dialect to use, as above.

Example:

from sql_impressao import fingerprint_many

sqls = ["SELECT a, b FROM c", "SELECT b, c FROM d"]
fingerprints = fingerprint_many(sqls)
assert fingerprints == ["SELECT ... FROM c", "SELECT ... FROM d"]

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

sql_impressao-1.1.0.tar.gz (15.1 kB view details)

Uploaded Source

Built Distributions

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

sql_impressao-1.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.1.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sql_impressao-1.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sql_impressao-1.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.1.0-cp313-cp313t-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

sql_impressao-1.1.0-cp313-cp313t-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

sql_impressao-1.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

sql_impressao-1.1.0-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

sql_impressao-1.1.0-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

sql_impressao-1.1.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

sql_impressao-1.1.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

sql_impressao-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sql_impressao-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sql_impressao-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

sql_impressao-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sql_impressao-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sql_impressao-1.1.0-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sql_impressao-1.1.0-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

sql_impressao-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

sql_impressao-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

sql_impressao-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sql_impressao-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sql_impressao-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

sql_impressao-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sql_impressao-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sql_impressao-1.1.0-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sql_impressao-1.1.0-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

sql_impressao-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

sql_impressao-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

sql_impressao-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sql_impressao-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sql_impressao-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

sql_impressao-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sql_impressao-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sql_impressao-1.1.0-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sql_impressao-1.1.0-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

sql_impressao-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

sql_impressao-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

sql_impressao-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sql_impressao-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sql_impressao-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

sql_impressao-1.1.0-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

sql_impressao-1.1.0-cp39-cp39-win32.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86

sql_impressao-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

sql_impressao-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

sql_impressao-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sql_impressao-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sql_impressao-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file sql_impressao-1.1.0.tar.gz.

File metadata

  • Download URL: sql_impressao-1.1.0.tar.gz
  • Upload date:
  • Size: 15.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sql_impressao-1.1.0.tar.gz
Algorithm Hash digest
SHA256 f16b4c09abb2bf2852f1e902a2f7358f4479da82c6c12b93d557c335e318fd68
MD5 d79b06d50eceda14c9ff197f8a9f7136
BLAKE2b-256 b990a5ef4e2a5d2c8ed1e51c56540bfe5323b7bda89f00d1237398a8c9f491b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0.tar.gz:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7af88a19a8faf1fb80227fec6b4cddbe71d0c6d61387eb9a78fc393554da5cf8
MD5 1e419e4d0d216738fd82069acfd649f1
BLAKE2b-256 8d791b414e6614db59cddc059d3b9dab51b90df16adf304eeca9bd2b152e831e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cf7cf734cc28baf6e8f7a27348eb65ffda0ae082944b08ba0c7f00d8dd759b67
MD5 dd3097b29e20e6303bfcb174cb8199e1
BLAKE2b-256 ba9c6b270cadea3670d323ef73b1ce245fc9b975acf09acd7d29e7ce1d336ad1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c4878005fcbcb1caa8c53e10c26cfc6f991fe98299246da743d25899fe8c3b1
MD5 4b9d610d637d6b80fa6c37a1f4f40c1f
BLAKE2b-256 e439b3ff877a46d348d4d7c7e73094a20607f1f5c0c33165334d2c6f898c5aa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3fb7cc409b442907e31dfb945d6e0454a95b39fc6de2127dc5053fbcc74f893c
MD5 37a2c3f7830357dd783eb5c3eb5a2d82
BLAKE2b-256 908dc3eff3052013efc19afce77c87773b1b559b91a90d4a7d6c478c57455df3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c61c14a9e32014582faa5651b18b807f3b56461f6aad63d36ae4ecebcd571279
MD5 1873e9ee71844b681252b12eab691f59
BLAKE2b-256 e6059c3957c8da84e81eebef005f9a1619c845d73c86843e0cbdbe012407bee9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a255d686533011ad5fc73c67bd5f14092fa5dd98c895bd1afc8dfc70a42e87e
MD5 3e59ec950191054a8e61b8bc6300877e
BLAKE2b-256 32dc8023c9842040faeadc20b16edad7147f99680088e87df7f1b6e23a916148

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 77ec98f9056c404a3ded0a4e37c74cdf6435d129ffe78ae0e25416707b82080f
MD5 0e494a0ce7be4f49abf28ab73cfecaa0
BLAKE2b-256 0c2663965bedf82ff1d52dd548800ef181cba9b7e0907538a0011e97d6499743

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0d8057c9edf6c934034fde5dc253448f2c016c6a5dcb2755ac610cb99c7b73d2
MD5 49eef65dce34827d9847b0834f78a955
BLAKE2b-256 fe2591a8e95515fd8d053c150790b5cedbc2cbde36e9fa36fd8c65d4c5ba75e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c112f4cb1fb3007182499d89833b4ee7dce7083e84b71a0588badf35a0a00281
MD5 16732139252474da24c165358410cbfe
BLAKE2b-256 38becd5a27832fabc843352ce7c4d48d4cd03026b2b9507f530352168b9030cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9fd271184df2118df48d68281f619bb3f3291ba2e39064c745d2626a8a7ea1ad
MD5 ce8ec107eb815a6f8e795cb0846c5a3f
BLAKE2b-256 a6d25830d10ae14f68b50e527fef13afd2e0867b2cbd0300dd08112490e728ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2740bb732be264a0e0bf2152fdc158914f9d095f54113720ca1ecb9584ee1f56
MD5 7d7b1586cc49b9afb9619af17bedbd09
BLAKE2b-256 65dbde0dd52c0b0f24196880e4db63f27d668726639e9d79dc5a6005f688a49d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4fac2aabab3ba26ed31e58e917e9adf927d9b7477d9e18edef257e844605cc87
MD5 672a91d399bb2fbc8804a61f4ec7dfba
BLAKE2b-256 7157b702d57610592ba21b92c819b81cad6dafb25a892336af18cd687c7f62cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7cb04ce853e69b8f84484ce7a856a2a01d63db0b060b2f0648ece2c73877568d
MD5 594fae3fa4ba791d7894722726318af7
BLAKE2b-256 0812f0a8fb176cd9efedbb239d60fdb27ae27ea30d0d1b1a6aac985df2f737b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 283caa1d253dffd2a44d5c94cb7859abb795c98640ddda2fed94e27a127c701f
MD5 a4de87aa240b0f644be63bb9a4a258e3
BLAKE2b-256 cc8fa85e9428501a91e307898eff5391c31a9e7da55bd171e15b59931be92be6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a61faefb305dc74ec978d18e61d2d6fc969cc7d6fae26a90533bed9a685e363c
MD5 60b0eb5c2cf614c157cbacf955814894
BLAKE2b-256 8096de3c29da42118a93aa526cb6a35c7bd295222a90b70fc2a104c1841c0634

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbd3752d8d8aa89c8b01db7c2e9eb4e0bb40866211a17ea49938f9f7a441426e
MD5 04acafcd01d996b70e654df398bc05e5
BLAKE2b-256 eb815da12a29db1579b3994a8edb0307dc0acaadad9e3a72b60b8078aceef2a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ca1b8bfb79efbbe78d62e618f165fa9eeb06188abfa8846fb854c1769ac055c0
MD5 5e35d60420eac3d65c260d86a1cc665a
BLAKE2b-256 2e171043f230c93c20141719e59d42f698fc3347d7bdf96694d8f74b58aedf42

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313t-musllinux_1_1_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 041c4b17be727b23386774b861a82bb2dae6ceec8a3bb39ddd280d59f64e1473
MD5 0ce3f3bf67ad55e0b05092faa7041550
BLAKE2b-256 9b592e563108abcc3f16451908ea9ac41e49c9a9ff14dd2e54af35e9a7aa065a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313t-musllinux_1_1_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98bead5c24ac49ba8bb941bfc92758660c12248d3e095d46f218269fa8c579bb
MD5 a8164fa1262e764255dd635815aca831
BLAKE2b-256 0f630807630f2ee6f2d56bd951169c8a494606d532de418da3b7212f33f566ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 513090d7d63dce2beb535e2b246b18c5f24f8581d8db907154dcf8f73930e850
MD5 94cc4ba864fcb2a0a3fa6e49cbac9ff3
BLAKE2b-256 d244b450b2616ecad449818d109aba92fc2a62251285759b99f51a5d9cdcad96

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 77b8833f2e63349b1d392ec5e1b9a41950dcaa10a3e96416ec83a2670f5b73ee
MD5 ff2d13ea39614b5a041ec9f360d6ca5b
BLAKE2b-256 e3632154609496cd57651cc49d29ad0edfa3ab51c30fa9527f59cf458fdfa20d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: sql_impressao-1.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0475b73cf36bb4bde2849f9f7bd57bb7a4e124c0693add2d8edd4f5861fbe908
MD5 5c65bbd6bc36bcc53a52c2983152e30f
BLAKE2b-256 9c7fa70907a424291be6d159597fffb182b18e99bf771072f9ac3a153279a99f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313-win32.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d9b4d93003f2c14da5800060233dcf041da0003949def7c6d42ff50a13b9099a
MD5 a0fd1ed6f89f3bb53aa34d94c8aa061a
BLAKE2b-256 7202afa9f13879d4ea6c1121d32bc008ca8279bf8309dd49e1f2806f2ec8e0da

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 61fe9d337ed0b92c8171add01a8285b001ad1ec77618520ed83dbde19a844d25
MD5 76fc314a57e1c7dc3222dc2cf7f5071f
BLAKE2b-256 57fe5d12e6d841bbd5736d7d1ad5e8a0866e3b756cdf981496c4c2f4939e4b9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53e6b8b5f7ada6976386cb4e75cd2a6cdc71ce09e2ecc91d13f230bbd77844a3
MD5 082b52363f679c746ed245a187c6cd6b
BLAKE2b-256 f2a1c1fe3263d471573938cfe0a4606ddb26f2aebaede9f6cf1c53eb943417d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 954b7d17cbee97431d2263b9a5d00a427f602e66e1d5a7eed369b275a1653137
MD5 91f72213c62ada77204c265b7c2c8d16
BLAKE2b-256 58292654021e45e9d5cf75f29fd355fa4a413e954557d34ad8afd4cd575bcbf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78a0ba9ede53a71487da9e3300ac77bf318888f7869ed8e21763aeba0d2872e0
MD5 b8d90cade00e60b0a4def55524265bd5
BLAKE2b-256 84de54ecf54c03e69b6ec5196ca817d67c616f813bd425c313f4e136c17bc0b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7d7078604ab787485c8cec1d5d668d597dd4e7b3e267edc4f5cea35de64bb9a
MD5 7667a0da4835e053d677626845904f51
BLAKE2b-256 25b683a1e9e2bf363ba1cc8434cff4ec26f15a7492c90c4eeb35f26d0800cb8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a34a801ead6ab2978f127b85cb3b6c3aad5073c11abc610c0d7cb1ab291c4b7
MD5 8b6de21796c354c6aafb76caf671da87
BLAKE2b-256 7eaa6ddfb3ce0cf5b991f09a1c3fc890a1c417282ee8cc408505a93d9a12c076

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e09a08d7b0339963e9ecca783bd17cc83c54e0ff6c60ca66e02ce34b06846cc1
MD5 bfb264cabb3b8ab5fa80086814a78df8
BLAKE2b-256 7d650888b408d0dbc2a801ade5714f0cd85a444cfee72d0448e14133f373816d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eee5b42194b2246448c9e7e624d94cc1267a494555dbe76cc131ecb4f40e0ab4
MD5 2d87d4bcbc34fb9d62596ff4fc49133a
BLAKE2b-256 41aa873ce56bfd402f2e9c0e9c19ef2161886f925bf173345b5e85329415192b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: sql_impressao-1.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sql_impressao-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a0d24fc2163c0a4e93ecebe0a9c40fae6e37452e7de4c0f00f7dcf8e92b0ef6c
MD5 f2b329c71cf0d61f77192219a7def076
BLAKE2b-256 bd9d8384589aa8f091114bde201bb3d97fa0cfa7aecb16fa5464ea725b112375

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp312-cp312-win32.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2c19809a72f03bd254f18cd9db0ab71e2d499cbfa69803be1f6f212f82724159
MD5 d01596db885a7f8991aa29604646f05f
BLAKE2b-256 b7f9d7bb0f0d6b65fc2fa77bdc92c598bfd7e366509fb3d30166f0ead0c27c39

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4977c5077ec80ce7999a9a308774a87d55170973f2fcf4edc0ebcdf839b7d8a4
MD5 a68ddbde9ab57708ed1f3c0fefb6ef15
BLAKE2b-256 2c89870caf2302b97ffe8345ddef236bc56aa6e0be2aab253553666bb9757d57

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc60e7b399d71672caad082f57105e00d95329f22b06612172fd51fc6256fd61
MD5 040db43395c8bc62bd07b7189504a8c6
BLAKE2b-256 246ebe6ab4508c05f5ada6c0ef2c0149a60b58e355f361bf1ea32d12cbaf1b0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60487b59f36c109e05311f492b2bf223542535e2c85e15b963448d1af1a7efe4
MD5 d531597a323437db823d1c70c136aa94
BLAKE2b-256 0914ef71e79bdaea064c3e68c36fe2db4be7c9f2a3b235946fd50d694aa6d476

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f19888180f44f7fec29baa5fef6e68fc625f94533a7b948c223445c55270d185
MD5 15a8d1cd9532d68d75f5b46f4f68f637
BLAKE2b-256 e1fd490016a28aebd3c2f3946c9dd654217145a0228021913dc9d96be57edb66

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e714b11fff5d77bed455caa2c62283fab9bcbd9da0d828e8a6f5845717906c1
MD5 04756102b28c76f01984571413842965
BLAKE2b-256 6be9d69e366d135e4564246e7ac0f8c47f5cf653ea9d8e5b3692b78a8c9ee78a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85e6fb4dcfdce786a63920a732ed963b63772f10e3c2b5b2a8d1837626e881cb
MD5 9862d6cfe0e587c46909fe408e9558ed
BLAKE2b-256 1b8c99e89bdc7de74c8dca0fdff84b592c6e82fbaad4312c0734d77eb56765f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8d5e752ae4e0885138d7eb53cb19671560506a215c5dfa384bf980fe939712c6
MD5 00f6a15225703c92a3e48306377dfbca
BLAKE2b-256 6c1f910f9963ff6e20db61cc95b77ab7ad2d1f6f115f99d3d8c9149abc33084a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cf8fc0c28640b81de903da009e4dc19ac52ef2204059b5f5f8eebec2a69de559
MD5 3af9b7072637f8551940cf797970dd0e
BLAKE2b-256 3fc462deda6ce815c2e595b13148d2ca0b40a75e8be11919a401fb49fffa36d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: sql_impressao-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sql_impressao-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 011a914977194908b1ee54b0c06ec8ed08bcb4c41b99c83bc895d79aaa6a2138
MD5 2afb7593047da85a76426c162f0e21d3
BLAKE2b-256 b89b3a64e5829c91b2ac3b236359f11e209673d6ed83637eb8c7c84957405fee

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp311-cp311-win32.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7f66d255dd2976cb77dc5f05e54bcbdec80389893d015dda077f5a7e5fc10779
MD5 35ec2267e7a105c5c72151bbf03611d5
BLAKE2b-256 4f5f4fef16e4eaa71e6b79c13a3223a718a97c402dc78443d86e73c10fc9bd66

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a4665e0be95d2429e8a58977e87201f699a1bfd105bf50105d2a5a7c5b8ac5b6
MD5 23bd1a06384189eb12dc6b761f0668ad
BLAKE2b-256 fe62d3b7ff9258672efa4bd58d45c5a0afa6a8f3d4c86388233b2e5363535ed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9572bc98ead9c7891a8efd7b0062677d08bb71748b9b25ea6ae415e909932f9
MD5 54ca509a7608567ce5f95222cf7e7ee4
BLAKE2b-256 19d1d12d6bd5e428124e4370c8455a67e412e264fda29f83396040312439c21c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fabbb29976b016d18edf6fda1783d399b55c48aff8e84143d49eb4e42b7a85a2
MD5 8630cb90b04b7be74c31bc111ba59ea1
BLAKE2b-256 8231e967a2493210f30e3e2b84ed9a5d7f04442a3474155bf4e4b05d8dfa4917

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d791a62652e25b832fc2ba05a57158c4c43ee0cbbf6121ce8425ccc8a8ff941d
MD5 caab4151e360711216cb8e45d52ef6f6
BLAKE2b-256 c19ff053340901fe70a814fa1212e351d84b10b159f31b544060ca7f10fdcfa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a81c5b39aea00485e510c99bcfd2f867ce66f2d9751cb3cfec3d3c601faf77cb
MD5 4a2ab7dde0e5e7f86e4648d25a7c4420
BLAKE2b-256 7bdc0ebedafa1b7568e51a6020a63a7335ac831e5c165373b259d4fbefa2fd74

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa63e8c82effa485159c6598bcbc730053f926800205cbafb951600b9753f0e4
MD5 72f6eb879417aa6a0c161ccfba22426b
BLAKE2b-256 5fe29f78dacc88727e532d54e866ce7590486d8ea1ecc6d1befb0fed742f2e81

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d00024e2c6313073564e3013930f4bf8e23f1c8a58872ccf5705e9ade3daafbe
MD5 f22d033b79176b92475ac83cf1991c3f
BLAKE2b-256 68e9184358a518053770698f85169c1624c9b3ee0627d24e3e6b03ee6a2b70e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 61039900f94661b1b88f79a80a5d0fd08a3f0aff8fb2cefa48a4aaa30e5ef0c7
MD5 6a3816ba9c000ae5653d2e2e721b26f4
BLAKE2b-256 631916458d809eb24e91f81eed673544ba9923492f76edbcd1fbafd2833a5731

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: sql_impressao-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sql_impressao-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 02a92282553381b610cb9307922ab108f655ea2f4e6a057d6ed5377a001c7417
MD5 4f0cd280a971cf92945855e5bb745373
BLAKE2b-256 0237639fbda96e1f602cff981d4b57fed4f7d052e4ff3cf425ee6b84caf09c76

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp310-cp310-win32.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 735f7917b8b366bc2d0cb781e47e5505d90a7565febfd5feae00abbd3c283b64
MD5 9a63a369b78557cbb87441cbbb5b55e7
BLAKE2b-256 482fec5ed485a2e043df6ea6f9669e681cd4ab5bd3fc8a392b1d1786529b7980

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bf0468b9a805e4feabcb0d4b2b82e7d7abc519d508a3e3dc7ba6471cb558836e
MD5 8bceaadde5dd06cc4686e301780bf626
BLAKE2b-256 0fb6775f0cb8230e763ee1af5f481e14f4521f0b0c606bef887903e87685a6cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93031d240880eb73b3013adacb5b62ce8038c61a639d090e46d1aa7b850e5b76
MD5 6def92aa129d2ebd3279f3fa3e55e6bb
BLAKE2b-256 0f951cf5fef05b048991d74c88403f543cd6d89cfab98ae2500a97096bb9bdd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1d8d2e66a37d9852209ae97c9d9fa5af70188a9f83ec665484ca15e444fb5c5
MD5 ad81acc6f60666b4bf63cbfd03ce5240
BLAKE2b-256 4eb8b78463b10e38698b3fa39eae566b6645be045ab5433718768577541b320d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07580f152c1792a195f177759d7c4dd56c738222e4293e6098b324278e2dbce7
MD5 b76cc628e684649cb1c9a4bb531fd2b3
BLAKE2b-256 095ebbae61fb1fcfcd87384cbe0edd3f4e50f58109ffa83d476a9039440bd480

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9557e02bc801f452a9b0f4ffc8cc11bacad516dc54ed4be55d1b498b959e1e83
MD5 829c99c27e60c8f33b032203277a9b31
BLAKE2b-256 8f88a135ba3a3606a23192c9d600bb904001bc4e10108331691aa23ada1c21f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 89078b8acb5c87e53710fe3b4a59bad1f771f42ae13daf56bbd615159ad5a4f2
MD5 48102052cefd1fb7e19a6ff0803f42fb
BLAKE2b-256 d4937bdad3c369fc758fa60e3bea674644e730ca7a540411f409527bd3405c3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp39-cp39-win_amd64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: sql_impressao-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sql_impressao-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b3e485115c2de382cfcce61c5152dff813f17c55b7dfbf55b9be91acde4e9a91
MD5 c5d42fe6a2492ccb597c95e420b761e0
BLAKE2b-256 ad963c03ca1efa601caba1af2278110cdc6cdf9fa5b6ae3bce5da2d2d1fd560d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp39-cp39-win32.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d4054c5cf718d9bb9d48bb3f4048127cb4bf90ffe75719eee6b05669b027ce0d
MD5 924fa6a3a34def7f2a564b19b125ba55
BLAKE2b-256 85407fa4f6653f26bd02a687386ce6d0f27fa59ddad72ef8a57f99bad67f9834

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1f11961bc2c4741bfc089358c878e40f58c9994daea3d82b776145149ee1c3bc
MD5 c7dd52b00616cb149addf3bfe95b96b7
BLAKE2b-256 5f175cdf096c3b11742c22bf10c311169dfd8cca09a67da7f002760196d27519

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33576c5aeec7d41607104592577fa7decc746d63421e577e8de7106b63bf0994
MD5 eff429239f9b6b2ac9aeef514eae0c70
BLAKE2b-256 c744616eb8f8d7292030274375d170082e6c18c4006494a83298d8797be15e67

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b6b4cf7a476cd278cc551645086c1d2bd88d5c87e78a99bb7c5a6fddcd250499
MD5 bf41ba2d8b5c38a4124e758d95f7e5cd
BLAKE2b-256 ea0cd38d44c9da4887ffeaa070ead8a8aa78fa27b67a736dc44b80179b981aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cee03c13a75145203321150b3006946c90532d02152848e07db069400bf98dbb
MD5 1a6fd1e2a2ec5ce61e6fda4b33eeba04
BLAKE2b-256 b76540e6880a1048ceedeb66695ada948b62cdf9f607e949657d706404a0bb9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1739713a88cf2f0dae6293af83d1167c55b3d931448417519ea76d6625e62944
MD5 7ba5bf1662d54a95cadfebf6d2e80ff3
BLAKE2b-256 614b834b3689c67fa2a47a514749ee3c22c1a2e8b334a9a6bffbeb3173372127

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: main.yml on adamchainz/sql-impressao

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