Skip to main content

A SQL fingerprinter.

Project description

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

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

A quick example:

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

Improve your Django and Git skills with my books.


Installation

With pip:

python -m pip install sql-impressao

Python 3.9 to 3.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.9.0.tar.gz (15.7 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.9.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.9.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.9.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sql_impressao-1.9.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.9.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.9.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sql_impressao-1.9.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.9.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sql_impressao-1.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.9.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sql_impressao-1.9.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.9.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.9.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

sql_impressao-1.9.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

sql_impressao-1.9.0-cp313-cp313t-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

sql_impressao-1.9.0-cp313-cp313t-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

sql_impressao-1.9.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.9.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

sql_impressao-1.9.0-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

sql_impressao-1.9.0-cp313-cp313-win32.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86

sql_impressao-1.9.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

sql_impressao-1.9.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

sql_impressao-1.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sql_impressao-1.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sql_impressao-1.9.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

sql_impressao-1.9.0-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sql_impressao-1.9.0-cp313-cp313-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sql_impressao-1.9.0-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

sql_impressao-1.9.0-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86

sql_impressao-1.9.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

sql_impressao-1.9.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

sql_impressao-1.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sql_impressao-1.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sql_impressao-1.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

sql_impressao-1.9.0-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sql_impressao-1.9.0-cp312-cp312-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sql_impressao-1.9.0-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

sql_impressao-1.9.0-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86

sql_impressao-1.9.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

sql_impressao-1.9.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

sql_impressao-1.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sql_impressao-1.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sql_impressao-1.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

sql_impressao-1.9.0-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sql_impressao-1.9.0-cp311-cp311-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sql_impressao-1.9.0-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

sql_impressao-1.9.0-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86

sql_impressao-1.9.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

sql_impressao-1.9.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

sql_impressao-1.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sql_impressao-1.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sql_impressao-1.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

sql_impressao-1.9.0-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

sql_impressao-1.9.0-cp39-cp39-win32.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86

sql_impressao-1.9.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

sql_impressao-1.9.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

sql_impressao-1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sql_impressao-1.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sql_impressao-1.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: sql_impressao-1.9.0.tar.gz
  • Upload date:
  • Size: 15.7 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.9.0.tar.gz
Algorithm Hash digest
SHA256 606a803314237fe7b9094d052c679d42dd0dcdc06beedac4581da28cdae98fb2
MD5 2eccae1902758e52f8d49d7527f58eab
BLAKE2b-256 968d311a0c3a27ca8c7168dc1749985f99e37e2ef2aab0f07939b787391d50a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f39415a63e59c6816eb5fc4ea2131d3a6a46f86a3e20321537f1a853e4c9c0f2
MD5 4d998172eeef6d49ee3f3acfd11756b2
BLAKE2b-256 8502dc5477ffdd6931d7e7f67c4e67069cde544a57b21ea3d6341228796d36db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 953bb0d0f9b7d5fc8f54a1da422e79d162c1304b83551fdc0f7dd348ffb6958c
MD5 4529db252efb907b3f870d5eb5a25fba
BLAKE2b-256 f5bc9248c6e0b5cc36d2e1cd0998642f5922fc77bbf3ecdac0d888a056c0fed0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc073d46cb1540443646165e2d1f2c700e9bb1344b2959845d6a787551ceded2
MD5 7421233af71bd73b6d851e5796977b96
BLAKE2b-256 6466978ba488e1d9c934824913a5b0086b13e9d9f3f2c3c6d1fe6d263db5ebfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c3f2f328e2da6764fab1edec21f3d4f1b8bc904dd46839eb04af325ff43348a7
MD5 ee47eb451711e772b6dee04492c9d584
BLAKE2b-256 c70a8036ab2e2fcba2d73f36b28ecb459e6db083250811749a6a3eca032a3c35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6be10617c44703e3305be9cbaebae0412ff24f0839b59e38821c020f364e527c
MD5 deb46e151c1c5c2319314f6384fc3094
BLAKE2b-256 ab3a8ce9fd7bfd82434872aa7bd749428cdbc993d6a79194761f924b132cf0c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d575ad905e9f380ba8329767cc2a37a1dd7adde1ba44cccbd79c23ff445a2fe
MD5 71f73d556d10f21fc7254f706da026d4
BLAKE2b-256 0cb2d59e9085ea70a8d3fe4864afdcc13fa19324548a383f8e51127098856f69

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6f7af9dfcb00ff542368933c7f92a0cd66732b901778c7f00c8020d4779cef38
MD5 e1ca271998c9a6a4788a3fe01a344227
BLAKE2b-256 d709db9db951f184d095e29747c7f6e68dc815ec51580da96e2c283fb0d3a999

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3339348960a6a3d1cdf04ec2663f869a3d2d175320d6f4122761c4a4169cd68d
MD5 c7e59d2ec48717a26feef69a0a3fe109
BLAKE2b-256 156542c81a33a5313ceac3415f0299b816b9a62c7a9ffa44b662de9464e5577a

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f08c3624e8b7801d079caa09c7f9ed6ebb5d1684f65a32ac867c92352f8b87a
MD5 39b95b19fea9d11acff82f819f1b8555
BLAKE2b-256 d326c92454b9d3acacec04b40dbbb3ae91889bdf452a6fe55cb603a299939068

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45fbab4a771e761e3e75634f703a6c4e90a0916266c079a67dc606ba1a3ca6dd
MD5 06b16025b0697ff8256f532c259c400a
BLAKE2b-256 a1c66942f60fdcdb6c21988131680d4b2e7c3421ddf10b9336f1499e5468bfa9

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80c501c88f2e5daa910cf17d82c4622a541851e236089338a29ce06128aaada1
MD5 96fefa0d352f23f94d8228480ed9c35b
BLAKE2b-256 c0bb8d51b222fdd2a6b2b321a87efaf4814258fd46d85cfa8e92fac0f93cad6e

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5adf3e29abe37e54838fafc33167a3138918f64dd288b585b18e0d9587763a90
MD5 db8676664e85a9872d98e334aa866940
BLAKE2b-256 d1120840a446002a3103a4d1d75108889ffe6f3e6b1d8d63051e47983a7ced6a

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 84e46afdfbc5ba539645ec717e9f17413857450cf1d32ea04c7226d15ae2bbf5
MD5 ee0edc3c5059053314a7ca919aeb9495
BLAKE2b-256 47dfc527651499287b41a5e2138bc52273db6efb9c33eff1dd3489c79b2bfabd

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dd8a558ddc1e3d2fdedb7c8f0470b5fe3366823e8ed724af8cf29103d872f42c
MD5 5c67ebcf965dac3880b99bed5b7e4cd7
BLAKE2b-256 0a26af739ba1fe2ca784a12ee9b761a7499e7ce3e6137dd1a6b686f2b79f0664

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 093c111cd689cd6cfa134a4501c1b0002cb584a1c0b63c532b9fb1ffa164a35f
MD5 7f705e369d06f18867ef84449a8b3b9b
BLAKE2b-256 788582ec0b0480e890bb5de38ac7a812dbdbb15be292d4b21ea2bd1fd8df3b9f

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 489d87ad120df8f5f47f75ed5eea1481fa1699ab26d71e79433041d4110e79fe
MD5 80b7b4e5601d51d84772e8f269675dbd
BLAKE2b-256 aed2e97555d3fa5da4e688f3575f75db0eb4fca07c0b9fc6438aba95687ce065

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

Details for the file sql_impressao-1.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0eaaa3517ca1584045156aceccf51c4372bf9a8926c4a44f06ca40833503ed28
MD5 c4eff6dba58fcbade003808b530328df
BLAKE2b-256 9123a64a003a89953411764bc4be0aae1d33aa0b844a0e65a35826c6b560b6a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.9.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.9.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d1ce9da2eff829a7e74b5de9f7274fa6077fc91de37557f0fb6245b8b62fcc85
MD5 f456f78636a9c8c385eb72da39d839eb
BLAKE2b-256 e35953384fa4d79b8598c073eec044f793225d3ac72fe5aa5d254fb11327ea7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.9.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 992190c9bb1f6587588d73e2d96a3b95aff05893f9af64dc499110802ea2a895
MD5 14c9598236bb8eddabebede5eaa23377
BLAKE2b-256 b18276f00079742d9aeb37046716a652b5013e6af0800c2e6089e94c1b2749d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2bf4f92b77bde25a2542f5d610f84297ab214a0881da11b439f579b02fb664bd
MD5 eeb994a4010e2507b2b31e77c96a052c
BLAKE2b-256 9eca12de2d7ee291287ba3af6e6c53472e64df81b8b7ca3a55349da045619055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c489d9c49e5258fd38efa16e509e3d21b337e67f73158361cdac17f54e6f907a
MD5 be26e35c51d2adcdca17ef3c5913ca2e
BLAKE2b-256 d0106fd402f07456d05836e89491df8744afffbbfc3e32dea2875675b5a13ec0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2ad3e680f3f98da159696384889a9639b0f6e4ad65dacacd0a58ace53eb27a3
MD5 c449956c5bb63ab0b0b92873683baa5b
BLAKE2b-256 6f40c55d897b779ace49e0f9a9d1a721b87e326aa54a04b6403b784cc15ef4c0

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d21a467d970caa999ae5570a5bf2d2de5e184bf97487b36a2190f061cb29ffaf
MD5 80b7592d7da5d96c310d9b87ce362abf
BLAKE2b-256 6608caf0c8c7635dcf6c093d5b677e8af1f9291281ae9cf0b903804f31852d68

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b918ccb7dad93dea32929d62868de2dd6a3ee1525977db90868ff5618bec1766
MD5 8cbb177fd30aa8c54887dd4945e6dfb0
BLAKE2b-256 37d15a79e2d426d345a06aadb984b648deedbb8bde89c51f553b47c8b967d676

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e6f459f11c5556a461e6c6b956d01f529ae46dc4cabc2da944effa030c996d64
MD5 71cb03e0a7511f90c6e0b3c93fa5c5f0
BLAKE2b-256 e7b6a6a9748afff77915d2c9623ca1b3c0f03a06d4c0470b9688d7efb67fb2c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5fb93d802620944c4e74a823791ec1919e09a86da9eee066b102486a28213d5e
MD5 d1fd617e6cb8f932964d42155c8c43e8
BLAKE2b-256 148555d1793aba5d2d1b90b33da93df34812d34b1cb2e9f1a8fac5fc2aa8cb16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3407298d999ea8b180095a2b6146b4fae8d371f42f5f7428660d82c7b8e70073
MD5 e66630cf2d49102993df0cbbd8eb0f8a
BLAKE2b-256 afde8b7f5e90be2adc1d68026e7d34d8cf09f64aaf6e9b32f58c133cdd0ac3f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e90578c9ef89f718636e5e6d1adedb6721d103c7f17364ba7cbf85414256fb9
MD5 83da231c0c853ceb03a7f84eacc01d71
BLAKE2b-256 44fa1d3a273edbb5e96b8396088c736a8cc3807bdba7801a069bf3dbdd145a71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2ddb4af4559fde71997a18bb12380dc4b519b173a4712454c3035673aa914b6
MD5 539f06f4d04ceae7b4545768acfd10fb
BLAKE2b-256 63d8e083d9312d30be0e01d7966f77c520b2e5e51eac9c28ef294b0acf0ae286

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b47e80c108ccff95e3e380f2dc017b444f20e47caf4d03ca280a7cdc4fdf1793
MD5 17a27c9b8430a52882ab42828da2ba83
BLAKE2b-256 9e7aead01c68446595eaa807fe3021d03117a4186809be0ebea36399322b1a37

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e19f8512f57687a4dc06a1e1733f9fc6630d3dce56ea5193060814ad86397fe
MD5 05f651e2857e5a610f93ef10a8215178
BLAKE2b-256 33ed1d7d42e8a3e65c1a8c1bbb23b6d18a6ffd632683fc92d47933e4da69e7e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a219e469089cd040242850def52c4ff266c18446e368070f2a7f0722951c6daa
MD5 545e9961344a004a56f08ac1402f528c
BLAKE2b-256 b7479a09a4a97e10fe4cfe9e68e80266854aa2f4f98dad3338877853f925e6e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c1eb2eb157f50e88d94b4a0ce947b05d28b6fad92fec2c4c324bb2efaf3edebc
MD5 2f8ff5422dfe2d030c25c89406936880
BLAKE2b-256 d4dc3258085a958e4db452a12383092dd2047613998e4be7fc287caca819240f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for sql_impressao-1.9.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0f7781808b97d772b7208369a3d8d990b9e935377f2e322be7ef6f14e018e0cc
MD5 46165da1139cfabeeb4235ef07c45ab1
BLAKE2b-256 c430cef4612c54b9291d63cf8e7a5dbe514c79bede20f1cd05faa6809d40eee2

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 72194d31af5bab36393cccb1db42a48f93143f0ef40dcad72980d19cbc611b67
MD5 41066b1193151101d97ac7a859967468
BLAKE2b-256 2cbd1b2c139d278a7cc69e9f28f6a01f88a97ee575ec53a4d57951456db4a402

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6fb22447dab412cdcd1a48a8713ad0a1838b400a2ad4296dbdea24cf56bf499f
MD5 46fd00546fef15b52c378e8e657ce1e2
BLAKE2b-256 52ffdc6c94cd5412b520e6a1b15e4d9f0bbc5b173fa2805b191ca00503414b46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75a52d95f44661a66a92638808127b2460ad9837109c0e8c0cb119a8b39ad43f
MD5 fd3c127eaa6a6abd3df2a44ece9287e2
BLAKE2b-256 8ce430413acf36c46c1dabcb8fe3f38afd6b3e8bb6e69078ee9dff87650e476a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5df86b61791d1a075ca63e6c3e03eec909da093e3a647c42b188b4caf1d9e3a
MD5 729cfa93fe560523d770e935a30f2790
BLAKE2b-256 e789955b12e5e4eba0b215e8a2b40945a884c59a7bfeaf500d683cf2c272ad7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74c8a1481439f86d40a5e6822bbf0e687b861e17d754038a7af277aecb060aaf
MD5 876cf570228f7828e6d1725068dffd44
BLAKE2b-256 48c4c7e993fe6dbde7062f2faa01de3324214a9d1c155ff05842eb44b7b182d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 57e90d26e2a4a6434ae7db1f34be3b6b2bdb39b79adddedeeccf6071496c569e
MD5 7af533888ccbb81a3a2f324ca131715f
BLAKE2b-256 381b5333fc75efb6eb71329157100aad64b9655c347a39644505a326cce8f616

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec403f0eba3fffa04e0f8e18adf478c4b3099a37e019f325c5bfeb50f2fd6577
MD5 115e55c7df0349e0aa1c2b9c39ce9d6c
BLAKE2b-256 edf5b2481c31235f635730f94f80e254d2d6411eefacffcaa1d91ee96424848f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f665245ddcc7bc547864d9b01af325d60fd9a55a0745f083d1fe51d7db4f2bf4
MD5 bf86fba79712fb864c5bc66661fa12b2
BLAKE2b-256 7ca2f85ee737945a50c57a34d5feb52e996a2a9d5e9e5e6d6a4223719b560581

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6b21d96e3fdd3a1a98457cb029fcd4f9e20f2df0642c0f3c6cbdc43975e3b763
MD5 ba7aa97777e6ec69d584a38c6e848b41
BLAKE2b-256 88673cbea1deb0517887452dc483681178fa7ca6be8abd0d740c261e35b08862

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for sql_impressao-1.9.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 921e5cc003e20275f59b1621e792c0e61c17cdb1dddfc108d217f39d9297726c
MD5 4c1151b246fb1e0004dbf7eb5d939009
BLAKE2b-256 aa8013479c79a1ef7ced0572897d67372da50a270e97424bcdeedaf35d15d1a9

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5da2211b04196b2b6b486a49fdc81b213f7adcf45d43655f1b63bf0557ac1b46
MD5 a0e0c6e1bb31c19d613ca164a3be376c
BLAKE2b-256 fbb046a33787639bb89313b15acf6ee039e7ab58f23656b15d0efaeef5a58253

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2c0ba9f18e5c5f7e9b275896671749a5a7db5a5b6de8f983ec52252fa60a381c
MD5 2ac37d568feca8ce3af72f0c8a4e0fbc
BLAKE2b-256 0dcce7d3b0680b73849c51f041de8294d8a7343a3b29ce67d6001dcc15e0869d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5dad17d014080c4b2b812938275ce2e412c25a652d05d48fc739b8747117eada
MD5 fd1d03b2d2cfde6985941a68f30db910
BLAKE2b-256 eee39dc0b06b7016d91a902c16bd8a2e6b68f0620b086c3d41419ab1f737ec38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67dbe275327bb5b21e492e2f45e757a95e36895350bb4e7e280767173e16d74b
MD5 746519282b8b4ab5fb6917bc32496a2b
BLAKE2b-256 273a4bd4c3e1c0f9789cb35f70f2b5c58a1c705edfdd200ce6ff3d59897f2b4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56f553640dbf09722af446eae6a749252f8f047b3f98e105b296431aea0a8ad8
MD5 7507fce36a286b40d938ae7dd75c50c0
BLAKE2b-256 9fd3efb8a367c7f5fc4a8527d12882d680a0946b8809f23fc32688264cb0576a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9fba6a318c4b6f440be152269fe1d07ad0a8fc2f73d0a02ef99843c4d776c0fc
MD5 337d22ab3b08732dba0f8195f5ccdc6e
BLAKE2b-256 27d6cf7651169a300a661099283dec22f1a4c08585198919d7444772a9096615

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60a6d209779093f1f8568a2704872f61a689c6b17dc2c8f6ff1ac7088d76b34b
MD5 a32b1ad743d9dec721cd1def2268e69f
BLAKE2b-256 22eb40ce90a863c2981a12371c0154d1aa3c036a2c076ad409603a9fb68cd3b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1abe1622d1384f0d63e626e6258c7cd1562d6296a84ce27e83c756f6701a51be
MD5 3a409520e40a63df0363f7f7f30a7cbe
BLAKE2b-256 77b607f185313608554ebf2a25313ec52219a09abb539516242d7132605c297c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fbf85c8471f052ff98b4f193a0e108363c15c45da4ff93dca563dbd1020a0f50
MD5 b68a9a318be739c11df29cd0dc72c0f7
BLAKE2b-256 84f56981463fd07817ee357a5bf4faa3935d4c9b141f925dcb4eaab6e5ab7289

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for sql_impressao-1.9.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 34af24782ac9f87873803f344ea7e2d79f2d2d720f13057e58944b99837c97ce
MD5 e8cc1b56b89ea69bb1a546d0b24e7ff8
BLAKE2b-256 9077f3c538c7fb19cb66bac8bd135137ecd54f359db57977df384e0c71268bdb

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f8e7a7fafaf4201eb1b06bfa7b62c0c0571fa0ff9acf5934a59e9a3fc2352417
MD5 2a7db89dc0307dd2cf3398165b621ff2
BLAKE2b-256 711093ba586a7af9125214f2be190c531a45c480da09dbc576f5f780c1217023

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cdff579f61c92567f1934df0076d315119c7fc011fea9681513a12c11c053a1f
MD5 c86e3ccd191ed4423ffc2043891aa35f
BLAKE2b-256 8f477a798cee21924448f1264a9cbd22bfb3d1237dada5f44dc46fb96729f44a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1aba472289e40664b88c8058014700082ca6b9d2a198d7a10e3ffcee56436f01
MD5 a08c3356dc892e2fd92cbfddb9847f31
BLAKE2b-256 2c0365e25c446ce1487a882648a3f1927d189bea0d0a40ca6301ed55994085c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ececac4bf968508a4794b69f74c710f4e64f996fc7d09d21f4d7cb4d7dac547
MD5 e0b85f868c900a078e59f9569cdfcb85
BLAKE2b-256 5907016c27b0cd3f89e45e0ff01239a2624fddc2aff1d0afe8613635c9f139d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ccfc925cefcacfcbb095ea2033d27b6b08ce89bdaa9ad9947a3304a77b0a1e5
MD5 0fdb75a4864eb39cb5e7bc55daaf78f4
BLAKE2b-256 1f988e6ac8fd60248a89f0c8060600e9b0100b35e63e1abd10f4aebddbd9ecb9

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 770e7491fc31e544caefc195aaa300558d6eb4088cb17d28e556e08472934877
MD5 e813d9ee45584988019efd923b58937d
BLAKE2b-256 11d99fbbc0889ff60ef116500f6bfd46d47318c34a6be8b8f5685307963d58f9

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9a873df809d9651c3a2e824e869489bde18b7fa8bc32961fa28e71ea3e333aa2
MD5 e868a12cc36c88997404a7a1a453ff70
BLAKE2b-256 c17a3fd9d0ae292943c144d0f1a759a69769af8fe09800623b5e611f37c446cb

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

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

File hashes

Hashes for sql_impressao-1.9.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 be2c53aa585b88367545779c475d7f5a1ebbbd8450d3c2618b72c1ebde8cafa8
MD5 a8ee8e2d54afa70a7092bc9ae317e9fe
BLAKE2b-256 f93a741807593b6a4ce5e1b856abbbe6fff69bf0ef2c65305bf256a1e15292ac

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 650e3211a5d35a1729fac4cc5a3c4d6416fbb8382643c74fd52d84cc10346b66
MD5 defd087794741b795e91f3440b5d131d
BLAKE2b-256 bdc2f378ea5dc8b7888d040cd5d714db404254e441a541535a50fb11fc82d550

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 01af24177b035a245ad8f615c6d430a286731b11030c1f76817334b9d1a88a47
MD5 87b1f1538edb8e8931ea1eb075f084fa
BLAKE2b-256 dc9eb2a5822e2649c711229c787911f311118b9701b7e8a9bfcda5a332ee868f

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c7fd33b8634d852be77e385e30c5d7346dab9aec2949a5112ac03cb529ac10f
MD5 69e71837717e610188f4f1ffe8678102
BLAKE2b-256 b1a451a43fd09ee17f33b76f1b5b78328ca642e835ab7b6792772cb98d39e1b2

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e7a368fd06589599fd2f8f96d2787b1869263916c7af8f8c9ec55a6bb951610
MD5 2e1d100e07dc234750b294bc54c55fc4
BLAKE2b-256 098ac32e3e3a5cc0208156be0ba45b30370a4b49b157712dd88d660c6174da8a

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5deda6abee98e5b3dbd9ebb2edacdaae5d8f5e44cddd9a6e21de3aba6139416
MD5 569a0cb6324a9538b66ad09e6a6ed68c
BLAKE2b-256 101b99000b2a8d7f176794216e60e71353230876429689a2f17f1a1a97cbb1d3

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

File details

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

File metadata

File hashes

Hashes for sql_impressao-1.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 da1de8a03c624e2ef8a52012e1600a8db4c54680e938215251c6e0a751c7937e
MD5 99005b6b681e88b59f84fe67bb0ff499
BLAKE2b-256 8acd7f85e0f6ca886ffd94fb241224dbcc42817c3e8a6448081004f60985c2af

See more details on using hashes here.

Provenance

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

Publisher: main.yml on adamchainz/sql-impressao

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page