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.7.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.7.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.7.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sql_impressao-1.7.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.7.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sql_impressao-1.7.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.7.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sql_impressao-1.7.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.7.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sql_impressao-1.7.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.7.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.7.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

sql_impressao-1.7.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

sql_impressao-1.7.0-cp313-cp313t-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

sql_impressao-1.7.0-cp313-cp313t-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

sql_impressao-1.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

sql_impressao-1.7.0-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

sql_impressao-1.7.0-cp313-cp313-win32.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86

sql_impressao-1.7.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

sql_impressao-1.7.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

sql_impressao-1.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sql_impressao-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sql_impressao-1.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

sql_impressao-1.7.0-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sql_impressao-1.7.0-cp313-cp313-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sql_impressao-1.7.0-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

sql_impressao-1.7.0-cp312-cp312-win32.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86

sql_impressao-1.7.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

sql_impressao-1.7.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

sql_impressao-1.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sql_impressao-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sql_impressao-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

sql_impressao-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sql_impressao-1.7.0-cp312-cp312-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sql_impressao-1.7.0-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

sql_impressao-1.7.0-cp311-cp311-win32.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86

sql_impressao-1.7.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

sql_impressao-1.7.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

sql_impressao-1.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sql_impressao-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sql_impressao-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

sql_impressao-1.7.0-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sql_impressao-1.7.0-cp311-cp311-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sql_impressao-1.7.0-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

sql_impressao-1.7.0-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86

sql_impressao-1.7.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

sql_impressao-1.7.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

sql_impressao-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sql_impressao-1.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sql_impressao-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

sql_impressao-1.7.0-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

sql_impressao-1.7.0-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86

sql_impressao-1.7.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

sql_impressao-1.7.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

