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.5.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.5.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.5.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.5.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.5.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.5.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.5.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.5.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.5.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.5.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.5.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.5.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.5.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.5.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.5.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.5.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.5.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.5.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.5.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.5.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.5.0-cp313-cp313t-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

sql_impressao-1.5.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.5.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.5.0-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

sql_impressao-1.5.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.5.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

sql_impressao-1.5.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.5.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.5.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.5.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.5.0-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sql_impressao-1.5.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.5.0-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

sql_impressao-1.5.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.5.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

sql_impressao-1.5.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.5.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.5.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.5.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.5.0-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sql_impressao-1.5.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.5.0-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

sql_impressao-1.5.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.5.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

sql_impressao-1.5.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.5.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.5.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.5.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.5.0-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sql_impressao-1.5.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.5.0-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

sql_impressao-1.5.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.5.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

sql_impressao-1.5.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.5.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.5.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.5.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.5.0-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

sql_impressao-1.5.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.5.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

sql_impressao-1.5.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.5.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.5.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.5.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.5.0.tar.gz.

File metadata

  • Download URL: sql_impressao-1.5.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.5.0.tar.gz
Algorithm Hash digest
SHA256 ac2f88aaaf09814843d832790927b02bb2e05dd5337aa90c1bfff731e8076823
MD5 1be3946f4b8aeb49d1f1a80b16ee9ebd
BLAKE2b-256 097dfadafd93aa25881b44e488981822250077b285c604c0eb2288827fde4268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49fae0e82fe6df786d976b500a506b27b16abc0c8956887dff0cad87e1756f60
MD5 78da994d9fd0feabd3f22e4e3222f157
BLAKE2b-256 0ffc26d3d714810c6c7633b0a0ff5660aa268d82a4e14837f6942296867155ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 11aca62d9862621e43d2b1cd67c041f97d652c3b9d6c54a20faa054fd7b01a4c
MD5 b3b4e80ea5630f9aad7124e0dc574d53
BLAKE2b-256 3b3cb71bca52af347c384fa160305d2d891b8abb1568d7b5239b127ca3ce69eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf0c051fdc21f4940cabac8841292f3e63e1df3ee2222c619fe9166eb153372a
MD5 c9daf1900cd8350054ed47faabf45442
BLAKE2b-256 6c1baff9743d8f5bc8e782c537c6a98c2b2228865609fbcbafc21ab94ae7658d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c10fc9588a2b082c204cd4b36391f4cee2cbc113549ba16b42cc5e5023c246e
MD5 12a7b2d5944309018fa6bcf5f4c1a2ab
BLAKE2b-256 30785d3915c15729c9d10a3a3b816c9e0e62091bf1d2e773235696d57c8c8dcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e6396bd01c5019027c5e5be842b6b792075a32a497d95f1e2f8035e3103e4ea
MD5 030e5650a2d2d2c9f282f9da96f0f788
BLAKE2b-256 12bbbc1b7728811c372721abd02c2fd36a3fd0d798769ad5de3178cf57238b99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 79b18be9788db93f94076802269cb1caa29ec23fa8116288b6abb61b474887a0
MD5 12bdff2ae3440c2501e890ad90c20b8f
BLAKE2b-256 73138757443abfe90c9712a2059384b1288c5a6bd65e1918fd97e9e7440179db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5b99a2730f645d5da1149a2678779f3222c402bdacaa63fbd62902800d93f832
MD5 9f1bf932b163a1a0c17ce07ebac9f678
BLAKE2b-256 447684d735604b284bfcefbef861624eda88fe96c73b60de5bfab2c9fb640c08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 53cf3bcad192b7cfd5593ba466994dab6f83f59687ef8578584309d976085c60
MD5 3ca73d6b23ba9edd9e22ece6359cafda
BLAKE2b-256 1cbacb0a35eb2044a54f3ec6b6720d1d56e2f7641795bde085cef758ebad044d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a559e4512d43b64aef3fcff42210a2e35d1641634970dd098ae14e4de971c19
MD5 5430a8d40441ba3df5dd0e7438982ec9
BLAKE2b-256 621bc3e9ee7d341034b60534d42b04de5137514db0d138560b0c99b46c4f95b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 84023bb26833bc17112844d6bb93fa4eee95d9b2b91e6712f9d96e82574223f3
MD5 0a95f6c0e58f7ca8e84e435d20ef9abf
BLAKE2b-256 dc05626cacdcc4a5e9d5833067ac836dce0ee8e4254066381fc16f3e23f288f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2c3d18c0a1cb3a204dcead04e9030c27daf5997157ed71bc52d9b2f7959198b
MD5 7bde0a7461ee8d6d223a463c4933fb06
BLAKE2b-256 a19ca63c344a5736aeea55efa69c3f158ef66fca3d0be2ebc220e6ca4d1bf62e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 df586d9d816f164d6a734bef2ba99011345557a2fb223721b1535ccb7e0753a8
MD5 9a70798a1072f1d3712e19d4f010f58d
BLAKE2b-256 3cf1595a9312326369edbe710d46aa3dc11e309de0d17d3185bf7442994d7028

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 07d84ab3c9cf79ebb00ddc72b8da3d0f112a1b3926c666fc48ebf3b53331a76a
MD5 e40a52fbdb2b5a982b274e3186d71f57
BLAKE2b-256 a0545798c7366dd49cd89ed945c3b76aa18e33bdf5e57a7120cf2181474775db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5f55324befbf8ffc2ac3a3f40747334c7b3af6c8987b9157fdac833583ac51de
MD5 b7166768aaab6ff3e6aefc4816bacf61
BLAKE2b-256 d3dfefd1c7f8c14b23c459f3fb169b26fe6fd5a65b9af027deb672aea214fb58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a91b0b1f7fa9711978ab5fdba01b8162558eec01c97c3eb67efa64ccc96af08d
MD5 552906aefdf812a6e531bfb82afd66e2
BLAKE2b-256 1a7f2363a457094c8509222838c49b283b0623c825ba4eb533bb7e5b3e1b6851

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 655cbc78361d671398df68f036d9808f794f5829e942d0f1a02438a094dcb064
MD5 5f998490f60d4fb983b98d9b83a5c083
BLAKE2b-256 d90a665f699806999131cc7df42bac27ba0de42ee38d4872d59826f9f07e9276

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a30be4ad1b01af6a8e58690d7f5bd508471257f99ebfc1a53aa5de684db44c30
MD5 85862d95f4b69409b626a3bc52549721
BLAKE2b-256 6396a38e2b223a19a529ab8f65e7ae0d8a9e4aa86c956b2bf8be6d4859f76d69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 24958d18a3d7c507fc81150170a5eebf224e042ac0002975b7f58487ad750b19
MD5 2d17fa1225733b2ccb158e48f3b1af84
BLAKE2b-256 c162af4a279061a866de6bd7b6984fb0b8a035e1b8e82775cfafb5a7cf2562e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3850ca7a7c93eac16cac51f2cf71928fb59be8b8f29ccb2f41af27bf01460eb4
MD5 be8d0da53bed7517370e56be56fef881
BLAKE2b-256 9e19d08a51a9968931b164ac4b6148e7cd9728fc419d91d4e2f2f6f819b83b1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7206803211cf9f1b57ec3e87fff8266aca77728379d995a23254f0520756faaa
MD5 586efa5363b68eac781623c1d7f70800
BLAKE2b-256 d3ffa9880f1986afaccbf7fe4f390a67eba5e90d27066f2e81070a3c9a27e5c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45c9b62ad1fe2b4ab00e18faf6c2f93f723b8cde7802edf9c20aa6d8b6eb2f87
MD5 d9cf73e8d0be1e112c5108ee5527bcf8
BLAKE2b-256 f693dca4d3b4c079c1515f7ca90dae929e8876aa6c0f410e1d568eb66111cb0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f47343f9e4d0187d6cd0d461f7ed5345d8eea6bd5699c9b40a2641282b6af097
MD5 ba3a01d6e30eb135d852daa6c8790e56
BLAKE2b-256 49750164657ccb2c936a053e3f474315a340ae8320f5d1020872e8f64bb883b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1039b856d10eb30ecf2966bf10b0a97180dc62ab5dc48a606962525dc93dadd5
MD5 a03dc6a1bbf3f4a3e6b662c738fb7129
BLAKE2b-256 e824255ae2a0687af018a02e99eced7569bc63056500a4abbdaaa2817f31a342

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.5.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.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 168842342a8f68b286c59eb4f728faad7b53937e5f0d88810bd01ff32b377357
MD5 37abcc651b7e7c7cd8d186e7d816c541
BLAKE2b-256 f016fdfd9f52291d95a27f6c69d5e9e33032c161d2870cfad048ebaf22ebdd22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 07a0b2fefedb7036dafe39af40ec723d3090241bd965d8d6baee9445302da33c
MD5 2fa92433280789525b748a4dd58b1945
BLAKE2b-256 19f74988bb3f0fb4152b06a4e90bf6d71ffb29ce43ee82ed235297c61191b626

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 32e69d97ec3d1f9a65061124d73ba2ef5b010ed1a549a2545854643412476be7
MD5 bb69c9dc7358614a713a8ae08357d664
BLAKE2b-256 e19dce3f3f69558d00180c85fe362281ba80037eb0e32c1be4cdae96bbdc9d31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fe98fee629af2a40f7ab46128fbe930ce5e17c9c3938aa58e25b4d1fb45366c
MD5 7ccca73741f02f3c881d6fefaf03050e
BLAKE2b-256 5520e0f0be13c4c995e7a833275b4cd231e299d02e2e54a91c6ab82f4ae97dd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4155580e3382689d2c6d3a1a23673a5b1989b3d3ae5fe0787b01f78391ff3b1b
MD5 d1f5e89cfa0164d1968ecd5762b66fd5
BLAKE2b-256 748b30d2493bf2da5931313ee164af43b7bffdbd109c3e19360ac298439bd2e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c417c178b81a21bf44bc40921f77087e7756d3173a01a64fbcf3db88e1e5080a
MD5 f93e2b7557b506f9f54a143c13bed67c
BLAKE2b-256 6d3f009aaec1f34bd6ee8471cc20f4a0a1c49ce552d08bc177c72cac146b448e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e7a333d94e5b8ddbbb0b67b91b20393c0721c61b3970c074cb598518e2644c59
MD5 66594655bb1d1890240182d4e1e602f6
BLAKE2b-256 a3f79ae5c51b895623eb19025e91b6658e26110abebfbc2fa0aa5ecb1108a991

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 095f49038000e46287fd2c7fa33b2488f4af740bbdb0d9d92f226f2229469bd7
MD5 96852a3ea5091e269e3f4fb5b6387ec0
BLAKE2b-256 cc7d175c4107d259ef42acaac34791a6c811e542ea38cacc5c0745e929af71c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d2ce6be5ab9f7c54e15277b51cd8f32a3556e7c5a1822454fe28670ff3c183c
MD5 3dc8cd34b6ba6e2fd97ba224951a1576
BLAKE2b-256 8eba8f80651af6ad8cf9293564689eed74d7736409b15a191713090b0b15461c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7d9a7d113d086d991fb2e8ff8a48e297c05bf06ae24cfb085a4d92860164ad95
MD5 3dc84c0d63932e8218aa4adcc40e130c
BLAKE2b-256 9b5e0d5ef68687aafc6e4e4c1bd76b9457894a0535ffcad3b84a7d8e53df8090

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.5.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.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2595cfe19c0109d032ecd065cab78765f4b6d325d39bfebe3c565af41a363aeb
MD5 c60ea46f6d5a2883d1e0fe1680ce1045
BLAKE2b-256 56bd8249849992ceb86766b6a6781391ac814c0bd55826887db9784fcde6ce89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3860824a434264866894f578d1496aabb0556f49fffeaa58b4fc1575770d75b6
MD5 ec5b82b17c28680e7ee0df21fc0872d0
BLAKE2b-256 b488efc00675db311842e5546b2671817fa10db17a3024be19d482ca76ac9e50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 55d7fa196400b229a7f11882858fd27ac0d94b28031b58023d187fd23dc8adab
MD5 965f8170f6c4d90b5e8746686fdd4f2c
BLAKE2b-256 26a9095c3572edc00f7f122012c7efc90a7366f84faa46841af78fe7dcba3a5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a068cb280523d9f5ede19463e46a4e3b33d6b83385a8890b745eaca9dd4897c3
MD5 1a34c6e3623c64c6d1cf4f776347d24b
BLAKE2b-256 a0b9e767929b77eca3a8915502961fccb28b9e515be93de15da3eeba91a09a92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6495e442d2da548381395688b526627979624ad31d9276a9c578d6fd1ecf72b
MD5 07183f31b12d9deab4382a45b12f9dfc
BLAKE2b-256 c06755bc9a5c98c30e0a304a64f9cd1daf726fbae0ee9683966c92eb734ee578

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 668d0c3072b91323648e22e92c1c4e334811403872f5e007cf7ea049aa088f80
MD5 25144efcc4c7a0e6deef800eab84d694
BLAKE2b-256 1d2d40c70f30ab62a0e8188faf0aa31b0ea746d9f6dea9f5162bb004a7f54ca6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a671cfd621af0b8127237fa74ff819613fe8806b1589495f2f72b51d0fa5162
MD5 52e5362412cb0933ef085ea1c8ca5f41
BLAKE2b-256 a3038c1cd4b44b36c9604d4c05a20939db05c92bc631fc2333374d8cfa64c80c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee9c8559a2c30dbdfb11cfd9e38329edef3f3f1f6e6d991c5c5373277566fd4b
MD5 3ce6e0bba1aeb91b52f1e87a00b95446
BLAKE2b-256 4979030091c19c737e8f86db2bffff83d198c317069b24f6db360b451fceee7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4280f8eebe12acff5455bd460d6130cdcf5fdc6a994eea4fa9d7a90930e1ddfb
MD5 e55a1900cdd8e17ad566d15fdadf3432
BLAKE2b-256 9a70de63dc74369a1a601771ccc579c7ba0ff7fe34788658dcb8bea114c5ec48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 35198ea93ab02d0069149fd7c5044a33d85af02917b2cd9a65542b051f217ccb
MD5 254669feee2ceed5fbb9ec53205fc86e
BLAKE2b-256 0ef7aff6afd0ab0d94f7f5c921794f068393d5ccdf250e8d836c990a682054f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.5.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.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 25b7bc5eee5886c3b81ca235513dcddbc9e1b556ff9b3bb5edd9926f15919180
MD5 f283cb5f230055699fce7cb7b68c4124
BLAKE2b-256 7f2e5a1174ff9b2b2fa4f3833773a9722c61afa0af4abb8767ecc85210c40bcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1973067830702e2fc7249e6a6a64a2b3af6ea4285ce9928fed487b8655cc13c7
MD5 365aaebd35e109d02c75c47e47a00a03
BLAKE2b-256 8e771d6cfbfbc528af406c9662f66ffda5e7eaa9cbed2785082db6a12b37d291

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ad2c032ae26421a0b40f78e74d41e3a130d47a0d2fe5a98a15cd594865ec2bde
MD5 8b7e64e02cdc1d1092f85e8629313a05
BLAKE2b-256 3f0b7cba6e24075f9f047a937196d6e65bedae37f9f0f7123f9861f47e63556e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 266ea479e5eee4b5a7b0734027cb627bd88fd43c701bada9ac4a6254e9fe0892
MD5 9dac067e54c55a6df2e4808f24b30991
BLAKE2b-256 17df615ecff077a83376df968ac12a908e729d386d33ee11fdecacf6e508b720

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5c5a29a75fbc08ed3104f402e5671bac8893c0e84d6a72ded9ff3f17ec866d7
MD5 4a8f43dd382bea803c3ee94718911dc1
BLAKE2b-256 4f9c709549545ae9b847645aef11ab559cc477e508b2661f333c3c43ff43a09c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1479401d12fb1d0b7bd93078e876f78e461d969fa7e37967bacb880cf549a86c
MD5 45586b0acea26c485da2da9bd7a82dff
BLAKE2b-256 cd1f2f58d081c960c061a3619656e6d8f4ec4176c367d779d94cffaca27efc49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3348bbb474e831c5a54a349f923b90186ebccb9ad4ede614f5bba5dcb98046b7
MD5 0819507622032563c60e4304ba75d249
BLAKE2b-256 73d9e2e78ed2e5fcd592ba517d6064ce4226f9c854faaba4045aabb6c2564f00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14f23cb1ba4259da9a9dcd746046e79e04e28a4395f33c06d31317dddd8ed84e
MD5 1789def7d66c99e68cc841e175aae6a3
BLAKE2b-256 f17d4ce7db649cfbeee32e76646bb31d1c5aaa54fca4b73bf653fe2c17123fc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e815236b47eea9f2b38f6917a2cdfa1d47416b24c942b9aa77bfcccb54c9d2e1
MD5 4deafc81faf34ae6a6d02ba35a6da3fc
BLAKE2b-256 7b69259c8a6917b21e40d9dbdbdcde9b83d9dbd13e61eaacac7b6a8602bc35ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0e3cdae9b6176db748f76d35117d9c977cbe3c5f4b28e3dee8eaad929e8e69eb
MD5 0366c607cf8a9d4aa8aba828e0568b6c
BLAKE2b-256 beb59108abb67321521241c3a6deed16691f0d0f69690d943879283f873c2bd6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.5.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.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fc48e3df8f9fd3aff82410789e6b4849c389afdaeab2b6fb502f42d169a05342
MD5 4a37219715ddbb12b2f7d2b56de67750
BLAKE2b-256 a7d77566ff4a173846815becec23c04d34025bdf1944e9a994596a9b55ed6e1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ee86d9265158b6b0b392d66d578b04ae7d78ab8a8a816274e315fd5d6707c624
MD5 76c851dabf2099311333d5ddfaa4542c
BLAKE2b-256 3d7cccafd1c942eba12525349f4bb6e8459b6e5a8859519aaed01548d3ae8a21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fcb284cc8e31619485bd5023e5b195174d5681d3b55e79db15a6af83aa7a6dc2
MD5 04860f799bfbcd8cd12c101dfb939f0c
BLAKE2b-256 f5d374c7efaee5a8be23d8c4366c8fe9dc9e967a0cf946a1727725ef66541c47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7595d76e8a970d5d58da8f766ced8a3e9c415ad7ff5966cb904ae07eb5449a5f
MD5 a61c4140e466098b864884c1bc806cf0
BLAKE2b-256 4b4a436e8b516d39445cd38c3d18b4dc948617a747d02f17bbe215bb5aa569f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ca2937a6a854aae6fc35b13c3d6b208274e674a580791961b5a6f5af61e9079
MD5 d2cb745ec38f51bc7956c3a697350a69
BLAKE2b-256 5e10d0c9c08729e256b74593c87239a8c893498ff2c0b962768465867cd66d43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 255534a46ad58b4e321c68e078237e2e93d00eca4394aa7f33ff1f2aa958187c
MD5 5598d8b69c516cf26fb658925f0238d4
BLAKE2b-256 737163e7c89c53d449142433e6044d2cbac74f03ead643a1183a61967d6515d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 61414fda864febf53acfb180a5178768a29ce80d22000edc3e0c529af913cba9
MD5 c181f7b1bcf7506ba834a3c952f4a66d
BLAKE2b-256 5da61a98e5de76942d986064db53d83ebc7756d3bded18c40c8c412c936530c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3ba33f7aca3234b98e5d152b9f6ae6dc2cb02af682ee61429ece3d419f044456
MD5 da2cd7a4da19ebb43e4073379c012711
BLAKE2b-256 e1480cd1651179bd00b7b75890dd22384ee8b557e220b51ea51136c3c3698525

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.5.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.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0d451e16d756d8f9b768bbd6113913128a52861b6255edca18ed25f9ebe4ddd4
MD5 6fe15152ec5ce4bd111dd5477ac8c78a
BLAKE2b-256 fa7c3c56c24db10876f903b6215e1dd08ffd9d88035c94001056c1df26f42a62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8e86f5e1c588227f03eaf4a9329407906faea692e4d6002b6d77738366207eb3
MD5 31c82bcf055df2719e6d432a8e41f8c1
BLAKE2b-256 78406ffd9f0387046915c3dbd7035eff3e64b616baf69e5eb8038762afe2e1cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 107ccb366289271850632c8f4a1b1b899b6d029c14e2c8f05c2f63dea391a7d7
MD5 c9a769c27255397b0cfefa2bbfb2fbe3
BLAKE2b-256 ffc81e7ba2e9cbc3186127c597ceb0bd5b6d85a114593012e47189d1df59022a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47987d18beac484c0fa19eb3f11f8bec79005d1dfbe466d95c9b8a80da6bf2a3
MD5 cf55fe928d099529922a53774d84eb39
BLAKE2b-256 03137d9d4a1938293c9e45054b893d3bb86866ee1999b91e404d81d969933867

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19bab0d1c432b05218e5a0f7e52c9e820155890363341908d8e2935758d07121
MD5 037358e10f064b3ef159a8323f791257
BLAKE2b-256 f0461f846292933b25296a9138fbcd826b40cedcb17ec7024316cc1f2fa8ef7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f25ede7b97c3e56458b2483832ce98faa8064bef480b3cea829387fcec1c2af
MD5 14173a6cb7489ca038328cae5a2fdd5f
BLAKE2b-256 615dfd83416e945345cf32299d71a9732c30e3a5952dcce3403783d7f788f381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8da46c343911b5f6503688a48d8488c2ca390373f8bb2e23fc381e7b294c215c
MD5 3f54bdd33a6ddc4ea90a92a9a1c0d565
BLAKE2b-256 ac51af5d0393665b1c4cd6cf6bdf49da4e099347493e958d808ec7fd274fb751

See more details on using hashes here.

Provenance

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