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.12.0.tar.gz (17.6 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.12.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.12.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.12.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sql_impressao-1.12.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.12.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.12.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

sql_impressao-1.12.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

sql_impressao-1.12.0-cp314-cp314t-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

sql_impressao-1.12.0-cp314-cp314t-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

sql_impressao-1.12.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.12.0-cp314-cp314-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14Windows ARM64

sql_impressao-1.12.0-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

sql_impressao-1.12.0-cp314-cp314-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

sql_impressao-1.12.0-cp314-cp314-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

sql_impressao-1.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

sql_impressao-1.12.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.12.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

sql_impressao-1.12.0-cp314-cp314-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sql_impressao-1.12.0-cp314-cp314-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

sql_impressao-1.12.0-cp313-cp313t-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

sql_impressao-1.12.0-cp313-cp313t-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

sql_impressao-1.12.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.12.0-cp313-cp313-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows ARM64

sql_impressao-1.12.0-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

sql_impressao-1.12.0-cp313-cp313-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

sql_impressao-1.12.0-cp313-cp313-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

sql_impressao-1.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sql_impressao-1.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sql_impressao-1.12.0-cp313-cp313-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sql_impressao-1.12.0-cp313-cp313-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sql_impressao-1.12.0-cp312-cp312-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows ARM64

sql_impressao-1.12.0-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

sql_impressao-1.12.0-cp312-cp312-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

sql_impressao-1.12.0-cp312-cp312-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

sql_impressao-1.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sql_impressao-1.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sql_impressao-1.12.0-cp312-cp312-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sql_impressao-1.12.0-cp312-cp312-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sql_impressao-1.12.0-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

sql_impressao-1.12.0-cp311-cp311-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

sql_impressao-1.12.0-cp311-cp311-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

sql_impressao-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sql_impressao-1.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sql_impressao-1.12.0-cp311-cp311-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sql_impressao-1.12.0-cp311-cp311-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sql_impressao-1.12.0-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

sql_impressao-1.12.0-cp310-cp310-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

sql_impressao-1.12.0-cp310-cp310-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

sql_impressao-1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sql_impressao-1.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for sql_impressao-1.12.0.tar.gz
Algorithm Hash digest
SHA256 e3f2ed5cd813d585340b1f0aa593efcc468742ad1951e4d7fa82b9513e74f1ce
MD5 1d1d06420c46b7033a434d1b00a2f45c
BLAKE2b-256 bbc04f3cf9f970896914fb978033b89e40f70bf55309ff167b886702202fa9df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0bc43a7e9c194f20588a6b78f6655cf28f4efdb4b9118163526bb1d658b5662e
MD5 24b0b3341bfcb323e5e0fb5fe6859f44
BLAKE2b-256 9d86581b1d7af644b65d9b774c6d92e9e85c642eaf00aa0a53ab27b4a2c0cdcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1256a6cbf6477d25d9a3c3619b9207c313480e77caf270aaedf249ec66f2df05
MD5 0a64b63667a8ebf5639dc8904351eab4
BLAKE2b-256 f444182885471f38162cd1e387ddf9be800b1e0b282eca1c20d2e6f401ed58ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f6283374220ce40483d75b2978d5020866246007ee83e77cd1d9996bd78e380
MD5 77345ed26b79b9f4bcd2d43ddb5a33ae
BLAKE2b-256 0236f4899423d418f65323505da696eaba587573132001ce6a3e2454ddf65fbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7eaa99967b730930065b725381668261f5593fbf608a14e95b973c06943fc29
MD5 81d4c4cc467d0a7b64c3ed468ad05788
BLAKE2b-256 c718100175c1f00202a6dc740e50190ff36190678803b7b5163bc92a446162d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16c0884ee9af3799ca447c2544841cfdc4ab3c36e2b5fd5d6a59e093b8836ccb
MD5 f71dee34fd5ad43f113c873df7e7430d
BLAKE2b-256 81e78d76ddac268f953f228dd07cc77aedece5192f1f9d3cceb6a73e85ea5206

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.12.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.12.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 237d641621f010cc2d796f6213be58f67cf687b1f13163e58afb8655fae86344
MD5 448bb3d89a4d31f68d9f090dd50a3432
BLAKE2b-256 3788c411cd43db2f03870aa26361d7079f7c20b74e958525ec4bcb45c0acb7be

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.12.0-cp315-cp315-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.12.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3560d1d0e08d5624477a3ebbea3ea9ddcc0c792b8ae05de838b60ab77844a61
MD5 58418e0959d96f83551c42fb025b6509
BLAKE2b-256 a2c431337ff8c2d2ee861b62ccfbd55acd81e3b71e12a91a4a1a4f1f493afee6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bfe682975fb7290d0ee911fefb8faa3fb801ec2d7fc6451ad135918a11106901
MD5 6a7158aabbb0418f972c079ce35cbb78
BLAKE2b-256 dc12f0f82ef1122ca548309d2aa2ae08bde29d3d305d40d4991436544802ef79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f49c27e63248f94c870dc377e2dbb794cdb10be652c353e82c8294601469f925
MD5 5d390d813f7316432e8b91358b0e3855
BLAKE2b-256 fb79a3b253919e5e7f9048550d71b06f75a34da81c40bd56a4796187a8e7cfa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47eb318332ceb9e4a31f7753f7af52ef8dbf2d9893ac5eb4025ada1ea6303f85
MD5 d2ac3155e30825e694fbef73a76c8532
BLAKE2b-256 aa266107564ee215c52782bbb524868bc44c3cce2cda63cc95631fb929919846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 76310ba3ad24f48777ef2b901826ed7ccb0e0d57d34bf8edd0a3556c5c668727
MD5 2c98250ece6a5f8dfd57251efd12f036
BLAKE2b-256 e8ce41e6c4978b1c09b7465dcc067c4d241a91c095be7598dbd1cae93ccffa23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 21791e9a58ffe437cf82544e2b82c6b7ce2d65b08ad52ab6432c11e06ee9fce9
MD5 e1c0c6d07f2cc8b09232215f2cf5094a
BLAKE2b-256 a311a3bca25aae97f47dabae6d0abad09bbee7d387ea1ffe3cc52305dd5e80e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 63f00bbe9c267281e77ce3cb9325b28e64f0f007d020d967a6ea9d789a0a1236
MD5 57337deac9acc4142607137464af3a7c
BLAKE2b-256 86374912be232deb8ed61b32297471134c917b7736c1f236a1071f0a67ee5077

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 38de4c648f9131c0d59e2719aaff28b85cc007ac6c3d30132c3be18caad03367
MD5 333b08ac3fa195a4359b10c6cb0cb8d9
BLAKE2b-256 2986388d6d323b52a9a661be81a5ef66edd5e859c47811d45e158a92a3b77185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ecff9a3b32c937a7da05b12ed3aa4b898ad1d2245a78c6c42be869f06b07338
MD5 b3b3b368627dbd1b3b112f16a701175b
BLAKE2b-256 945c693f508ddb1a79d57d1b7906c8817ed45ae1307d60ee2223a03a32413f80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19e02c1abe9f6a9021f8a3a5d7cccbbe15aae92a94a78c3a84c37d958f4c2272
MD5 282c14c64b1646bdbe7affc2b7f802f3
BLAKE2b-256 e68a86b5d624296565b0ee9a5ad5840964f3773f36e32fdabab6a9a2b78a5e0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a360570b2c76dfe32acd718d397cb6b733e53cd1164a744cbb0acafafe1ca2d1
MD5 68a8252de02f2df367cbbd07c7034b8f
BLAKE2b-256 4ab3cd5b7117441ad7ec1571355e986b4a2a2007c6916fb52b65c823dca861b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fc8279ebd0fa260b1a1088d71e7512d83c330c5dd0216ca46fc7db97d420214
MD5 4af42f57e237f456bb14ad39cc9d8908
BLAKE2b-256 637bc276de090729938f32753d034f925f2460206d80044781253ef2c26c5ee6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 555409b9532399efbfe5f8a9700a3385859f579804b22f75fff3d8b7abf39a1f
MD5 5880e7ea081e18c3d0f4564017818ebf
BLAKE2b-256 210307d55900fb0bf4f3ec6c17504a601e6de3c651fe62369b8b777e9b20c901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6e72217cc0dbf239285e3265cdf02d607c8523cf3bdbd04416c7f116f0c6330c
MD5 66efdb5eebfbba3044e2948af89b6297
BLAKE2b-256 7732edfa383b5b1bccbeb1ef09a9dc8cccadc2cbabb8842d3f92a10f9d79c7fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c90ba5f7c08b5bfbd549e882dc6f7931984e7a63b6b65bc915193ee714507baa
MD5 d03f8dd4e0cb3b94d00e201329d86cbf
BLAKE2b-256 19dc8a5e7cdc7e16c06b51da916cc3bd8473f5931142021e102a3ad8d0488d7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed445034018ec213e1b94416ca14550e69ddc5852a09ed915878266708e8e9b2
MD5 07c1f4e40b9bb17310e7af4334ddecea
BLAKE2b-256 46b72c55007cdadf97c7370d30ba16ebcb6ae6ee0432a4c337ea1be36fc180f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f372039f04830886476e03cdf769d0431469d4566457d1034273c5c8b1a6ae4f
MD5 10038563cd60fffee649301d24a1c3e6
BLAKE2b-256 0d8d47a84c7c3ee9ab9204983d48bac99967b9a407dda577e008e3ec573525e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cc364dc299d0a90f36c5eed436d696578aba7d0a1d8b3a7d78678d21ea8725b2
MD5 bfcf1581c72b2815a6b62289f9aec246
BLAKE2b-256 8ca4b1b865399caefb9a6cf794c27bb5218ae46cb37b14b14bcaac435f004197

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 66cd3993d85e6a888b4115296b45306f269d0343abe4811fc9ad7c1e7f0dfcfc
MD5 b7f9ce8ebe5469a80fb42d5f9ada4f75
BLAKE2b-256 f48478af324ccc3ce6cf0ee034ac304fcee25fbe28e8c9a2e248980ecb0c79f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d90a01858140fe95271d5d1b4031208f8e8972df2da0ed4111d1d7b9a835e14e
MD5 6861cf6ffee9ae4a3af328b7e5334eef
BLAKE2b-256 c999c34a0add6a2b1673e6360ca8a3f5f54b0c827e2f1f1c3fdd2dca95a6efbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a9fef7aba0540c75b27906376a61f9520ceec164e591b96d7abf51f2e5aee0b
MD5 47ca99d6c1e6d2937cfdb89345eca25b
BLAKE2b-256 26329a525b8b0aecbe02379cd8b124002956480a91f38220032007f1ef23a200

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d28442f30448cd16ee7e8ee16cbf3d76a69bf57dbeff08177a293969e74c2b5b
MD5 6fa42b4b64812689e39360338f6a60e8
BLAKE2b-256 5702eafe75b1d91e95204649a82d506cf18a122cfde2b4954c0728661a516f79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dedc3b5656eda6d6e0d1341b03a4848913511e3dc1f430666be28fec435e95a0
MD5 93f9804dd8740a5cfecc9922f784cff6
BLAKE2b-256 14d90614a1c903519832671d6bd1634b0f7ff39153c5b8e08c5e2361edad0211

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0911b76861e96f1c791b1342005de92112c503c312e3cff16448aa01e505492e
MD5 61ccee796516f91ebc7ea7fbdadd40b8
BLAKE2b-256 6c46d9ce6a0b81323f9e0fe14b743de65e8132a3edb619cf8bbcf599984bc3ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d98e32b55e61d62cd5982415bd009406daad8d2c5a46b7bcba3bdcd168b4d2c9
MD5 600f9e0641a25745d9a394a186a7a6ec
BLAKE2b-256 e9d65363d900c95c60a42851ffcf64f0b2839bd7fd0da5bf7bffe3d00ac4bf01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cc8c4db99181984b9ef15a630572b9e0444007d6eb0e05feeaca9fee9fb2cff2
MD5 61d49c14a520769731cd44a12e19e12d
BLAKE2b-256 b44b428907c653710afbd9865c6f90c1dbaa0a879d34c9e722735bb72ac0c6fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2fd1291687fb98e1ad22d27c0ec715d63e8adeb6e6e932f52800143ddf52d1ca
MD5 2aaf03d07e738d2402abfbf4153ce07e
BLAKE2b-256 9f1bc6845d3223cfbea8da7bf2514a832b5e7e7fba98153d3797405d3cdfa574

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 44ad3af83072225755e44fc3caf28ce61d6efa72c0ffa6dff25c7c5aecbe50c9
MD5 08f5b8134e2c60f6c3b4c5c66b7e53ba
BLAKE2b-256 3bd22aa47bf37ff449e9610a9782cb59d48483ed6447dd7900cd96359a872038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5e530133409886d29d67b7a53aaf722a4d76c599dd570caee6e527a558774ab7
MD5 91dded16ed8c38c6ba5a582586fbbfa5
BLAKE2b-256 d9b644260c660216209a3d74459441a4c852e3569cfe1a52133d0fa8772b6f4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47f93679f29922e0fd2432aacc9403a4a9776a422dd7bc3f2d2370e35f8d3e0d
MD5 07b1b28449f049a2a38ec8e0d17bc93d
BLAKE2b-256 bf04da5f63af0193af49a23a5919eca54e3368c85913caec7f9ff8e72871c10c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06f19913ea3d65793d6cf739888a3b0ff7fa6f8b4a6c517568cbba7d71b33f1a
MD5 e797b65a156b392c2905f674f74086a1
BLAKE2b-256 51d709bf047557de0fd854744264b30462bac847dffa9e7f5ce0df744ecd473f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48a403c8a242643ba044a22fc9b5e442334328c321f5ff02d0afa74b2e3df592
MD5 9e00d0630a5a009336e842bed86e5410
BLAKE2b-256 e841874de401083e15ce67d9eb15f2a335de66688ffaa1ed7844e425c3ec10bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b658fdde6887eac56556b66e9beb5984f67554832484760e8f68b7e343f6cc3
MD5 cb78a50f6d86ea8a7608febbe3f5c892
BLAKE2b-256 b3c783bd5be433a0923e67b781b125249566a37435e871f1ddc1401b54bf8a03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 beb61bad65f2bca4885f115c0ec500d3fe2eecb4793a8ed356df885bffe28f1e
MD5 d3a151b2a2545b4e5b36454d3785bb11
BLAKE2b-256 c43cdab8e9746519a3321ce225dddca2e87ea5281f04f66053c7c942eea7c11e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d7b939a71678da39287139b5b8bd92fb219f3fd55f9d62c9be75f1e6afd6e4aa
MD5 1e268242c1c43e18bf26e78736ee0418
BLAKE2b-256 95d75fb439843d25972cf7430fe899ef44acf3df5435ee9143b4c8053c561fab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f7c112f32a71b40d762ed18edfacc380e52263d786210f43b1fe1f422b3f1e13
MD5 fb6142c94f7262e6411ca31e48b15f5b
BLAKE2b-256 19efc16ee1963575fd18d933573f4f2f873514d291e24fea3ddc9706ea557400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 22dcf7df6b0a569157361450aab7ed8d4245d9e117a97bac81bf8ca5f3072fdf
MD5 eb551478521fd1564fd50b653e682072
BLAKE2b-256 d677dcce4125b4d481ad72ce2a859ca2a6a67dd5fd14878c05ae783ed419b5e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e27d752950a18ad260cfe39cd764655bb7618652b96084bb851414ebdff013ee
MD5 fbd687c55aba8588cfcee14b040c35ee
BLAKE2b-256 c8cb21a4ccd1bf94c5be53775c2bb75a7085d1ee105ca41e5deda6d20d176828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 410a7b8f3911253aeb692921ef6bc69d0b8705680dd6dbf0a3af2fda056e3555
MD5 90f9d1da6992cf452d14feeb7b972220
BLAKE2b-256 0dc203925c2bb214b96686a262416541d16e819790ec1e5fbf15768a05540473

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f15822c6ba6ef1946552e9fb7608ad6d3b27486735087791184cb1ab7626a62
MD5 94945d7f0d89e3f7d0469c34e4594ed7
BLAKE2b-256 68a564289757485b61252c405e0c2447af65a8e496b4276002defbb275847453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7642813a83a6174aa8e801397809f24a61246d3337a0bad43687c08805815b33
MD5 fafb1c89096e85c9f2483e41d73a5931
BLAKE2b-256 ed86a8aa3f067b97cb297051c0d6d36b114d49e4ced4ab7476e3fcdf887c54ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6f45be30ae0a926d47e3ca45e88f72712b81c2d3b37716c93804de0c92309105
MD5 b7efecc94a02c3a4f2c6c06abbc329ef
BLAKE2b-256 038d3815bc9823e2d5faaac3acdf04905646f705c0c3943cdf8e3c71a0ff6c1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a259efb5002b34ec9ac3b25fc2ace3eeb627c41c62a1806647615babbadd2ec1
MD5 2a917de339cdbdedc4a5613b738b3fb8
BLAKE2b-256 f41bf7ff85ae391a1e84409efb0f11f44707afff93c5785662e0524e47e2e0ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3d508c9f85b46c8a0c723a0074240e64510064bfcc1a396a4b99843ae7a2bc1d
MD5 a59471d9e7e630763cc0bef996945e45
BLAKE2b-256 c05da6298cae7b701d815585569d6e122b331b32d8ab3262e00e29d48cdd082b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 71d759e3b223d13990684a17af8bcd3dabaea581139cef0eda4f503ad7e90cfd
MD5 0c94638caeff97a7d0a01556a2ea2756
BLAKE2b-256 2dcdba1e105e6afac219f9538b8387bf0aaa31740e8af6e701a39b797cac9357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e0543ec6cb78f245add4f20159234655a0e7a917b9504351e8716ebe383f674
MD5 f4e1edcd456e0342d66a9ba10febdc1e
BLAKE2b-256 45dd6429c5fd3e487a37ab63bab96d757b0b2deec31a272ff123a9549cd2973a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40cc1337c25d3413a73ccfe94d9d32400169a616dad3c3e2ce520c2a7737a4e3
MD5 ea11d3c27fa96f2eb0d81f6844000dc8
BLAKE2b-256 1e1a9218fe2f6108aa1c8fe8e5d23003f51eedffbf5f3ac2246d3a359c93ca44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ae73277949dac650ace9b05fc4b44a0432e72480b635e7496bafe8261ae3c2a
MD5 d56eeec9f8ebc7d9ab64944a2c6a7e57
BLAKE2b-256 a09ff7790bd8ef73629a73fa52517cf44310ca893f5378b5ee3085f82015802c

See more details on using hashes here.

Provenance

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