Skip to main content

A SQL fingerprinter.

Project description

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

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

A quick example:

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

Improve your Django and Git skills with my books.


Installation

With pip:

python -m pip install sql-impressao

Python 3.9 to 3.13 supported.

Usage

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

Generate the fingerprint for a single SQL string.

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

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

  • generic - the default, a generic SQL dialect.

  • mysql - MySQL dialect.

  • postgresql or postgres - PostgreSQL dialect.

  • sqlite - SQLite dialect.

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

Example:

from sql_impressao import fingerprint_one

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

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

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

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

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

Example:

from sql_impressao import fingerprint_many

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sql_impressao-1.8.0.tar.gz (15.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.8.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.8.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.8.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.8.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.8.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.8.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.8.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.8.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.8.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.8.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.8.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.8.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.8.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.8.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.8.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.8.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.8.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.8.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.8.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.8.0-cp313-cp313t-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

sql_impressao-1.8.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.8.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.8.0-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

sql_impressao-1.8.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.8.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

sql_impressao-1.8.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.8.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.8.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.8.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.8.0-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sql_impressao-1.8.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.8.0-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

sql_impressao-1.8.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.8.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

sql_impressao-1.8.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.8.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.8.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.8.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.8.0-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sql_impressao-1.8.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.8.0-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

sql_impressao-1.8.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.8.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

sql_impressao-1.8.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.8.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.8.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.8.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.8.0-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sql_impressao-1.8.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.8.0-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

sql_impressao-1.8.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.8.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

sql_impressao-1.8.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.8.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.8.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.8.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.8.0-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

sql_impressao-1.8.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.8.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

sql_impressao-1.8.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.8.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.8.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.8.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.8.0.tar.gz.

File metadata

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

File hashes

Hashes for sql_impressao-1.8.0.tar.gz
Algorithm Hash digest
SHA256 f68427b922709e4dbc21328f05e9bd3f77993cc02a6931305a86344453dbe0ef
MD5 f6fbe99b7a19810fd68c9d49fe5a97a2
BLAKE2b-256 2ed79e0549c150172f7b1c00c064eb4fbf774ae8dd50fd51673a4a7da6044117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f6934274a3200c58dd76e9b7a56ddf2f10eee9fca2fd05bee8f306de7e4cec3c
MD5 c2118ca1bd5ac775f8c4a2046f260cff
BLAKE2b-256 8dd56bc6ace45a1a1c38af271c8fef3e9ed1ef69eded2bab14357b6e1a0034db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f8e90ad7e1c4d8ac0981ac713b3e6f5d310ee053f640c339e51af5a134b93e35
MD5 3b8647c4649b2a79bbabde60027d7b59
BLAKE2b-256 440a4c71dcf671c52d3f0db1d7dc9012037e5fa63fd2480e10778161a5687910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db76a1335f02f898e73ee74eb210a489b7b0e92605f206656f005cb3628bf27d
MD5 0e92bb6e08abf889e241b34dcc41a879
BLAKE2b-256 b96730eb9f16617a6b5e938177ccb58c643fbac1990620335c66df3ffeee5158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8877c321519780c1b888337ad9af5b9dba3eedcc187e39c7150343a90ad9fc6
MD5 d3238f9745de228ecb1b13741aa604bd
BLAKE2b-256 abb53c7589828cc0abcc032f50dd1e82f1d6993f54a880984cea33ab9ecc5f2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 043d4cfba819bfff656378d3c21913286f1c0e7e05f8ca2e9eaa51dcf4f6986e
MD5 a517f34c730a6c5f8250de1cefb83290
BLAKE2b-256 1fb187d7667186196500da69613c1d1273c75a1bcf34e78dcc556d49ff42243f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 61d63d14956280e91a450d1c4241c8dc7a9536459550ad753a97b8ca474231cc
MD5 9d1490689689613b9a0eebc86ecb0cb5
BLAKE2b-256 c717e101da23b785e94cb0d86c0efa07a31ff993d48ffb638066d72ea1eb4d9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4c841997d8f55e17e10bab8117e354a5283dfee8dd7da974b39520b569ae8d3a
MD5 2dee2f2d90b63a50492c21d9e90d6c7b
BLAKE2b-256 ff3e8c744a1f1c81d4b338a254af75eaf3bfb68777d2fc05c8fbc091f01de290

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 95694f02bb03de375d39bd364091570eb8c1f6559994e0e1be158abba615aff2
MD5 1d7002a5feef52d1dbfc93c5b0b73945
BLAKE2b-256 39d64ed84f5c6a91bad5e25d063dbf6e87ec9613f919c757ff1352539b5106c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a49b86c52195510888964c4f09dbdf5a6f6de007a736258d8e44f13c54d3e457
MD5 28f060d982020ac63bb29679f8cdad1b
BLAKE2b-256 ad543c12a06391ec52ab43b90507862bf2a75beb80484e3295408cabf5863dbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b67f6df98c1f653afedd42088dfabc83a7b91d628b721d9e8307cf39a22af5f
MD5 41c7c277c3aacc8af851482a46d6cb9a
BLAKE2b-256 3ec05b68c20ca88e66c49f17faac6ecf638b0bb9bddb31701ecb31cf4cea6e34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8c493bf5d78217686e95e3d792c3903156889103198549e0073945444bf44a5
MD5 cc8e70158233be75a49b09ebf4b1831e
BLAKE2b-256 80c44714996695301d34d4c4fc5542c9bef979d273688b423f8d64ec31a89a84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f970628a468146bc86fd1534e1c80ae6862c3e44b4fd29e4bce513a251eb4b90
MD5 a7065feaaf54a3381a0a753819d465fb
BLAKE2b-256 2da8af2a4d601a915ef0bdf33026dd9936eba0b028948f8b4c11a92d7a17796a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f3b78f0eed9cbcd6b0223724533796556477581c4458b87c6a1db21a9bab3f87
MD5 25fcf06b1a7723cfdd5851f82c42b37a
BLAKE2b-256 6fab2291f649793751962043d7845977363532507fb6444f302c2b17290004c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 79a3bb727597abb30e71a373c4cd39d5aaaa6563153e5d290ec479595f304fdb
MD5 ede675ca5b50c7d1501696ebb4ea670d
BLAKE2b-256 b0b19d990fd77848ea55a38ac63a71ab4a73a3c28207d939a405c1c0d875a6e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a6c5c516a9a345d953561c765f1eda40bdb7819a2c2d42a8c474acff93db71c
MD5 61b1be3739a51e6424ba2ecb1684b7ad
BLAKE2b-256 c9ee52b300b86d94f834571d7a716e6bdcf6b3b759e11e24f80c22225d513ed6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5766be1fa7908eb48762b41a36fe0514a25c95325257feb03164ef9c60b28ab8
MD5 fc2966373e980cf374b42d5b63c0dcf4
BLAKE2b-256 5718f50bcd787ecf3b5c35b28f437bc52c710be07d41d4e66a1175879ae0e0da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ec5bfb1951efc9e92872d5c74320510da98262ad2c7b1381a0bee2c70d78431
MD5 115a0a75b2b9f7b49bf5e74edf0695b2
BLAKE2b-256 782f96c693a258e32c9df54baa6a77a1ff40551981b45b8bd74b173a16262e61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9b9ace655b23ffe83e9cb6ccb48ddb29766ce7aa436caffe59c504dcb60b99db
MD5 9ca557e9a800701212952f780a02df34
BLAKE2b-256 1a1ce01f1ccf8d2ae4f620a702872716dfe2e48ce4a5c0eb4204f8fc17ce5381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2381a711801d3a66226865f817a2a044a2175252849946e6bd4dcd15bdc0d363
MD5 8ed848cf4d1d42390bb20ee4ad1461d9
BLAKE2b-256 32f45b8e5ac8983e0082257bbb0a3b509af292d07966191315ad6afcdfdac53e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ab83975217e9bd9d7d1e159fd9c17fdb458c4a34d13f8e4b22bd438d2679a215
MD5 4c13354bf9113132be3416820517eb5b
BLAKE2b-256 20203b7934d6c6e39768f260e3d7c21e0f696b4b763104815d20233e5852039e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9aefa1f03471bd0512a7e59a38071abeb5e69ab5888dee27792385eff58326f
MD5 cb6121205b4e98a901cf1d2e99f7d506
BLAKE2b-256 bc5ebe091d625becd10ae4e3daea6aa11a913b77825468f49354106ceea3e7af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a74a88e42769c57cc916bcaa034240bff245cb31125d3813d295c361eb1c128
MD5 779e4af69512d5e24fe4f8f4307c3232
BLAKE2b-256 574a35a164a0707049065fbe87c387107a4823e75d50241efb1061ac579cd49a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 57008d2d6961baab7b40881fd45d300b9005156f0808e545c05993ebb8c3f814
MD5 9bd0e1c111b3f9da8b6d4ed75b3b4a23
BLAKE2b-256 275f2bbcb77b19841352c9ccf4431e22a93e1adb85430fd649e99633a175af0f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.8.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.12.9

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9c6e756d5e50084a1a25ea9f6f82a1ddcaa9fabe20035c8f4c1ab2397e6205fe
MD5 1502ca5459cefd6c15bf7b4b64c681f7
BLAKE2b-256 ef9c4d29a7ecbfd89b03a9e840d028545a791b38e8b623b2f49ba09138408b99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 671a13bbd42e63fe091ddcb2fd0da6819b997f608e1f3fb466515d0ae4309353
MD5 a35022e0add4dd47971554cdf1992ea2
BLAKE2b-256 eb6ff347c959b3507df0f4310e77183554b0b96057546e773f16b44406eb44a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 08539f38cde6895044b0a946cbb6b10799c769f378ed0c64a27689eb7f9992a6
MD5 72110dec2fc6fea12993f1531e37d23e
BLAKE2b-256 5ce4b20798b13a27d2629db4f9c2afc20957c8c121bc8b049298c4eab43b02a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83e766b0858593a4480de1d2a96317cdb9a32427ddf2cf7bed93e1b5cc3439c1
MD5 35f653e999e23ea6bafcf58b6a30123f
BLAKE2b-256 0e13b31cb2757fb8e3f41ab5441ceb8e19644876b3a7cfcdd3bf4023b31ad60f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6fea2b1874a00faeb1552870fd8963414225e9cb2460c803451a0d1ea3ede19
MD5 7e49acdee032809049eeea2691020a76
BLAKE2b-256 65047574390b284ac4726b10534ccfeea530464e10c112c20c8306dcc1c77c27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c85a99d0234c17e334f14ff0a1e8e87e5c5ed1bae7f7edd1d2783c97deccb81e
MD5 b2802885d5cba45a347265d20acfc05b
BLAKE2b-256 a3c11239218b52e5cb8767843206e1ac1bdde0cd33c87452a22b63b4e7890793

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d41dc902653e28b6af42c039e83bfc7b29258f41a4cd1c736d29dd4b90dec49c
MD5 31ae3bc039a41b3e5255e3c7c0e6a741
BLAKE2b-256 6d64484afd15fc6fd2d3c26fce79f5db3743e77956cda0c7215d89c02e1d5776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6124d71a53f671ae47549c4fcee2a258fed0ee7b72352d9070d7ab0dc550c03d
MD5 b5f67179d74eb2b7399bf7b4f232c5ad
BLAKE2b-256 f2bba13d2cffa83fe7adec37e2309eb2d4d63cda78429a4a2b2c52533907745b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9e99908dab5bd43a5416a505545a409cb98ca049c8da57f7df151c705e91eb5
MD5 5363f82cbb741a38a8ce347b9c6b5bcf
BLAKE2b-256 cdb5b6c7d1586e3d5ee609c5a972613b140a357369a4cef3c557373aa1cd14a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1434c9dfc634d69d2f6cce8b6dd5d804fb3e4205bb90152905df63e2113f2e16
MD5 b59c4f164f9f7cebe7beaef027db04b3
BLAKE2b-256 7981fd8eec434c8248a7ce80756b5a5980808c0674bd19320f9628e5f37d5b7f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.8.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.12.9

File hashes

Hashes for sql_impressao-1.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c1de1fe8c65f7b700acc0dc5289c305898a23276076cd933e52624aef20fb01a
MD5 dd0e5b5174b0e752dd0968ceaeafda9f
BLAKE2b-256 7f855bd14cbf23ec8ffbf99f90f1a28f7d4b551370f46b6e1642665002dcc055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9073cd474fec0d550a6ecb596d351106eb473f6ac2a31ee5bbb754ba70a9f8f1
MD5 049601002bae3b9a8d7895a8c24f1bce
BLAKE2b-256 5d9cbb1440413d6f766b0c0c9e5b799de712a9bd052b25fc77c26c5d0c2855c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 373a55d15583aeda5b64ab1458d83d263ca3df500483a2204ba3a7fe82a185ef
MD5 42c5d9fb64de2ca925682b95c6a66174
BLAKE2b-256 8627001a4efb2dac1e8484df4736cfa7fc7e92c00e551ea0576284be567e1e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6413492833b56c5738d0b91fbab0f049cae7924fbd0637257be354687b0b316b
MD5 5c569b354fc23acb517f7d9f4114f276
BLAKE2b-256 d6b4e68535fabd1d6e8f83e1e62c54b8f27f2422ffedbec01ad85d149d7a334d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31d2c08a82a63d90c491e697478109c4ad124468a6e7e37bca27444f607c3f99
MD5 9a21963578228afe0279ed98aaff3159
BLAKE2b-256 2e8200469d0282dc0039de2cce192bf0f8e47b9f1f97db3db3308671145243ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4a44940303ce2774394bedb58a8ee5e8c60e88e6bdfdb384309ea72179f2d92
MD5 b5eb3af12a85b2f8f45c9d9e79085d03
BLAKE2b-256 51cc61d8260ca15ec2ac92dbfea2e1e8c276ee39069f14c84d72764c4fad5f79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 94fe7a0d7edbe5eb78d821c2b8a75e6cdeee6df467e3e00424e8123629c3c540
MD5 83c90c05f74179be9508952647b59319
BLAKE2b-256 2e506533bd7ac01ca754ccfb890dd9f0fbf78d65f459c1faf6b0d9038c1fac2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d43eccbd175fd2f73808808b51783da8cb2d3db66137260841dd1ba242f94433
MD5 e6d016182867a8d95ea41d01808edf0a
BLAKE2b-256 ace727955dc7c42f1e18da3a9402fd1f3d430e90365d27190038e21f2cbf0acb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 86cad105fac99ba23aed82c64c64b02eaf12ec4b560d87321cdf6a6c05101279
MD5 435a2576bc0a91fe8f29517581c2b213
BLAKE2b-256 559901a8ab22a51a0fb4f2c7257cc89a76061ba894e546113358779e21a6b846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 07b7b1b2b95451c5b7a0cd4f4bdb432b23b4e22f6e89629eb1fb1444d82e59b9
MD5 755b4fe63bf40c9b276af5b122fd20c9
BLAKE2b-256 059f127fb1021d76e8dc07f338fe8af536994428c94533dab802674c5ec1b551

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.8.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.12.9

File hashes

Hashes for sql_impressao-1.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 38b6e90cf705e5ab4a36a8d4d828cd55d503f5b8a9971b635432f70c82fa112e
MD5 c95175e18970789a4e46022152c3d267
BLAKE2b-256 175b16ae5865f41d4318b5235d498784dbe1825fe39ea7f0e9bf38c3e5455a35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 140c1aeec00ba64bcb05fda5b6738872cb222e9ad8c6e5fc3bff73b244888359
MD5 cd3815aae6aa4e33d1a81aaaf213713c
BLAKE2b-256 e8341a8f91ba0f9ccf7688299f03a728a1e3aba94b7cebdcfbe8d3db6b4601cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 20e597964e2654146debedd5f334c53d3090f039fd9c5ea183b2c4db56ef56b0
MD5 e3339d4b13d54cf3dbccc37416131304
BLAKE2b-256 f8c73719959c004618560028377c27532c3be6615385fc64c923ced876aede91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9742216d00f112a8a01c132fb6285b5dc37831bce55ac83187154cf70c26f812
MD5 e80ac3a386b16ae8e8393a52d70e2ba4
BLAKE2b-256 6ea26c12753423c5f2bc8a701db079ec1322e00170abd6055646b7bdcac2b5c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34d0bf3543151efa299b62c35285c9b4cae21f922a0241cabd417e37194e7f31
MD5 e08260dd489d059ae314f9b0da4d0231
BLAKE2b-256 f91b82c4239fdf3daa86835e20b89ba36e8d6f17ba34e3814f3858f8398fd871

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b682a826f4be0d15e8feabe72932429e069c4cede1b243e190f0bdf9114ca29
MD5 256d5cd6ab491b71bcc3693acc818d2d
BLAKE2b-256 d285dabb77517ff0c63b1c3568d383878fbc2afd8188e7cdce8bd721d5a55d97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8091c1578ea26a8c2034abeff779568623a5d426e966716ae6688c049caaf33
MD5 6c2ae1c898fb8ba340834a017436c109
BLAKE2b-256 2355392b4aa36d9a54b70c32ac2ade474054b81f2bb1a3842c84f9d6745b8df3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20b3fed45431b7bc7e4f127f824bd7be46e55d1e624563b01ae96c0adfba1f15
MD5 a3f2e59690008899095491edd56c1989
BLAKE2b-256 522f172d089e7ea2765f8a16f83432ffeaabc169b5fe9f926422a24ada155b14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07e46191dad425d3e6230c1842adc6b1ffffd65def4342fba92ed3ec4fad8c6c
MD5 b4d4c9ad95598a5138df1a95d00f355c
BLAKE2b-256 109b319344ba49adb3fbb3be60d8ebdcb9187016dd4a0227c59f121504b6a3a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c8bd8064ec9ab5d0ac34ecb7869ae1c3b17a10ef15a22cd367d1852172905169
MD5 707cd4e44308a29d1cb034225772322a
BLAKE2b-256 63ef5b92e746ed65f7975ce766f61b9b06d8a79e163245a5b64277c37c096259

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.8.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.12.9

File hashes

Hashes for sql_impressao-1.8.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6be1b245e0f779a07e81b34a5f4dd69071ac857da1c1ecbfe38c63d4540a6c0c
MD5 484c9c6803dc133c0d152fafce96a392
BLAKE2b-256 b89035081b410f9b9cccd48032a0425dd3459dd12043741e8fc89709f9f5a6e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7dead7ccd6240287763d8be18d3fe652da54943c3b62bc3fcd1ed24379a4c790
MD5 da2fe36599555d185f76043b01a5c40c
BLAKE2b-256 857e756290221e357db3464e9ac7885be07dcb8adedc656eae676688a56c0138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cc43dbf6461eb98ad8893345fbf95484253c0d28d1c668cf1ad5bceb073f203f
MD5 90ece7b9a1ead3a98a90a077145ff7ea
BLAKE2b-256 bc8432dddc50a7817fb0b255da42b38624fcde6a4fc349bc5f7380b657ef2567

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56a2a8c3789bbf67b92f6223de78aa0635b0737e3e2c919f6f9e081a2ac7a6ca
MD5 3bf0f89d107ebc3f0627abb2d3e1e257
BLAKE2b-256 d9fc6da7b62dab7886fd9f2b09abfcbb6a61fac23cd6628ad932b5372432bbcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5903f1241ffeba8684fded601b25529700ee3457771179af61edcbe6a4e1528c
MD5 c9ecfd2d43264101aa94cac1994d5142
BLAKE2b-256 edd2a1341b9e8ae33e3b3797e76766b7797eb87d845fa2193cb9ba293b55efbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6dfabeefff680d4420bad2845f243218c15d0369cbd91352e6c6b0da5792b18
MD5 ff7c00f7728c3884d2960a523f1733b2
BLAKE2b-256 336b1526191b751494d0fc1a1b561a03c3d100b40b1a6e8ba6225aad91370e4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 db30b28264d0e3b143e4c3db192e2c0619b1ff1cccf57668cf25410544d438c0
MD5 0438a64e8024a506a6bb7713f850542c
BLAKE2b-256 b715a030f33a686731b542d331c8c0bfca3fa0c64204ca59e9711a650f4f0d22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 951c87dff1f3f5fe3add421479783cdfe77c6928640f23caec285a88e9d783dc
MD5 c3804d8bf34162253ef5ec270402c33e
BLAKE2b-256 a38b492b65ada668a4935aba89d573e1afc14ded64bec4e810c14cf308ca943b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.8.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.12.9

File hashes

Hashes for sql_impressao-1.8.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5952a98b3d42bddf0d1d70148d204bb013a442506b79f78e5eb1274c304cc20e
MD5 97a75a886bdb088488eba9d56d0e9900
BLAKE2b-256 8391f0d84efc9c341c0558cd497006d7ddbc2d30599d23373868842dc8f0e96a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 713b179484c4e19bd6a0486d9c44c210fb6956f83859e619800947f37ffe6d45
MD5 f59cb3043b05ca52aebd01173eaec923
BLAKE2b-256 a55e7bb5a76da6d83930e895ed91917012ad7f80131277790813992681531f3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4542c218235e4006e2b6063690618afd3f1767d7ce62aafeb1f16f7987574485
MD5 63d32d3d9ae220cda2d5ae174350a46e
BLAKE2b-256 5c06714975c51c98c6424d022dbcaeb73f12eb7fff1d15be650e23d610bcad94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a3871ef30cd271476afe5199bf1f22f6dfbd17777bfb01e71914ef114b3e6ae
MD5 ae261791ba7acdd87b65e5024fa5fe32
BLAKE2b-256 18d5ab47701346d8b06531c8e66ad4c3d10e775890d62c542c4761799f84c283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b757ff7bd1d85cb160a2bee9b55f40128ea17d53180d7a32064b95a82006f870
MD5 7414229b99cb2672d9e201b30e8e746b
BLAKE2b-256 6f78f22c31a8c6d61a77d6433debfd28316865e7185373ec8c21a57a370e07a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 275aa86823d7bca8352417fb871bbac5b804068a0fb6614bf7e25cc753dc96f8
MD5 d404f16de15c5cae8d087bd49d33d84f
BLAKE2b-256 118a40e02b0d10f747d6ffe6c1567dd0216b737ebedcb8fe6290959a1e68d3b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d658f5ad22264aa014d52c6ef537aa3c5aa941a43aaa724e0e38dbc6a4761c4
MD5 f1e737faa4d4e81e111497ec1cd357c5
BLAKE2b-256 1b34cbacbe927def352287763a1e917fbfe16675eb6052969d244e5f8e058872

See more details on using hashes here.

Provenance

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