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.4.0.tar.gz (15.5 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.4.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.4.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.4.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.4.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.4.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.4.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.4.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.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.4.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.4.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.4.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.4.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.4.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.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.4.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.4.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.4.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.4.0-cp313-cp313t-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

sql_impressao-1.4.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.4.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.4.0-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

sql_impressao-1.4.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.4.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

sql_impressao-1.4.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.4.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.4.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.4.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.4.0-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sql_impressao-1.4.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.4.0-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

sql_impressao-1.4.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.4.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

sql_impressao-1.4.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.4.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.4.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.4.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.4.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sql_impressao-1.4.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.4.0-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

sql_impressao-1.4.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.4.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

sql_impressao-1.4.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.4.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.4.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.4.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.4.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sql_impressao-1.4.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.4.0-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

sql_impressao-1.4.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.4.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

sql_impressao-1.4.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.4.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.4.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.4.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.4.0-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

sql_impressao-1.4.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.4.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

sql_impressao-1.4.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.4.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.4.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.4.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.4.0.tar.gz.

File metadata

  • Download URL: sql_impressao-1.4.0.tar.gz
  • Upload date:
  • Size: 15.5 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.4.0.tar.gz
Algorithm Hash digest
SHA256 ee0c976a43551f77de350aa247e1bd7b35123bbbfca548836ecdb04234dd862a
MD5 dc179d8f1aab0959a6ed892fb29a78b1
BLAKE2b-256 bd4c2ed28908aede7ac24766ed73d6440b2942232e3c666665ea3d0d334f3849

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 84459055f3bae268f2b27fa7f422abf9ec3de4d3a73cd92bea9d3e59c5df8aea
MD5 4514a393c32bd496663bce4f38d5f7c8
BLAKE2b-256 65e9a9fca20a9e53569382a3e66ead85831c5dc235a520c27c36c32c1c743a78

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c44e4323f0ca300735ed3744ba404f336aa474c1aaa022e09c92efdf02a8b197
MD5 d2133c62758fe7794d9c079147d96a53
BLAKE2b-256 a1b788b28db72cc6b33ec083a3b19cda891239437a6796b8a3f4a8b3fb39cf2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aaab15d0bb443d698e20366541850b6ac16b7d8b0d9bc39c5aa9ced53c2851ef
MD5 0c69b4cf0c53b28ec079cf76ef706099
BLAKE2b-256 896da815724092a6d4fcdf7fd3bc0e73917220009360673e0a344ce34e93ae14

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76991a9a75fed2d5de16318c12554fe23940888718e10f5882832bd2e8ca5762
MD5 157bbe9e9e7d7a17615d4882d786b768
BLAKE2b-256 115a8bef6c360e3c1d0a6517299c9f777e6685ae7995448e927172416af7c583

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de19a5ec58ba5fddb5f7c3238b8b07b9a8102984b7704aa9da10933e360a7ffe
MD5 5e2d4edf6790ac47ae2aaad7785d372c
BLAKE2b-256 170a51ceb3dce2fe61461e7a18b29724748a8322f7a3bdc66bbe201ab5b747ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d205b0ba799e4172923d60a6f95ce2131a00d3f028b835993c7477d68386749
MD5 3b3c9689e785b2c6e30493f050a4ff04
BLAKE2b-256 5abdc8db7a763fa7212a1e9b9399f140ba298f0373a9ed2ffdf1909126ab31c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d244ca914a963511e149ce17f90b09559338b76b21c380dd4d6b31a49d8d2dd1
MD5 ffc79d9818c72cb9d159d517cf300bd8
BLAKE2b-256 12399ec6fc34b6dfcef1c53c1d7a5b062a7c5ba9104e5a42f172343516182bc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 608d9407aa2c11f0dba1a56c9cab62b531ae41a4b08e501830ea3368f6c46f3c
MD5 a4873ab9f2e8350769cf9b9d35d0a70c
BLAKE2b-256 c037b421dfbcb39ad9325240d0e2a9da2cbacd8e8156babed19eb715954e3464

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0885e048e33f2699f36141622419277474b2bb3a86f8494bea43a82e7ddd8bb5
MD5 c163e32f7d2175a973c28b898d76c22e
BLAKE2b-256 48bcf95f42810878d3518bab2f6dab1aac212ce2240b11dc7bdab508e27ec830

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6c06eed786ba94ae0a29b2a56ac369d40b94bf91f02b2bb54b19bfe2f67ede7
MD5 ac1be5dd3dc0468bd3ba043ba7a6c582
BLAKE2b-256 8b83081619727483f0d03792eafcfd7386e3b48d859e05da80f3cace440c8c46

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ba5672f28ea4bdb7cc5ad91e8d090ef72d3e50cdfcba2af4bc993d964e4bd67
MD5 3f7bbff7b7e7e9774b8295507f2df175
BLAKE2b-256 d9ce2c2868ad630dafb3f69eed3c91156db99221bf95f3fa7349770aa512f7c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a19e3a9a77592c4075bcfcbbe83e8da576cabeb02fdd83728a1b5e877182d829
MD5 e9bb680581f5858b8749e226bf23a6f3
BLAKE2b-256 8f3be7ea38d46307d6afdf3578f93b38e1f44fd6ab61f1a41e77df98b5ed5924

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9d4a8a56d0e1fe6edd0fc5ac24c51b26abab09fbb16ad048a9c412e667b023dd
MD5 83d664e22ed4e68588487bfa1ab247ee
BLAKE2b-256 59ae08eb68f5557af08d35ef1e33bfe90ba145a18cb717550eeca7918fb0c66f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0324e86dc4ee6635c3c17d82e2c2d4873f2ffbbfa07344382dd18eb9bda0a06b
MD5 ad91ba0e2970cab0b1f76b9a7210cb9b
BLAKE2b-256 381dbee33352da522f3a3204f9e966664686567020ca9b5c7490d97a3062f068

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 abf12fe719bb95d87961c5634c6f4d146a9b003f4538e5573e766aa716431f74
MD5 a1f80cc40eba9dcb91dffa454d654dd2
BLAKE2b-256 7fed8e17faf77a31637af832ac5586c107bc3e371817938665e3b5bb10fdc674

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05609bf0b5694a31ce55181c2f869a7ed7fc62620438f4830cb46a724b0be162
MD5 967b9026b2454a38082dbc100c08ef55
BLAKE2b-256 bb006384502ae4aaeb01567661a89ac38a76415c13a51e872a4742a1d25ca032

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp313-cp313t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 38de524d8201cab5a9e4ec90e78ee62b2ffbf8e6f0f9734c1698ad5f566980f1
MD5 07341cd19143dcd2c5ab8568d7b3c7a1
BLAKE2b-256 b1b1182489d5edd976f3a6639d3bcf290b70fbd674640c97d6ee1a9c0e8cda56

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp313-cp313t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f2da7cca2681c8c0134a0f387f36aa57e2b442575795f805c3f918819b16322a
MD5 2fd80400cc9aa64a2f08660bf3047e85
BLAKE2b-256 c1746049e5b342181eed308e1bbec94f2244b3fc1c554b4f2154747d6ec6e993

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea29f72b32761505a8a2867b69f3b4883c6800c09bd5ebd8c151595554672907
MD5 123fed16c163f789ef414ca6bcce4e59
BLAKE2b-256 3ac432fb031746cb1a63697f92fcda3b0535b15dd2a1457226eacc43ba631a45

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 363ea53c4215b0bab73018a0ef7d5737bcb5a67ea018a0210b96d8d182627d65
MD5 59a45b00008dc5b90dbadde66201523d
BLAKE2b-256 4cde30748d00a40b9ff73aeb3b99f441ed861ad7b0398284d58be3e280e91ead

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 22f7a2f126279c6bf94347131b4eba073e946968539d413d9c9ef7b60e5918f7
MD5 d8529b2c334f19e95b6f0adab0d1864d
BLAKE2b-256 cdccb07134004a130a3ef8869476029b3b699ccf81a8139b9fae9b8463be5ee3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.4.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.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d0e5223a52b70bba174628aa28e974b89d8f555fae5dd33faa019c16fb26dadf
MD5 b4d16ec98bba8c84d696d0eb2df2a277
BLAKE2b-256 dc18555657993141348ff8b9b96fdc72126da660b2e72cdbfa2fc6e8517bd200

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5c42eeaf376dec1ca2c19c11d1d087952a5a5b75a04b61d9b161ea0c773927be
MD5 7f1379928bca907b412f3c95d44c619b
BLAKE2b-256 3adb8b1f547e448791ada9519e36084641825434d5d10cde44419627b7f377fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b4e7d7b72acdcc162f0c7d481f8dd1ff3cfe9d469883e0cfd4820957bc3a8157
MD5 1f7a10e6921eee0bdcd35dd089a25d36
BLAKE2b-256 4e1eeb3c1236c7ecfed0e496c81a1ce372dc61c779b4696b65ccdefcc1110cc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc6b1c151873c9f5d715a4eea1d3a248719543329c829355451bd34cfb8add63
MD5 9e44f812a93c5017245c0d714237be3f
BLAKE2b-256 ac70d2ed96569509842866debde5c030e86113415caa849a73f5e2828b08bc4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4491f8024be42da28c3bde95d816975cf3eab931cae30cbf7714cca302d5757a
MD5 c6fecdba697c1e249e58acdeeadb9c5f
BLAKE2b-256 68f2b93ab3bfb2557f5a3287dab5903fd87848a7813ef3c138ae61e49a044545

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 997e174383f206686ffd0e2dc1d118005f0b04d33729d093b49aa27efacabfa8
MD5 f9cac4b3acf60ba97ad549bfab127cfe
BLAKE2b-256 16b1a7c35919c6f8f8fa08754636f41ff06dad1ce727d8de1b3cb53a377ec95a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 85324568e34c6cfc8b1b7b2aeb9284b16bab354b43cde22e1c265ba056e361f6
MD5 03c7c5d09b276cb59e373534ef1f0cc2
BLAKE2b-256 c73ec850e1e36b054c57f5382b12f192cd752b389ffff83a667dbb427d1fa615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d8b66e893167031d25c2e62cf39590b8ccdf427f88c64166a5e165a5153414a
MD5 04de723f07adc4ccd00c55e7bd948ff8
BLAKE2b-256 3a2a018cb36b67a49f0230004055f8f259a90d875ecf1a79f34c69a4790034ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1893e7c0022b98445367bd76f76f1db9c75afef7cf7b0912465441a9fb6142b9
MD5 d6c177bf96c5cead273321e126904b54
BLAKE2b-256 453488679edb964482f04ce920edbcee87bd490b818e096085cc634fb314d3ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ed5b6120e72202a63ef82f41015e246b04e5362077d263f0d5e80fdad5afd9c9
MD5 d69de8d7d090a85b91bff8f9432fe8a5
BLAKE2b-256 f29a3e5acd5d512c24fd797496b57e007de69ab4fdfd84707291ca19a810ae27

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.4.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.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fedae32313390ee7704043c1ff54c6463573bd4e6c8fc551a39b23788fd27103
MD5 add595ed0dacd3b20b0a8ca30d2ae946
BLAKE2b-256 758eff8faa75bf12db54bd77997033ab72e54af64b6483d866ac15a803777d75

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 069bbed50874dc2e524265932cf76916ff836a0c915596b84c86b22a650ea448
MD5 1a01aa76a7475c8876c48ad399b15386
BLAKE2b-256 dd56b1161a0068fdb9476aa758eabeaa4f3350c21ca9582e422c73481130dafe

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c6820fcf0a43e4ea46c213443192151a6325ad95354c78dc4f508867b9e840e3
MD5 8cb637f1cf8ee0caf38665bd5d916bdd
BLAKE2b-256 7e508569f525bf58252ccb621e2cf4b609109cb94b08c010ca017f22a713af96

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7650ab1bd9b32bc854bc79cebfdcbf14c4b582509b232a0ef6c39dc78b12887a
MD5 96c7bd0a07e1d39ed90cb3600eef6069
BLAKE2b-256 0d1a5ad619294123bfe960c31a716bce3c8c7fc6a7aaf1df0774785037202e78

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f77f8058f741cf4d5d01469ea3e22ff8b3b412a14fe6f1dcc91ebaed078e8255
MD5 6379b0bc3ba25bfbb36c79c4cb8e99d2
BLAKE2b-256 db0a642f1f84d4839adee766bbe3f460fbafd968902dd6305143d8f770b92874

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4fca4129125a35441c6c9e30b3f32fd1f17e1ca9163caa08f832aad71d11c5f
MD5 344a57491bdd2a6b8d92926089d17f8d
BLAKE2b-256 d1b091578f5bad173c4fc3ad999401d7ba6b5c2f65bbd3c8cb0e8b3d96b04a2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 49e7f806b5fdf4996ada80115462a2937fac6405979669b5a9e2b8707798aac5
MD5 ce2f375e0837ee8102c98abfb54bf0df
BLAKE2b-256 2473defeabf7fc438b3d058f8c8a6cbec3282afc3274d07da69f474dbf1c4f5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d34e5a422b689af1b47ae70fdeaf5fffb55ea1e72adef38cacb5bc0b02853262
MD5 568134a109a4188dda9b8ef0f2725362
BLAKE2b-256 7b663b979a5d3e171580bf77bc914dfc14ee2469f6da04176a88b6423573d3ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d032d3b640643016fb55f421b52c01d548052236ea73a92a48169e21d03c2f10
MD5 6d313695c54c3db2ff835ce128e01b21
BLAKE2b-256 c2fe16759de71bfb16d57125239233b2b80c197abaed4f748bca454b054cf807

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 945ab29211806014ba7a0fd31b9ce40752cbee1a65cc61477dad75599a26d3bc
MD5 7d388e1866f1843f8edc54a0febafd12
BLAKE2b-256 9e4983649e91197ac9331baf8ebe95ae61051f718131fe3badfd98b7468a7a25

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.4.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.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fed68450c3c5b1cae144d3a368326f197b6deda95315a746b7f699de12b895e6
MD5 ea0d36ad0fbaa533dc572110cb8a505c
BLAKE2b-256 3e1637772d1880bec63ff26c2bb785de3a113f8e40ef33d0b6a036c645df2e47

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f5b523800b74b81b0dba055a066ea64942a9f37aab90fd364031074e4c6aff2a
MD5 9ec57535731df4bf149fed1bc223770d
BLAKE2b-256 574dc8c47b606baae7fd3163b7bb6a647b500ea5c1245d8eb85b6e82ba375579

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5eccd82b04001bd543e1c1e417098557b548fe5c264e2a57198969db1b5fd88d
MD5 e021e396c383f814a50cd817e1f1ed26
BLAKE2b-256 2b609c7afe4c3f4fbe2f5986e81b8835c2de55cbf48b9dbcefeb8d73490e2ba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa2f6830f4e7561418c00a84aa3ec02917b69c5616def20f770ea162aaa1d8c5
MD5 0fa00e10ce19d96621d4bfe5bc14a713
BLAKE2b-256 a0b7098e9b10ffc7a2dd0082a6482def2673318372ae2ecdb5bff2e9ec058091

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93c6a2f0fb0335b48d971d372540d1e81282b3f1c851aff0b0700f7b1fb6a49f
MD5 0a80cc22691c8afab2e2728405d9ee1e
BLAKE2b-256 e96c6ee0e3ed45badbaf25f75ef819e4ae99b26743af987165ef0ed8432614b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3cb483d2005a5bae8d20404417fdefb4f94e418a5a8412f215c02409ab2348c
MD5 6d64aec075907c628716b09946a47b87
BLAKE2b-256 d0da2ed743b1d3a3a8b86237077b361f02bbb2adca5321f41e51a1a9d3db934f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e37b4dfb69d58e74295a7df4c2b1de110acc19586c3ea7560305a60cc8957f4d
MD5 13c0fb70c23c438f4a1cd542f9509a0b
BLAKE2b-256 1cc646c494dca3c6552e72689a349a399868f9ed19269e15efffde671341a979

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c824d2ae3a7f0e7653cb5e1fa36a9e41cd29cb34a296451222465799fc07983f
MD5 f4d131f6c7ef7c70b0cb7ed6f109a64a
BLAKE2b-256 82358de944a470aeb8721f5222c0af5e007049036d7ef9c6859fd81b872abf7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a6dacf11311d26289863f603bfd86b6d51d4ba1d3649d55452d9d43ca8cf693
MD5 89ecb447c020adea79290d5bd4da6604
BLAKE2b-256 b62ce32dcfd2191fd1512993e2d19c68f02776d78c49222984f739c2b900c71d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 89c59123343e81fae9aeed9088aae6e6b15d0d36ab852ab4755666225072c62f
MD5 9331af3f504aed73ce66aa14ee46b4c9
BLAKE2b-256 006f51c8c22a2dea9c6b8b6d503a31bfa2a29048e08ed16fbf0a49be4743d69d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.4.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.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d56d77249e88c0e4bfb44f942a4b0fc366a4ab48e2a53ccf951da2f729882aec
MD5 5ef3b1f8ff03d7d02199cb27864aaddd
BLAKE2b-256 fab87a6a4bf5ffe69fd62f00a494157fee58d3dbba2cf08d8f20e6dc7a0988ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 636e5e2d6c64d61f3f6c2efe3290d92074c88297cc24dd85909dcb830e413098
MD5 8b4039ba581071c0cc99cb6c4a1824ef
BLAKE2b-256 70f591bb3d9a44cf5e0b95135c17fc87e6aa2cb99f7767342596930c37f3bdcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9330b5d282f77e024c956baefaa5cac1426c55efa1a38c95d5529d9d62e61581
MD5 4013e096b6e206d28a52b391110db7e3
BLAKE2b-256 49f91f633617bc65d0cfacda267707cecc55be8d8a60106fadde9cb95651b485

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1388fde4d0dd9edbac53bce9f2a4527ae64b3e913ed961a9df7ecfbdef5dec51
MD5 bd6a5d684984357f00fc4fd8b1c5f872
BLAKE2b-256 7669167b2820d4d87f62410e92cdc0ce630b6eb7ae66b5369a766b795c8f6629

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44cefb9f3075616864906521326e5b391c35351f7dc6c0cb14cd8097d79527f2
MD5 d8c69f9229e54ca130bec7820260236d
BLAKE2b-256 3822edb3c22b7328ba053cf08a19a69c4ca9cca263dc5fcb7b51f050909d401c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 092ee1dbc2c81aebd68b44259f22928b9b04e743eb9295d982883ce491fadf3f
MD5 1d14166282f81e519a94bd15f4672c5f
BLAKE2b-256 eb2d364302e7566bedce6510d69e05e8598680a0cc1e3389fc57441c184544fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d757ce6befcb2c485fae3244819fc2eff84b50c3c3b80fc5b44bc94db5ed050
MD5 724fea838c34b654649af7a822b10eb6
BLAKE2b-256 6acf6f3d4b0cbf6e8752439dfb28b2addaaeef972f63b5a80394fd6ad85d69e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 69de0d4487ad0a5a82e3c2d042aa9f04ad81a07ebd4b2210584d6781592f6418
MD5 de0e7031bf60c4cb1f385b163f356e09
BLAKE2b-256 6d3790f300ac506a0f0adf81c292ced30877efab5b2d509f587fe2e8c8c8cf03

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: sql_impressao-1.4.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.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 25b593e51e1e05b658a3227be8b3484698a40d556b39ba8183c7f2c45a0913b7
MD5 c475ed0431cc3f15c379febad86de5f7
BLAKE2b-256 fe42999e07686054f5370cb89977b081ea3f4959f7d39273f681a57006fdb541

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 642abdaea717cb76334403f5b1efe6f1dfaa510c70542297301b163f0f412f7e
MD5 1184bee8194679901f4f8066ab347e04
BLAKE2b-256 02411ae8d1deda326758a373d3d67f9125ff8fa94694f46274a490daaca9e2ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9970db053490c8ca5078409c019f62611b881d166773d7ddf6873b4f56f40be6
MD5 a967a8505d2d516b5c1ee547baa31e57
BLAKE2b-256 23c61ccf9bebf611b5727c328ccc8d7755054e05d032e1f4afea7eab6906ce15

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 257c9865a8bdab1c6ef1e67211c44b8ba47fac950133a0f1234105942aeec985
MD5 0a116715b3da8a59912cafdb6b96d5df
BLAKE2b-256 c3a9665bd67261ee44774c5c9723bdd57a234a6ae6d23fb778b11142ec8d5e95

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b27ac5d8c46f1864e423a79035a1e7f17a17aab306de1df80f94dbf2dc20a7a
MD5 d5f2450f4a80f1f4c3b8189b0f5ad01c
BLAKE2b-256 106d6325d1142f7c0cfabf89d847c03ff0437b0517e028a84b13118c5b8678ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fb860a65a61277b3ae60a5a14a9edd817fe1a1ff0ec18f0aaa8f8b39a3b0340
MD5 436860554dbd1eef9d3308732796f5e6
BLAKE2b-256 bc3676593233c6f75342f000d250b673b0b41b09d7bf93a323a9f6a5ade6713f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 037dbab32b1e019294a0c97f45f986e0980cb034b970c1bb7def0d599c4e9b6c
MD5 72212837b9f5f5400320b087396ac5d9
BLAKE2b-256 a875f63c24541e05ed9db7ae5ff4dc33893657c319036fa4d5caf97e4d333ac9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.4.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