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.10 to 3.14 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.11.0.tar.gz (16.8 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.11.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.11.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sql_impressao-1.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

sql_impressao-1.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

sql_impressao-1.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.11.0-cp314-cp314-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14Windows ARM64

sql_impressao-1.11.0-cp314-cp314-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.14Windows x86-64

sql_impressao-1.11.0-cp314-cp314-musllinux_1_1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

sql_impressao-1.11.0-cp314-cp314-musllinux_1_1_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

sql_impressao-1.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

sql_impressao-1.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

sql_impressao-1.11.0-cp314-cp314-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sql_impressao-1.11.0-cp314-cp314-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

sql_impressao-1.11.0-cp313-cp313t-musllinux_1_1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

sql_impressao-1.11.0-cp313-cp313t-musllinux_1_1_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

sql_impressao-1.11.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.11.0-cp313-cp313-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13Windows ARM64

sql_impressao-1.11.0-cp313-cp313-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.13Windows x86-64

sql_impressao-1.11.0-cp313-cp313-musllinux_1_1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

sql_impressao-1.11.0-cp313-cp313-musllinux_1_1_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

sql_impressao-1.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sql_impressao-1.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sql_impressao-1.11.0-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sql_impressao-1.11.0-cp313-cp313-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sql_impressao-1.11.0-cp312-cp312-win_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12Windows ARM64

sql_impressao-1.11.0-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sql_impressao-1.11.0-cp312-cp312-musllinux_1_1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

sql_impressao-1.11.0-cp312-cp312-musllinux_1_1_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

sql_impressao-1.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sql_impressao-1.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sql_impressao-1.11.0-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sql_impressao-1.11.0-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sql_impressao-1.11.0-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sql_impressao-1.11.0-cp311-cp311-musllinux_1_1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

sql_impressao-1.11.0-cp311-cp311-musllinux_1_1_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

sql_impressao-1.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sql_impressao-1.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sql_impressao-1.11.0-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sql_impressao-1.11.0-cp311-cp311-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sql_impressao-1.11.0-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sql_impressao-1.11.0-cp310-cp310-musllinux_1_1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

sql_impressao-1.11.0-cp310-cp310-musllinux_1_1_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

sql_impressao-1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sql_impressao-1.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for sql_impressao-1.11.0.tar.gz
Algorithm Hash digest
SHA256 581384debf3358c372ad73b04d984a70ae41f3c44efa1a4da538518cd3d8d7ae
MD5 684737a2f04dd960f146381c45962484
BLAKE2b-256 c6d37262e65d5cbe19a7783248a4e3f568b21a7c30b2c2dab669d53e18be447a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 013fa9c9a9b4171f2a930cf9f4ad5332509d06a84f119fe8e6aae80bbf9963d6
MD5 c0eb0d99b358b654be21a5b785ad13e1
BLAKE2b-256 18c8054c39ce5c2462b1eaa718b074c8c0620d481b4835e682d62facd5865cc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8ce974a122e60531fa88020436da88e71c09f877b6846554b08ab1dcc5038e0e
MD5 05c974ec6f10c3d10d0ab13a5195470e
BLAKE2b-256 d4dca119cf9ff5fc92e1e69668475d6b2ad2b5e32fc28c2b816d302d6fc1f4af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfeb32a67dc8dd5d4ea7e52051b997207f24def4898f438a61466921ddbaae85
MD5 6629470f795b3a41788944d59c142123
BLAKE2b-256 1a150f61f5eaffd4644a174955c9983c77f237b08fa095ebd5a10bdc36c9b2bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27eab9d2de4fe8590f0d62921ffd8d825a675a41914eda624f0af504a6e84d4d
MD5 927aa7b556cab46ac2c196948fa8bba9
BLAKE2b-256 058bc44f3d8490eef788e5670c9641259859b7813f0bbeed7e4732d8da7c70d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 934b65ef7ec39d69175961f479507ec53330a02979d71dd4b407a8c1506beac2
MD5 4101665e984b0319f90c373d082db0b9
BLAKE2b-256 e62cc6d4c52bd3ce6ee258c0fddb60637d9b094d911d290bd2f5d6a47d6dd2bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.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.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 356795e592a4cd3692e63e6cc85b5e5907fe41aeffc0a15c91651b09abd83eca
MD5 a8746c644b5733a532bd2650f000a215
BLAKE2b-256 8b6274d227ce33e5b1f12f982ec21a76885e57b937e82312ea07382c4d0202ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.0-cp314-cp314t-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.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d596cedb67dcb8f28ee0390614d1417cd22b4e7727d73f203fb279da137930cd
MD5 978dd40c9622c255d1baa64ea53bb641
BLAKE2b-256 d47e5e514cbe62c0770dda8149dc3b3988c9696efe6288f75fbd7da1169b162d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.0-cp314-cp314t-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.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3103d3c7ed68713e4754ffc7fea98f254233c38f214b6ca12b9d5a504145b49c
MD5 eb480a1e26e596f717ce58dbf2379768
BLAKE2b-256 391bac7c451dc9d2479760838adb885f0980d47fcbea910e5d79c8c15688d888

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.0-cp314-cp314t-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.11.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bcdcfa7b179e9022ed2ae9e0fdb5edf556d8564dfe7e89e5bc6ec71faa53ccc1
MD5 7f7c82afa25823b37a02db152ae1a7d7
BLAKE2b-256 d17a87db567e8738be98563ce7f3b915d9b3078de73e4af375a121d6bc515bb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.0-cp314-cp314-win_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.11.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1e867e098ceb7e7c7af210af2bc425afa38f878dca58ec75f6fee603b9c146fa
MD5 13ad2c770be8cf69ea8c10971146e581
BLAKE2b-256 6e154a51f9c725e8479cccf686b37a758167816b738561a6828c4536ef45210f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.0-cp314-cp314-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.11.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0bcf2dfa7e786f57a848da944021229ef598c2b894334802c12be6ecfa96cb01
MD5 3a3c33f01abe8ee0058df5f2d4fb60cf
BLAKE2b-256 ab2eddafbcda35a4c3fe64ddcbc948e1c25b5ca48e8fe4bea8210dba0ac6bfba

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.0-cp314-cp314-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.11.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 817c12506a137a0cf9250acfcae8ce1716e45a2ec9463574e17fa219faea5c97
MD5 f1f1c97f1ee31053acabd435a7b0df2c
BLAKE2b-256 4df8872e89b18f883fcb6270ae02fcfb8626e527318dc86038352edd1ac496a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.0-cp314-cp314-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.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b6ae856fe3f7f480e4766c684b2a6490f83f2d9c0d658193d03483b148baf61
MD5 6b947b8d2e94da5c15842e64af096b81
BLAKE2b-256 1c473a7f03eaa17e93e8689bc045e689a6d1f12cd94c0a0b862b5d338dc92229

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.0-cp314-cp314-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.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a84357a1e212443db1abc5deec2d760ac8ee3a2b54b3566e4954b40014f5ece
MD5 3130ffa4df486f563b19987773563595
BLAKE2b-256 33b0ac6f7024fbcec1046d5c332b91dcc976b8ebdac4a0931efeb52babaf6ee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.0-cp314-cp314-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.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbee35c7bde4ee50ad2d37f0bf1ff41fa7f19681e5b4deeb5247fd1feb2ba8bf
MD5 ce6a2f9d766c0e604858c7cdaa0743d5
BLAKE2b-256 ee1ceab3017ebd74c12314484d54415d26e82ac0dfccaf6d6adba013cd698124

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.0-cp314-cp314-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.11.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b497ab3582b1087e899f46924852006526ed28259bb624c693c9a19f53e08c3
MD5 8a1640a9e5b23c536c4728e8a7d19cc6
BLAKE2b-256 91685e6b3288d419bf2df3de6b2c9a3d673de950699cd21c8570749910345fc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.0-cp314-cp314-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.11.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7782e259e0ba98edabbf8da1036d488f95455caa744d5d5ceb63f5c11221d3a3
MD5 21110af5b49ee2916e68018e9806f67a
BLAKE2b-256 bed1ac47931e94e962803e14a5c3e30ce2341d13f61ed388dc0f554dc4f4cda1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 808e2a640de0e2c48c41a38711636d0c0f4b0dfba1dc7f6d4fd79e6955747f18
MD5 e39627406437b41233929bc3aea8b6aa
BLAKE2b-256 13b5b1cea187d3d3a828e1ed9d45cab5e19d7f7f1c5c41952b48d3177590e5f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 af4a2b79ff42df7cb3334a6a3b2e4c4d31df2f8af16840474f6cce5e2c075a0f
MD5 f3fe9c09a00092c7b90fd9c09a01ded9
BLAKE2b-256 d11155b1786cd4c21c575f81eb1cb230c3b153dee9ece4ffd9f89db87f841617

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 83dfc3a932ee05d91f91de9650146914bac0fb236988b1b0d46d4cfd0e7babc4
MD5 c2fb6fa5fe85a3d2dcc76e5cfdf3d972
BLAKE2b-256 096aaf6d66f94e545de17b7db2e488e2967715ff885ad856107725b22cbb0902

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.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.11.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 48591cbf2bd81433392381c9147237976fa5fd8bd27efc9f56f928ca7e0665e6
MD5 0861d3ebdc150aee85d2b2c7716127b4
BLAKE2b-256 044244fa54f6a98747bf7d6455393dca13850e3aa218b8988809af9e741f21a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 90987c332af81f6a590978f57bc5e4b11e0e0f72dd2ced023396536dde274a2a
MD5 53f4e3c27c5ca795ef49ed935e5dcb4c
BLAKE2b-256 899e1a8bd6152de192f71aec578cc8c3080753318be81327fc6e4852a9c81d21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f33ccf9b37d2ede158f056d8b34779bf9552025a146251c4c326aa97d183c6f4
MD5 2b251fb92cd25c0d0a00501c77512224
BLAKE2b-256 181034bd9922deb6aed6437d359346b8e211bb6017c0d42959cc3ebbcb9758bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 033f66a14ede5305d95f4f1d3b02e8bac0d5587cda3234d42044fad4802fd3de
MD5 db108137c10ac6311664e62114b663db
BLAKE2b-256 445deee6e1b3f3290f1b215a0919ee47ca5e3bf7b7780e8acb9749624cdbc9b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0bc3ef6d6b559ff8cfe7557f62fe480f996ed8434f8f4d3402883b2fc8f103f
MD5 24188dcc8c442bc80257d44b041c141e
BLAKE2b-256 343a519c184b3447073d9f05763b450ba81054b8323f5544f323e5ad0c05b2f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce4ebe425cd6523b8f52cd23cb6dbb2d26be1ffd122ef76943d192405d594eda
MD5 9bafc15c5e77060928e9d16e3ddeeefe
BLAKE2b-256 0f2b7b25910d40d8d67cb0200bc863a0af751d4e0d4bebe11f79cee21187e3bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd1d86f681184fa09ca620701e189b0e728d86d1f8098ae3534af4946ee0e746
MD5 1abb8ce0950dab447e02e65dceeeae9a
BLAKE2b-256 a219117fbe1ef99cc339822c7f06563aa104a567643c75f9d906557e394cc9b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4bb2bffa02085e1e7f36d5d12e8d3f4e7798de5ce47506caaf95a5652828c6b
MD5 c8174dac5a64121f188a44389653616e
BLAKE2b-256 b1c9328dc702d1d316385745c8c8952b7b246e0a1f72ef33392e973b200135e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43cf9142b455685748c2337ad503e4e8350b24f1b6c64b76bafd78bde894245f
MD5 69d7650852032df3729a53fc39768dbe
BLAKE2b-256 7d188fa5e2f5b59fd4ca73a8eacc7d891ad321dbeee9dda16cc4626383e1882e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.11.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.11.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 223aee1d1a1867c1763ca9f32648fc21ffb2f0b080e971e3f262d82cccfd3680
MD5 4c7d6a6c087e7127098ca6f81ee71ce5
BLAKE2b-256 3eadbef8abef734f412ed32ce32f6c6d41571565f96f9cc91da91a740766fcea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5b9bbaf01365f22d333a2fdf311adc179a5cfada75a27146b6dfa2e44ec08d90
MD5 77c58783b87db462cd9c976293de7170
BLAKE2b-256 1e936a3640ac5ecbb725e869e640ed8e90a1f04f68fab327945a9fd12a6fcc17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 81c1bc9c3623a2628224188c44398ffa4deb64630948dc065bbde0e45c17f8de
MD5 c46df7ec3639ccc5c8a67422a422f295
BLAKE2b-256 39a742876ca552a301658736f024aba092c790ae9d30235fe546d60fc9e9baac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6048eb8079a77f0ba8d9d2bcb6d1d4a3b87d2f03b0da0490ca98714c5dc9f347
MD5 09c0b03a62a55ea8c7574e2780e234ed
BLAKE2b-256 648b8d581e5ccae33885f7f6ea61158c110cd6542e0c6c9ad0cdd6b3f4ba34b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdb3190ad58e170370526ba65c5d3b23595bcf0ab5309bac1b4fa055103dd4f7
MD5 871f6acbc638ed1fcd5c308cd7a9794a
BLAKE2b-256 de174b91b72f440cb7a1d19b1e022eef9e5eb09671eba14a1c7c4e04d6667d37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fdb8a0621f79a4533b670a22fa9e5a9299f049de9e6e92cf620aa2eb0bd84215
MD5 8bb97fffda0757ac8d7f238b514c260e
BLAKE2b-256 878cba46f47926e15af6027afa63e0a5d7ce90b2e66569ed8e021767c045f06c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4262ebef19cfd3275ee607dc4f445c287d0b45ccc73ee34b7b85c9352ea97ad
MD5 11b8d0c0e0ef9293a61309f9aa70ba4f
BLAKE2b-256 e4a8c7ad7e5874795bb2b483a5b9d0a9e3e55cc384e3545ae370a5c129f28796

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bb1bb13482de590115d3252c158d99493441791dfd4f127ba7f5062248b0bf5
MD5 3a2b5a389f6cefcbe34a87b505a3b86b
BLAKE2b-256 ae859d5efd434c7a4e7910292df237ad0306da18cf372f0903bd180fbfb7b15c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 caefdad18feff40af49d61ba9a6fb151f26e63556af9b9c54eb43059b7049003
MD5 79f08b5548b968817e9b3ecbd806e6f5
BLAKE2b-256 f76e7b28a524b71bf6d60218ce2cd4fc97494ebfd3196de6c03eadb1a6116aec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1fc8d44d5b536c19af0a6af179a3715291210ad2fd39fb0bb7ae7b0b77b5aa31
MD5 d305caf92a63266b6da62915c4193a80
BLAKE2b-256 2db1f4b89ba10ba5d94cd9cece813c2eb40c029a9962b25530e1238b116c8a8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4074e1bf71fab77054198030b5b7d2500ed14b40105de5dec37d5d056e65c68f
MD5 e764406fde217250e17141ff421cc4f8
BLAKE2b-256 6ff126c78e79148a8c20898407a6e7982f27ce888bfdd6ff0641aa5ea51ba43e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4d070f5ce8b679e8e9c040810168c3ee5f8819ea7dc3bf7ed2907e02c9b2e568
MD5 89a4392fb929374c80e8797621e94f81
BLAKE2b-256 65ccb912e1559c75e2475d205d476c03cee890690f8c13f65d0b6a01e1ca3a45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 593b8aad66479c204fa75d4240d1867c2fa18bf72ae435d1dc630692d9ee94a7
MD5 a84fa11e53e0e523f571ecbc15f18666
BLAKE2b-256 09c4ece9d83eda08816c66f4676882a92280be4b84fd76b02adabda660ab7142

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d10a1d978137dca07af8dc4b533bad9a6d6f59d819fe6d7a83f85d6b37eb1af
MD5 2eadb65ab4b1ea8067c4086178da46d6
BLAKE2b-256 a185a9a18115774f74c948c3e1a969a6097139eceba2d58ef17e025b54f7a245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 348ba8b20a590ec2d8b1278b36bed89ba5560ef61af92bc06962e29225f2b8db
MD5 6f411aae6f782ee96efbdf0664514729
BLAKE2b-256 45c23c1e251f994274866fcd43c85cdd93cb8d367bd2278cae092353fd8153a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a81c3cb66995e8735ebd1a602a67a3ece8c3440ea756c5b93ce6d6f57a9221ce
MD5 3e9811f3dfd5d7eeb50469248548842e
BLAKE2b-256 a698e78fe167780fc495c2fa41e7c8cb3f2e63deda4fbe58d9d05f6682095668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e24456c9fad9e03b75a36e06c33c42179e4c3a927a75c140f69c2b160c2a84fa
MD5 cd20e9d9eefbc6004586fb5dc72da5ba
BLAKE2b-256 78e06f5337846154692d0dd4a0a9ed9dddb7a49e3b2a0333c46ac08f901d0c55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b432dcc3d964ce1f2d1fc76ffa4b77fd3dd3bf6b63824b6ebaaceb4272fa02e6
MD5 a2efee2f8c0186765cadf233cb864588
BLAKE2b-256 b0da95f96e37fb9e0e7d1f4757fcfbdad141419c995cda7d6993fbe8ef5d2e2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cf485246c65122ac2b114462c9aaf2e92fdc2e6a0fe5727938bcf6384b90110b
MD5 3efc63664e510ff18a4f2c79e552307b
BLAKE2b-256 ee54be50d8726a31348b80c04bae48fab3afa10afa44a8b272085ae504d962cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bccadf03eca5a6d6b83f21bd21e0449b646dd55b266ee07d9b441b0948a0e1b9
MD5 4bbb45d1517d1b1bd258aedb65d8bd4f
BLAKE2b-256 5fc7c63048a6a96b427f8703e75afc71a196fba1cfcb28167bab279f8e02f2ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f598cda782ac1995ebf464995929d9a9e827a526263a620bdc23e131c8d7c461
MD5 a66ade4f8dd0662a7e2fe5059828a0e6
BLAKE2b-256 b81c54b887401fcc855692ae213d41deeea78d31e199369e45bdc12e0e0ced4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b4c1fdba0a33a3c4b10a2758ff2ed196314e310f899f33a72b81db4572ee618
MD5 48bcd3347e3f08cdf848ca3abe0ae433
BLAKE2b-256 7b9666df393e82d6d758fbd9572a45a887e5d684b8c0071b98ffd0db62b164af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5df6f8a99001ca3a50438a3dc4fdef88615fe9a183fccb8d06bfeecdf2988713
MD5 77e09c09120dba49a05b8b7059f6d911
BLAKE2b-256 f289b9832087e31a2eaa449d89cc1b9d7e6613117e0389b767563603b165ed88

See more details on using hashes here.

Provenance

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

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