sql_impressao-1.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sql_impressao-1.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sql_impressao-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: sql_impressao-1.7.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.7.0.tar.gz
Algorithm Hash digest
SHA256 fe28d0401c1b779838f8a45311383aa54326f0a99d717b20f3ec2c0283369492
MD5 4b36454d9f85e9c176d4eee26befab1b
BLAKE2b-256 f36dc3a54dbe5460827c57fdd266deb24ce52e53624a638c9beb539e6a1cb694

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 beabf4bb95dc9eb543f75aa3402f279fa9df4c9a0aff3d45fd6fcc831e0d190d
MD5 b5e0690184cfbe2bbf07de4671d29706
BLAKE2b-256 97f21e43c46da46cb93367102f35cc84899da1c7547c9ef2d50eb2d65ec2a46f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 935ff75ab97c7c2c2e8ca819430f5ed56c3ddceb3147b1fbd49cad33185bc689
MD5 b871f7b622cc697b4015d7033a8b2265
BLAKE2b-256 521a98ce3fb91dc4612722175f895da69200421dbc988c5cf96e7d3b811e5123

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 017f6fd5914763fc5d959151af1dfa23631aa9739ebfd99b217e78d0c158f3aa
MD5 714103d67909c66e9b2ffd8d7807929e
BLAKE2b-256 7b54881f9b3e7d8f31b555787ea4ebfb49081cdf3deefbfeb388810e523357e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 185e7a94b79ad32dc1cb0ce682d5c6e3d1749006bb06b45e23876c51c7233c00
MD5 26f63a922960b20cb5273ffd57f05bfa
BLAKE2b-256 f42466735f0d1868f0bb32f17905b0f4c88ecd8ed4ed6acb7d72b7920a0592d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0b236098628da0f2e853927812aaafb6246b248cd0053b44cea840ff64d2973
MD5 9fb7ceae3fa2081fe57a816e16ac344c
BLAKE2b-256 7f9552e837bf75727d37b79852ae73d4f99e1e5fb11f39c44e8bcf880520fd8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f2588c55e31428e73f7875641b65b6e4acd56e49eaaa737fed7629b837179a72
MD5 99d51e6cf1110eae4d73d008fcd5c36e
BLAKE2b-256 71941549cfdeb331593ba4421edce512135f0e2abf6490e2debe7f8cbc4e0e4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c4d3a727911f3edf665d99819c474beee7bc93d6609301716aed7a4a50dffb70
MD5 39161a6e6938958ba6911a9c54a04cd6
BLAKE2b-256 7cb88ca09de16ae92fd542e7424545efb7e8dfe1fdf0430d285706ed04e1d93e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 94ff2b5d4b11cb227d7eb14d7ab4fb0038ef5b878c10b4bc08919b137916c7ae
MD5 3e663685796f16b44279586944840b63
BLAKE2b-256 9900a2965f0cf84624fe89c0f91d794f93ab530d094bc127712818b2eb9c20a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1185fe29286a0beea4d216d493c3354539f3451a4271b26ea01c8d170640c385
MD5 fb656ca4efed36f98a393308b30c7479
BLAKE2b-256 7348379a6fa3133ad4a84fb00229e4ac530e110c3f8226be7c74f784fb9b1a1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a501921608057a7b80b4a8f4f9177ced8f39a18d5d4be3a96852910c9ccb300b
MD5 76a700b47c7969655260749ef77b7faa
BLAKE2b-256 e27629aa8fcdb5dca830b6c47e9b71594fa0c5e039346c4e33c4c29ec08adf78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb594394b02dd762198e8560954314e0bc481a1b567b7aa414b2941d501e11a8
MD5 a11aa7ce0beeb3e77653a31695b55c3d
BLAKE2b-256 a1c13ba94911446f322d039a049dde310e43a3a9b06e1a020e4937c3a79ff41c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed866a9b7be91d9acadb7c70f0d8415318ca261764c15a40b34e39af240ac375
MD5 318051e9440958829121fed779e4e56c
BLAKE2b-256 8d2539033aa39c2302b3a81d923ca05abf970be3bccb62e31560aefd420fd9a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 acd3f1517960b5ef62fd3183f3843a0424abdb0ef87e034b8f85660d87926b9d
MD5 ad0130d310e884fc4ac1302c7982c1ee
BLAKE2b-256 c332a018c7995e4a59f2c4daa31f8eea3f822feb46a3306c2c73c5474884508b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 52b130ab5c2b826cdad5791115224091f8d22ce5cb8a6c9cf062bdd7dc4587e8
MD5 dc7ec84704b6f2b9915834359f57a81d
BLAKE2b-256 6c25bfe70fae185a84b81697393b8bf4f686210d4fe461e59ab654d4814f28f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b576f877c862b793db3e891bb4d345aa1bda2b688c3d50cd61a850a99fea1b0d
MD5 3f93b053d4d5cc2a88a1a4a1c6ce2fbb
BLAKE2b-256 9be7d94e93fc6e321d7e3d5b98242bed559988dd4909e6c0e95e04197808bdc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46422576b07029956032d85d4e8949b717af1ae6ee6aac752340ab6b26104960
MD5 e44d4de2839a4362de52a40e2eedbca2
BLAKE2b-256 b784b678d6eb5a9b10f808a8232a71e4ca4cc0a63c8578e7116137df65e8a6d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b7563f77d6375e4d7aa18f60422b5001b60fb83c55df6ce369c3649f15212a4
MD5 5b1fdc3d5c7bbef735c544426f96323d
BLAKE2b-256 c910bda8889387fe2c98e92dc6bf221f3826b437fbc391d0e1c4f68791c63581

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 058ad7db3865ff0bfe4d0b975f3e1204a150a23522266e7909237f7d75227819
MD5 c244aab684cbcb24d536c8f0db3e2f5f
BLAKE2b-256 80a302c551abca81210632b8ad2ecdcee25a37a0a11e1e4c9dd945a20b8e1b60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4cb556ea40f19d4cfafd6c591fb6cf742fd09b767ab0050ecc0b56bf65c96c0e
MD5 74b9febf7be591d70ab750ca67f8b29a
BLAKE2b-256 b76e3ab7ea6692190d18198a6a368aedb8334426f2454ce5bbe739b5f663aa8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 987876a8b7a73c57ed48f7758def3833990afdf13f546c3ddcf40ec0481f69d3
MD5 5c15f8245ff7dfa9ecb052f089b3c4e1
BLAKE2b-256 c2312f498d8e022953cc6b457d4cda193ea65e3b4368ad5ac3cab0619a843b4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c912717b4017ec835c18d16723c3a56fd799686e858af6c5614ba68574676080
MD5 2da192d58d66c613fe8af265841d0330
BLAKE2b-256 ec00b3f7957aedf52163b4a23d2b113385a59fb1d3f2120d404689b8ee73dfc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab9f5607b57a88c83ada1d4d49a235c2d4c43604ea360d6fa88a692458b481c5
MD5 ef8574054600a347a78e95ef629fd187
BLAKE2b-256 2dfbcfc2623b8ee8abf7b0451bbada87404c95154082e8d0e9a9c6ee83c30c58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 29b5ebc98796994df6024fb418c1f9f2e1dd846c4408b8ae6cb4263f4be088f1
MD5 03536052bfe4d448041be925522b1b87
BLAKE2b-256 dbed0e51159e8e4f7c6ac046992a69ea09ea500a74c47d679f56ce14ff5c2ab2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.7.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.8 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.7.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4925a796be4f102c4fc72ea79b16c87e3f8349844745f8315c3a3c6324f935a2
MD5 4f8e43f5971f585df8ead0a4c56759f6
BLAKE2b-256 238c641ebc44f3edb6ed78eb0ab658f56a098d6743cefd37827bc589c17bbfb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2cfc919efea8ce5f4a9c3343f92af76eaf103324cfc39c76beeb6d8130b935c6
MD5 3568e51604712a83958b649ae66254d2
BLAKE2b-256 3acc9702f252890ebc72c3790c9b80b715dac3c7a22ae533f803dd2fd5d92ec5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c6f8d8c24fe566b81ed14b80c5449f371687b4d1dd74d8d7a8bd2cad28771781
MD5 b4ed14dd5227be828bcd05b352721a48
BLAKE2b-256 b0ea1ee042c1fc036840b896d91c27262a055e9dc7e10ad69e750b294bf1df1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4cd1c4a7f2f7a58be4407f0bcf6f84795d6d8b55220a05d22ca54e55eb1cff1
MD5 b3a76d65ac9912290c296787e50b9b4b
BLAKE2b-256 20935ca8eceebfe7dde44516f10080c58861bbab065312a0532d5dc7d737937d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9178138720247497d7fc52bd279b9a8fcac65472d137f66d65d10d307e18c5a1
MD5 73edb3c4012ba8fc00accebe7b6d65a9
BLAKE2b-256 f0a84ab98ce4fda80f3c3a04a41e3892c915d2a00b9cd0512b0c1c7d7c43b466

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dfebf774788ca98b0e278dab49e79d6fddb04b7d9ffc318d6d12e77a8df342b
MD5 b8935e3342b6f18a392fc29add565ac5
BLAKE2b-256 f474ca3f3fae6fde4f49205e62bd92da22d4fd139863d08bc57348ee04b70181

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e48e0931deab055e720bd1e7b969deddefce4afef1b9b042a9f59eee4bc7c2ec
MD5 7f09dbab455ec0d9e989d8412f27f3e2
BLAKE2b-256 d9df29be012c596788b4501ed094c36e74826951dda1cd1eb9f0f5b77fe5ece5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d9ac1f352ed2c455eb6fe84632996b10a8af3767ac483844685b333d24e933a
MD5 ca9ec2441d7e26c7e63f7f157eb8b503
BLAKE2b-256 b46f9a75a5545a75888183c9b4c45ce614801a678eb5f79d9a3abedf2c575af2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dbd372be7edae3240df43aacfb246395464289c1446cfc9ed0f19c7b198de5fc
MD5 2ba9e11b07d4b361d88b850f502d7d41
BLAKE2b-256 ae9484f19503c87c6e41fc814f911167c1a16cc1e281c223270747ec459f8ab5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d2415b8318e819cb17dc367e136c6da39d96601759cd0b6b8a25de298ace2d7c
MD5 c7e086741d0bafc8f5b4f65d5e2b55ad
BLAKE2b-256 03ea7b6e8366af79d302a13bafe3b5f2541a28caf3276ce1a87a32fb362035c2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.7.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.8 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.7.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f84128c3ecb053c88eff801a194624e39871c88f8fc76da6ea38b6f7bc00580b
MD5 1c6fc7e58196f539763ae4845aa12865
BLAKE2b-256 5c5a161943b153714f7cc61f0ac3ebec71b723cbae37624855f3d29814f04b31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4aff9f5896fac6627a205b5d317380e237c51b57bf8832e477f235ac230aa116
MD5 d4382e8440f88a7bd99b82f9c6444fb8
BLAKE2b-256 7a1e5b25b8529c88eb1c1f8e209f83a20899102d0ced1549931d7517db6ce39f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f60449cc9b13d27d13209d2b32dc05f67c048acc142ea199900bfc05adad21d8
MD5 2bb5db06f0fcd23f83ab28aefe447974
BLAKE2b-256 17d251dbcb9848a122cd463b4351e3259681952bbfd3cba3a2d3952d4eeb6a87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ceb6bf2e2a776ae4b74e462917b9c25a2c2ad78995cc8fe4f2b7772138b55b6
MD5 242a43ef2c7b74a43d68de7513cae79d
BLAKE2b-256 537dfbbd3eec408203889eb2a8161a0b70f6270faca4098eac10dfc61848aaba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 583b3f0e003a2f52bec68d246dbd2a2a2343cf8ad1e9537d0992796abe9449c7
MD5 c1d40656efe6399fba03352000606457
BLAKE2b-256 b1fe4f94d5738affe704f2f7c92a84c283a87a25695cbe08c07ba39732721a24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9817a39ebc0ef9a635de34ec6b006e76d0ba64569913c38eee6a22b9f61b35f8
MD5 b2ee4c6326269c35f72b64eb27fa4591
BLAKE2b-256 7fdf61e7d5ffc181ef59fe02ec02564e46ea0d52d05920607d7a0426737b3601

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 29bffd9c3962800d7205a352cec733be8ac560c500071de0f19ed7cb05714e9d
MD5 65a951475af280168831660861d67e50
BLAKE2b-256 7adef9bb41d57e31f6edbafab3b4357892a2be2f3bb961773bdb5af37dc092a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 305e3d2da3881dcb83f5232acf0bd7be4cdd77821b28b4c344bfc20bc16c89e5
MD5 e6e40cb4c006b386e92c1426ec52b4e1
BLAKE2b-256 db3a959c35d3e113518a1e2405b99a7f30035b9be06c7bff51f5114e14963787

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13858eeb4a0139465b978da6c4151cb36e98b16efa85fd30d6354dc1fc26c171
MD5 2bc3949e46fd83b8b63a9beae6ec34bb
BLAKE2b-256 0099b6ca8e4925bc0439f248a720695fc630d67f47c0bca9108ff730186ea5ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 04074a4fca11d76f25e673bb17b35893d1691c96ea41f95702e820e9d73ec836
MD5 74004aee5dde340f8099c89e9ec8135f
BLAKE2b-256 7f623b1cd9fe864f3bf1549dcd65eea2200e3afcbe7a27f87d5de4a0625321a6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.7.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.8 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.7.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6d7795f2d30da2b2ee30f9caf742c3f3f2eda41c8d1d5c6efc78dbf93815eaed
MD5 e38dc51e04578585c16ef82087f1acd1
BLAKE2b-256 ea653e7becf8d2ba830b366512e5170d82eb27477f65a10bb1e391999986000c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6835c2e3d0604958e6351cbb445ac249825d6fd5eb46a97ab38b53b10b268a4e
MD5 92162be61d1d1351f409b25e9490d1ba
BLAKE2b-256 9962388642fc830d5cc733b89ed4ec6398d4a4f88afa6098092725c91915ca7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 722b65e754051b3982aadc69a96c4265b07530eabe92eeccf0daed66e6e2ce32
MD5 414c0bf298a12d2b0a5101eb9564c6cc
BLAKE2b-256 fddc5d379bc856b4c70286d7083f5db097a3a02f9f91e0867ed13047c3358ee8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ca083ebbb2538f368ee88e94146e8234ed8337d21b2060ff8f82f0eb0436306
MD5 76f159862deccb5eaeecaaff566b76ca
BLAKE2b-256 b23ac93245180dd48cfedcfb72619af5dfa39fa7de86c510fd91219e1762b231

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fbb8f62798fc5166911697669924c929cd8abdd510fa404c87b1cbd232418d28
MD5 d85badfbfd4ee7473d7ab29fed2046ff
BLAKE2b-256 af3a1784932e3e4fc6c7e93049ac30f8487e8bf87371e53cbd87229dbef3e7b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 685e12f277a3bef9c58d3603c49b62260695728e3c950ebee7a4bf772491930f
MD5 7d8ae17a6ed19ef91d3f014ad8444117
BLAKE2b-256 4bade419b3007d36f6def802b5a8d440ad2f2883411ae0bab965a6b675ee52c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9c601e4bed34c93c8370d2ace6a9bcc90f4b2f0acecbb5ba63298dd26466dbba
MD5 6b9554002cf30ba3c9f5d25e8ec216cf
BLAKE2b-256 f6c75a8f57ebe88aaaf70b4b1c2428d78dc4aae3193d2f5c6db697e6cc7cd3b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00c2babda17b12e79fffd569caf33256c27564f78d6619bcbd0a4e9f837e7a4c
MD5 327bdef39029cc21192964b31655d347
BLAKE2b-256 e8455e562cc950cd20b1b9945fb5d0a857a2827e73f158d7e7b1e43b39ae8804

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 203f5adb7b1e52c6978a1fdc2506d7d396885565cca984ceea7c97fa22ee8ab7
MD5 38b7cadb0e0117ce3a2ac16f87e6c8b6
BLAKE2b-256 3166ee0dd3152334f2f8aa1e81d80e8a21d12e66a3b12a1d4f2e7750139c8bec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 858bc5b37f32c51853a2c4b6f530e90c3bb0ced32fbf765546a529cf49e22bad
MD5 07613d844e95572aab8c72dd2226701e
BLAKE2b-256 851012c917b83d148d8b9b3ac72b331989c79261e9398965f1b1ec6eff29e072

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.7.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 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.7.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 17e2c14714eecba6c49992ba42ada6ba178f71d149d06e29f2027c68c540df6d
MD5 6071528b846c0cea550f198a385eb9ec
BLAKE2b-256 5b591a0dc97a3b308ea2b76bf0ab817c0e8ff1a38b564e0515ccc6a56462bfa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2fc87b968c8e1645efa48284f124da4400804570b7b80e852105d9cca5c3e11a
MD5 18994ede68b292dea22f59bc0bac6b2f
BLAKE2b-256 dc596397cb7c34b914f08548b454a1d1743ff5ea5068c7e429ee5d6ac7927f21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 26def07f0973d3cb16da29815ccfcfd7d5a34c66b2573e4bbb4219a2fcbc1bde
MD5 7cebbcca351bc8f2053e1ff7122d3954
BLAKE2b-256 09b866b0d18a5513fa672756b836e0094ecd9835cecf17441231dc4cb269f1c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99bfb845b7f6e956ed6e51390f964b571c5108595e4150258fea5792d81319dc
MD5 1e4d38b4b9daf9a386f518371064e0ff
BLAKE2b-256 eb67e4c16fe98a3a443f611c1b0df54516246102a69de1b36b1bbf526dc238ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c465a23be95d85460d1b9d860627e98ab74c876191f7c73b293b608b3f07b05d
MD5 ac8568f7f755d790722b5d15d92e79ec
BLAKE2b-256 339e7d76296d5b8043b84b42aa9e490d1d283eac6b7a8440873ef0f456a7d1c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee6437298c840c7859d4e06a64ccbb46a0783b1824dfa965705b4eeed7b56757
MD5 183ab451584702cc1907c42d4efbfddb
BLAKE2b-256 79c16e99c552465e9fed8a41b1cf10bf87268ba49c0b702f886c3f7d7ff41e50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 875ecd7fe9145c2303edb52c2b8c15cb119178932ddfac127adc42d1378a1e9b
MD5 b841cada9ebd0f46561a55e3beb28ce7
BLAKE2b-256 7470b698ed82c609dd0bd4dbc227ca675dba7d8d72b1c77a31763ba1e95bad83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e9e1e4a4adf7f32427784ded3dc60d7d95b1cbe77e852138ab25f6546ede3882
MD5 61c1cd1c25bf75b886643ae67d3be2ef
BLAKE2b-256 f506b76083829adc9f16dccbc36cd59438eff6acd6e2e69b191d3e25616fd5b6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.7.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 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.7.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 19f9a7fab60e7b522fcafddc5444bcb8803dce600217388ebcb60892aa6be797
MD5 5e9a7b9d375e2573e3d5dfcb8d983f35
BLAKE2b-256 d69e4ca06d980dc3fc84094200eaef061306049200599fc886a7592fd6682a3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 34fb03425305a1006e4e860cc9f13ccdb43fe2fc3e840367d2f11223301177cf
MD5 87a8897be4ac21873a640d11b13fec0c
BLAKE2b-256 01f46a621e9772185679535642bcac4ce1095e76cf13d3e3fcf4aa231f69badd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fcf0c59217ccefd9b97e4108571c900a9399b3aacdd4c74ce194a4787d5cac72
MD5 1d4e5fe9138343aa383fe87ea23daa8f
BLAKE2b-256 3c43f0394b8db653750dc323e137cff6c04b287d2406763a92e0f92aabe84de4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6843ac12da74790d7ac6486f2604c82e08ef7ca3d2362c85120244974a3a5b12
MD5 062279ea71eb62b5145b8e32749484eb
BLAKE2b-256 49b9d70e22c07dd9bd0ef385241f35100cd949d6dc467dfbffae0c76bc64370a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70a01758256b9a364dd685b254991a23b902e18751108f89f41779261d3cb432
MD5 2c2f415b35783a3d66d1b2a9f36196ba
BLAKE2b-256 1807dd57673ef65b0fc18e6f24da3bf73985271bc8fcf575d0a20c98a7f8cb9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e4ef94622cff294d9d0458233e2748967e972ac32a12317c09123083cb22c0a
MD5 370d5f930102e6e8ef6fb7fbe3e3840a
BLAKE2b-256 bcea7e6b7025c1bdb16c0a63e6bec218735bc053f864f3d5e190421c5bf3fe3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 795cd7cc8e79b255efb8a45bcaefd8bf3fcb1cea227c40d3fd66fcd0badd6ccb
MD5 44a26eb2fa58b122d501cda50c3642b9
BLAKE2b-256 6dbd7a8b11e3ca3c771503de42a032e8301c78a0dc882e036753de455c00842d

See more details on using hashes here.

Provenance

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