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.3.0.tar.gz (15.1 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.3.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.3.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sql_impressao-1.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sql_impressao-1.3.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.3.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sql_impressao-1.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sql_impressao-1.3.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.3.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.3.0-cp313-cp313t-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

sql_impressao-1.3.0-cp313-cp313t-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

sql_impressao-1.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

sql_impressao-1.3.0-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

sql_impressao-1.3.0-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

sql_impressao-1.3.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

sql_impressao-1.3.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

sql_impressao-1.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sql_impressao-1.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sql_impressao-1.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

sql_impressao-1.3.0-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sql_impressao-1.3.0-cp313-cp313-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sql_impressao-1.3.0-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sql_impressao-1.3.0-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

sql_impressao-1.3.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

sql_impressao-1.3.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

sql_impressao-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sql_impressao-1.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sql_impressao-1.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

sql_impressao-1.3.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sql_impressao-1.3.0-cp312-cp312-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sql_impressao-1.3.0-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sql_impressao-1.3.0-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

sql_impressao-1.3.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

sql_impressao-1.3.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

sql_impressao-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sql_impressao-1.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sql_impressao-1.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

sql_impressao-1.3.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sql_impressao-1.3.0-cp311-cp311-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sql_impressao-1.3.0-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sql_impressao-1.3.0-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

sql_impressao-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

sql_impressao-1.3.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

sql_impressao-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sql_impressao-1.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sql_impressao-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

sql_impressao-1.3.0-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

sql_impressao-1.3.0-cp39-cp39-win32.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86

sql_impressao-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

sql_impressao-1.3.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

sql_impressao-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sql_impressao-1.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sql_impressao-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: sql_impressao-1.3.0.tar.gz
  • Upload date:
  • Size: 15.1 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.3.0.tar.gz
Algorithm Hash digest
SHA256 f870d66b5ff7fde4227a4645e75df7a60e69b93c9ab45d765b0e9ce45dc781d2
MD5 50a16f4cbf514994f5b7c8764fbebac8
BLAKE2b-256 54e01f458041ff54b4122cc41c99ccdfaded4cecc5ae0012c8e7e3d0a66512d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 19c25169a4b62578302523bc42d1cfbf8ae09cee470cfa216335269492e66f45
MD5 31dc4d2a7fa9af813d14d104884f3581
BLAKE2b-256 9f4c84a6560e8002e3fe8b6fa89c7829cad3fcc76252444a9912420a5f0f6561

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 47b46724f69293941cb6fc9902efbfb47d8d1e644e12a61360bfa69afe4e5680
MD5 cf8874c6e9da6c5ab9c21a6b72d22982
BLAKE2b-256 6d058a546a3906d6b080a66a13c03edc9b368257b6dde2a66a71354fb580a925

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4a7ad5b27511ea70f688eaeba9f206a9f045fbd9b8329cf18838c7bc156d2ea
MD5 a92ceb999d7d3b048fca17e81ce9ffd4
BLAKE2b-256 f9b10aac9d86156244ddaf3478264f34a68e8b20c60763f40a5b6792cfe53256

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 979d66ced4ebf1265dad0933fc881cb8f14c34970cb17303ab2c53e0fa6f3789
MD5 2cf507f3e9df7adc7d5817cc7de0c941
BLAKE2b-256 27ae040a4cf2f2efbdc9aaf882512f70c3f195a88e99de308545e7eb0b1f0702

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e5c096dc907381f540d5e2ecd881ab76dabe399193b77aa97403cf6723ff25a
MD5 a8ece10fceec2250be44e458bb344a58
BLAKE2b-256 269fbed3c2fcc89379d1bdc9c484c81651adfefc7381b14c6f0ecd4817a5e21a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd141ebbd8ef38346d4ea84889bef37887f599917d7ee6203f281603acb6f65f
MD5 91ccf21bf75d55c7d4834505691fe080
BLAKE2b-256 eab28cdd2d5c67b24c4dfe03d92d974d6ae860ce594d07230b0bd6d1075fe9c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e34ea71571e97e8ca2a2b6c1dde2f25f93f25d1785868fa0de70a72f1b7ace15
MD5 9814c3f0d4ed4cebb259adf2f2c8362a
BLAKE2b-256 bc5579ab0ce86bc7aa7ca14d70a98e3092d0870472dd7e129512e49c84d06bbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 20f33ba47ca324a66080b38aa088d4848c66d1cd30f8e5be696ff00c3b95d8a7
MD5 bb43dfaef1c8939eb57db5ac13df20b0
BLAKE2b-256 e23e8c596c04a9f6855846aa237833c026752302af4047ae6dc54db15af72557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ce3e406ade99ab9acf6024a17dcda33f57090a3d0a0587c7aec70fd5c523d4a
MD5 11177238587d7d1739b29c6c9bbf2cd2
BLAKE2b-256 c0dfe76f10cb8bd20881f8d00cd1f37afa36313fe28f0467b0b89d194998e4ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85083c0b1f562705e14812a3505677752376a99062f9a69e68e395efe5053d6e
MD5 7eadcf077d0ccfdac8943e8a6a9e6b8c
BLAKE2b-256 2adc7b4b9f68a26f6b253e2fe1e3184e2a67453c4ddd8a78b7f9dd01af7c625b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18c179aa937842168a7cce63df2b94af39c334eec4f627122f122f5113e15e41
MD5 77d94f5a1971d9f7b44712c64a6b246a
BLAKE2b-256 92336c2477c26eb882d9201b2e6955d4c5d0a145d45ff7fd69095b4e6adca169

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7093ae75d8c4416de7d866cb8dd8e68fc74ed6a7a22ce3fcb4df412ebbcba1fc
MD5 d8b3dc1bfb84b925648652908d8c42f1
BLAKE2b-256 644b857ee474fd3899ea1626e100012b0517f669e2e9ca3e752d2c267b209288

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49bc101fe75166f91c1ce5c075d47b4eb1fb1a112779f3e85e55958074aae047
MD5 d26588d547172ca49c1c74c647dc3bac
BLAKE2b-256 d76c3f3abb1577c51cf2a681f0baf98ceab1312e1d70dda9e9c46d5630138523

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d9d0e404f291120eedf23d76d22d501195ea99e4589836b6ca4089d92d867afb
MD5 7fd75c3fa5289a986fc1de884c496bad
BLAKE2b-256 cbe05a37ed51dec363d916efb01bbd7d6baddbf29908628ede1c4efe16af119b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e882f14d1d28a3a622d9b5cb40986b797d75ca92f2902daa1706410fdfc14da
MD5 10bf321c2d0cefe8f791e3eeaa351115
BLAKE2b-256 8ea031a4889927c86ebda01c593246b2ba57f4921abb742e8f90c4f26d1bb1ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c25ece5212c9e93d2740fd10096236c7f6d8c9c75b8496b2ed2ab0a2772e22e9
MD5 f13a117e172d3fe083162771c49e5173
BLAKE2b-256 b844826960db50df4d07e3bed9194f0005d7ece293c742989902d568da83c150

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c0414afa6ad8901fed03c0521907a4d693322a755b8b5c728424f29a7d840143
MD5 fc249385ac312ba80b4fde577d0e6f44
BLAKE2b-256 17ac655a1659c9217eb3fbf5717d0473d50a7d2d0aecd72c6f84ad19fa699c88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f03f7caa5e0e55894185f7412f0ee65264ea4df77fb24e92d0980cf98cb9ad93
MD5 5c81a6efd3ba3ca6a92e1c1d8342a79e
BLAKE2b-256 8092890a3b8c8564fe155bffd7959ef5abbe3666d31e60ffbf9d59041998cca3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1fa4690e432541f028c981841d1b2061f82a2e18df8f09e44d3ac2b2e3562477
MD5 c303eae818faf28e7e9cb62bc819d313
BLAKE2b-256 c4484d58c1a442051766a692c462005c74468ff99e1d820c1fd698249aaa2e2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a148e1f90ae6a0ee660fa4bcff98a9257c2e38d9196c9a58ddca54122135afc
MD5 99f7f424f032361d4cf437f157c06c61
BLAKE2b-256 9d12df71afe7221c655f6a3ff6714a4a63e6adc4fcaee7eb1d34a986a9ee9413

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f53a8c8b8440ba0fba5852e7b5562b6c3e8897791ed4142603fecfe6efba384e
MD5 4335141eb58bcb5e894c9ffc781f7604
BLAKE2b-256 c178f0985970c439d856e5b082f1dc2f2fef027063f14221506c872694999c3a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.6 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.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0778be7911d3ba69c93e8860fa1a55aeca07f038f7e9d3b1b4321ed6a719bb71
MD5 21371623be9b2c6b80f34e75f98bce4d
BLAKE2b-256 901c3b11fbc80f13cddc3ddd2253fe8b30618bea19e6005f0ccb90e8c99a7a8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d9f92ec4550578e97c6866befe1d340a2bafdc07fe94008a99715bcb723ed121
MD5 48b6c93e4a6cb5c3db9a90c4ad937e4b
BLAKE2b-256 bf9d5c411339013f941c3c847efaf12189242fc614f501755cf095da6b145723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 20b50241855e9212bf7ed2a6ef5af9c68c67a143cda91712ce2bed6f12772aa5
MD5 b4ad079febd339a1227aa8b2773a9aaf
BLAKE2b-256 2ec8166beefa32c7d770242c52b089f3841adb8339589fa25320b8dbaf5980ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6bc82f71e65e297df91b8abea0460903312febf40afaebe7d9a222799153c51
MD5 85e938268fbb305c5fd88ad8a121af24
BLAKE2b-256 17bff71e6603a83c55c53722299e10e4271ecd11112b4026b1e63c0b133894d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6197635fffafb350e6e085744987a94d13980784d099b13c39ea044f64d36d0a
MD5 1921c83d2fafda5f3c32faf88a119021
BLAKE2b-256 dfbfbec0d343097dd9444c77dbda22b4c8d8555ab5d6a6b89a034cdbec704c93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5bb1f6eb34b36ddc57146669f86d39965c4004189f4fca64245d730beaa0a6a0
MD5 70df51d419a1f215077f957e443cda92
BLAKE2b-256 a5ad6f06ac08f83d7b36e3b991d040585796eb2650789664f5f4278d6e400173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 58b35ddf1c6cef90e9e82e37e3dff00d2d04aa6caaddfaead14d0967ba108d2b
MD5 e08195c3b1395191bcc1ffa77ccec569
BLAKE2b-256 33a71a186ce9acfaf2a7b14d89e3d9c9bd11550b838775fe2ced4aaa42ac13de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 746c18c34ffd11413b67570258d4bfd260975c93fcfc42b0100d324731ff8721
MD5 667e4f4380145cbafee637a662561024
BLAKE2b-256 f564700721bd0ce13694fbe2017f94d652a0c2aa20f53f3438f5c24806441ce4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7922d5251fa8c4028fa0303f3aeea4e09a936194fda190b8be509e0d2026f976
MD5 5b877e88f9afd448d916aa0291f41ada
BLAKE2b-256 12925c6ef5b02bfcb9995c8cfc12d96626002d58e364efd8135935bf2e10892f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a8224a92ad679f476e446a833d1b177b9947a23cda652a07315297b05346e12f
MD5 a44d876c50b2d2d401e8e1571f97e311
BLAKE2b-256 e202d4eb439459c9ab9778dc0b7e260cce862c803d6f588cba54fcb8a2bc6b7f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.6 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.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9b1eae98e6cdce631210916cf759844b13c606db18d99e8bcecd0d9be5ff40fa
MD5 c6095d5bb12776cdf34e867cc373b780
BLAKE2b-256 88e17a23aa72b8b042f1883c118532b7001691ee32afa0507cea84379da40f2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a1588d3b9b1804f8ada15959136b8b46f38bcf8be111aa92af362df2cddcc136
MD5 5998e8e910e6ce28d4332fe42fb323ae
BLAKE2b-256 af2807b391bef63abdf42f51fc7fc6651f2d6e3b8f540a8e8b258bd5251b3d21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0a37f3827b471200b503f1d0fdfb83f871c93130d3782cab586016128e849c27
MD5 2138812f52843bb20c1c96361ad739d6
BLAKE2b-256 e589c19f0b6bdc37e5f8b999e6230d8f090d5a7e573a55e28dbe2890a5c040e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eed873445fd66e258ed8a2069b53969a4778b9ec7ecd7745f52d1cc1b2467167
MD5 36926cbb914ce56febea23882298f9d9
BLAKE2b-256 dd0cbfd89282bfc8238da7724c0f5c370a4ec9f8de7cffd4a856e2458530c89c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f7610183d75909681a52d2600416247f54b7b635d6278a17764addf8d4d7bc1
MD5 db79ea4953f4d1e73471caee54f4df2a
BLAKE2b-256 3c66f98c2eb51b804f20916650d24d6f12e8879870b83996a3dfa3eacad5c93e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df1b98aa0db6872e4e4cd800be7c906de3b0626d9aec2ec433d761154813a2da
MD5 e83515a9f6d06ecd629214d611c124a1
BLAKE2b-256 9bdd246450c726d4f443344757a7dd8759f985e9a1d81c8465bfee173c4561eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4df1465872d6115a9997ab747af4ac1e28208de8279c7c7860510a5b121684c5
MD5 2624181d62c4188e41cbc22c29583759
BLAKE2b-256 e36aee4732e5ce304c0dd1656b0f90a29060ce83fd87405701f7caa15d8486f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fc7636b079bc4a09b3067afa15ad4d06146f981b7880a83db55f6ae857edfb7
MD5 5bdca422a1b555dd7c485f8a6a47c7d9
BLAKE2b-256 175bfcddf222f16406fb4d6db5d6b43e2a94b73688a1f9a8d58514b638aaa9c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2cfc4d68f76ea9b47464f3c368a6d15200e85a78d9d953a379891471e9871552
MD5 63ade0ce7d56b5ecccfaea8de3a971a2
BLAKE2b-256 50461337f849c499d38d8646a615dc02f76b7f07c3d9fee1af00e785a970ec59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 077e9a3093f6c73a59251103368981dbf2f5acd46630fa6097b58579d4146397
MD5 6c29287855360f7cdfe395ed80fef1ab
BLAKE2b-256 51c6af7b655b7314e86dd7e33815e43b797671c13e96a78b33bdb80a548a90e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.6 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.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d9fc97b4706f96e4b6645040d3c0fac7541e8e14458af7aee2ed507814decd07
MD5 b5f360df1b4cde505d901a91ff6195e1
BLAKE2b-256 9905f5f2b5c076b44166e3960fc1d196366f28b32ccf8df7b7f5c9da0b98c690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 91191b2134d21b591aa79ab130af359bf85c7c99470de6618d2af07a2a29060a
MD5 2a235dfdda1a0505be25e5f374bcdd53
BLAKE2b-256 1bc496bd97f0d49fbba9e429575361005dc2d28b057de1d8963df6224c1b97c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 44a068ee70a0b2aaf70a041ac1b2b97c024e7a6e23da48ae52abfa572ce8e9ed
MD5 ab5081bd0d87bf94fdda5d6883a363c3
BLAKE2b-256 303091a178ac5f6915f97fecdec58bf2432e9b6c79a16466506af3b057a0ba7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7ff6f7282d96d694dab49433107afdf2abb4f43d5f511a0832f68d003eb8de1
MD5 a17678204b537db722bec3320126ed49
BLAKE2b-256 8026d68648eb233bf41c1790ac96bf7e74872724d1e9f82b45cddfe590f87495

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa1127a6abcb0d0a38219177dc343c8dc7ad30425e9e7ef3b4b314f359d51b0b
MD5 390c70135ffb30706f901c48c2a25072
BLAKE2b-256 7b7a8a5e7b302a968d7a8af273e8d9d17f6196db4bfd569c327ea3342726c67d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e835a95937540d2482eca03fdba4a373be385e9ea4b5417c1fe14d18409b1dca
MD5 96b765a5ed7924666f95024ce95f932b
BLAKE2b-256 0f83edc98b223841623f5c01f075f53e6e1fc49a1aac5e66399a48cf139efe5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 abfd58221ac59a7a7ebc469d748da85d24b72042e8475ed1a400172457d5a4ec
MD5 8ab340a4a67ef6ff54fddf1d4f3d5420
BLAKE2b-256 bd5cfd3e71f7057ce7ac24a5a81680f903e878fad33a1b1405cb7719bfecdcb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0311a04c3848c0cb23650c8bdef45385827c938d47143b0d85fea8115c2ccb26
MD5 64e1e1aced68588942eec385ea0b69ea
BLAKE2b-256 d519eb6825b6bffaa6bd560fb6c9b9b5cba9eaa55ae2e763315e0e7b8309995f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68cad406bfa8aa2a6017e58bee0b9cd44a8756d8e834342caf93c4b8a2ff0514
MD5 f8c12df3c63a6c12ba51aabee028c09f
BLAKE2b-256 c3959ff003e5bf49583cd2b4121c12ed19dda3613da6cf1197df0624edbb53ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 85ca207d84ab6b2ab9575afadf964e3b1cc71fb114de9cb568b364cc2b6bfb7f
MD5 19ca143942ceaa78e2f285b1df73f93e
BLAKE2b-256 b7d141e8d54a78274ec646338d44c822b6a1c0e78d1b5567100226942008089a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 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.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d60a72e7f5d5dc5435b08f99abd9e66a5ce06a4bad6fd57c95a8ec4224d6af7a
MD5 a7e153be9aaa51ef44a97d41cc04c15f
BLAKE2b-256 b02330d270413b5e6fefee0523309ff5d7e7ab2e0353bb88f8871a83bd7054df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cdc4706f528de51e5a14693cc9012570a8af34c86a027c67aaaeff89b213ebea
MD5 33fffd76f355a47da6423c4cc5255fe5
BLAKE2b-256 7678a8927dde4d03002a353d8ed7234b65f16f1e47286d07ebd8a45543372b2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 33ae4ab44a0f80f0b08b8a9517635c1477b1fc38a883b75ba5167724405fdfe3
MD5 54ce00ec1fd1400998705556413bcd00
BLAKE2b-256 3ee777f3261bf5beab16bb23f4a2d4f6547ebad9b61b95a896d11f2d5ed5ec7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88498e6a7e5b5cc46f902d347eed022fab4fa46ef39895349a7c3f08538f04e2
MD5 c6f0ded396349cacedfe12914c4cb8bf
BLAKE2b-256 22bae4318c1c2c4b51e3a9f4ccf66399b9f284729b6fb2bcef1f60a5cdc0951f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 86279ffc2c9f77ae02362b28e5eea408a979c3726fcf3cdeee4ba0f0321ad373
MD5 de73e1923ab5888ae4212866b899ca84
BLAKE2b-256 e3c6258ad6aa079583e1bc1f81dbb40c08bbed69e6052e64d19efd1a799a69bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18d03b4c78994dbe40b141f31a6a7f2114cbccb8e5eb589bb04b5072270c24e6
MD5 f528458be1de532089e225346fc1baca
BLAKE2b-256 7e7ea3b86420c5be06a9ee284a31b2eb0a64b5f2901f1549952f0c72556b0382

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9b54251a798515e401d95eeffd0a136dc7b86a3e1a53d0fa97c62a508ef0afbd
MD5 8888b1ed3d9f9f897cb96cd5463b7414
BLAKE2b-256 84115e82d374935a259b3659758eacc90d9823203a98b44015b9a369808bc267

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ad48f1055fa7e9dc238428656de47c238c1a07362410d4e5cc166152f02bf67f
MD5 e6bcfe6467d05d2e05d813ea2545ab46
BLAKE2b-256 b9572137f9b3a672ab460655f5148acefb795dba3449f787438687398b214f7b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 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.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c6b8545c3c314963754ece1e8e97d894c80b3ca84a894af8b9d442832ce7c5db
MD5 664ced4423e124c22cf153c7673bdad5
BLAKE2b-256 afebe0f1900c6a9655534395c541b00c378fe179722612c7a27f5e312c058eaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fd54e475393c311114e77bd1ac6619bb153e3e1a51c8131c19b45621cf3ea4d9
MD5 6bff64b6a8a7f1953c139c9a26a72158
BLAKE2b-256 dac8699323351b9c1b5035dbf7e0b1f955b96876bcfcbdabab1cb2c83fed89a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3f196b448469d071ddc21cb2c7fbcd36ce162f8d1b8ce67a26946940e99c3e4a
MD5 872162de9449279523cd38599003da34
BLAKE2b-256 3489b7ed8dc4b9ea59803ba39e7c456345639b95b084777b8bdd536c084fd453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d825dc9db74d314c1fbed58b04bd53df4b3bb8809ced65360b41387a59e18cf9
MD5 3970cb0ceca2f38391a437a64b65cdae
BLAKE2b-256 2110f644fccbc1113dc38ce1fca0641d25bf50d4a0c36cedb5437a77d7a6339a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2fcbc892f5423b51a75adf51358f280553e408c357180c3c7b3c1593754a987
MD5 872122227c34d50a31a2342cfb09cc0e
BLAKE2b-256 0b8068babc19e006fe497f6a867e4f686d893113b51fa454ee20c8084f2dd981

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5bd0115b9ff073f2af44bda54c33d5fb0096a6925e6a78d9461c2cae8adc8a6
MD5 3613c76e3879e98b5098f11b31854c1c
BLAKE2b-256 5ca5d6a7a82e02577378df5be1c76b39f94bd0d18deb4f4c8691d86915c0c7f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 47d0efa3163b1386b7f4e4d71e18cf157f1ceb57488340796da577f9e8b9c32f
MD5 16ab01b2967aa9fbe719898a65cefddc
BLAKE2b-256 fe553604537b77a1b31bc7db5d8f1b4e66dcba54a619ca485d457cc6bba27e2c

See more details on using hashes here.

Provenance

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