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.0.0.tar.gz (15.0 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.0.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.0.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.0.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.0.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.0.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.0.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.0.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.0.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.0.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.0.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.0.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.0.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.0.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.0.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.0.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.0.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.0.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.0.0-cp313-cp313t-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

sql_impressao-1.0.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.0.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.0.0-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

sql_impressao-1.0.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.0.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

sql_impressao-1.0.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.0.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.0.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.0.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.0.0-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sql_impressao-1.0.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.0.0-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

sql_impressao-1.0.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.0.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

sql_impressao-1.0.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.0.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.0.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.0.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.0.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sql_impressao-1.0.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.0.0-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

sql_impressao-1.0.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.0.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

sql_impressao-1.0.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.0.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.0.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.0.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.0.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sql_impressao-1.0.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.0.0-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

sql_impressao-1.0.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.0.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

sql_impressao-1.0.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.0.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.0.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.0.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.0.0-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

sql_impressao-1.0.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.0.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

sql_impressao-1.0.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.0.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.0.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.0.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.0.0.tar.gz.

File metadata

  • Download URL: sql_impressao-1.0.0.tar.gz
  • Upload date:
  • Size: 15.0 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.0.0.tar.gz
Algorithm Hash digest
SHA256 8464d37b233f5b4b111110ece15001409a55911a3126863e113084470b3b48ee
MD5 71c9d945f073dd4686a8b7611cb9faf0
BLAKE2b-256 e955395f0178f6734a29f0f4db1f16a3cadee1656ed11aa187317ade23851470

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 81fe26a7db7660e9f355b0febd008e47a7476f4cb2332bc6a60b085845ef3886
MD5 b75588c09b5ac39e480dc8a75589493f
BLAKE2b-256 f8446315ff623539d5cb617cebe5a96ca50db1732ce1485d0d1dab23956dd56f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 12edd13520d02e6d07d67f9a557a62ab705e0c0fefd01e31162a9ce67d2d6ba0
MD5 413d0b11a5b563fdc967c15bf8a202fd
BLAKE2b-256 aaec88eb69358c9bcff44f4b0a6507d5187efb3c92fa93a6cebbfd3a2e95fe00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 018b1983cfb521223d9964eda44aa13202814c7d330610d0b71c6aa5bb686679
MD5 ba7ed8fed80e5c41d80701c8f3937610
BLAKE2b-256 d1ec8e6d80afa4d8550f896dbdf64c389aabac677a601e3058d3f42d85aba1ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d87a137a0e23bd5d203cf90097fece669f708d1057ddbfe4c93f172c81d70103
MD5 0f8fc4c93b3b7c5cd21e795b7b4849ea
BLAKE2b-256 0fe5377f854496030d1f02b4db6225b68d11ec33d6d28ba314ed4253a3c032ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80997abd36dc31d1f6d3c376684430822e531b2877ba548951a84a531011d452
MD5 19f6231eb611442039f36994bcb09483
BLAKE2b-256 ce8054c776bf60ea36a42a10a93b32fa7d3ea7ff109b298a1fb43f4c47639ad9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ceffa2e4184ac551dd4bab2b468107d7008492dd6452c18b6a0c645b10fbae93
MD5 06da3b73ade9e07a7506f67668b77a2a
BLAKE2b-256 a5a3cf4532a6554730ca1c44ed0ff43b505fc0ffe54927a600ec05f6af1c74f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2275aa335720c2dd2825b8bc6d0963cad16c0fd75ad270fbdf73831c42b3f1f2
MD5 83cc5212b3f7c1ce57591fef98d295f6
BLAKE2b-256 29f0c73eb50e8a3d250d13c384956350b758430efa6815c7d86c911d05fba8d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fc5a13cc6f64bacf89ea6c04c15407914d783761775d68467edb801a3923465e
MD5 1d395115644b6a05d67ba80bcc24ea3b
BLAKE2b-256 0d789a2ef76e729844192bb76bab14c6fe938513efda487c9311250ef53a9186

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0d005c0bbae7d505c722416ad8477ea5e671a4f80c05826dd5d0f51bc14b5c5
MD5 0251dffc352f43a655fc9a6642e0d7b5
BLAKE2b-256 153fd212bd5e4096e36ed6b21c40012a6b85e8de833d8d08285efe86a8fd160a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4cd2bc0576ade24d39e7bc13fe89750a4903809a79106ed144e2f436ee85446
MD5 f00c012a1a6e498ef5a725c2255d4eb6
BLAKE2b-256 dff61dbd89b7b611a00bfc180d63f2c33fc59c45f5d7d89c8b6c866e0bd6edd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf6031ad4b9c7f32e64f4b6d13a42492020c1f9c1e33e9a3ba2af1a53a13fb7b
MD5 f0e635496b68d660877613020d69d149
BLAKE2b-256 e8c454c5c422d118b7865676e83d2360607157e1703ff3ec031a797f536bb82f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 681c1ebd3f877f0e53a6babc9f6d040b1d06de9dac0a570ef5b4895572759e3c
MD5 effcc3ef8381e39934c9e3c933d5b2aa
BLAKE2b-256 2dbe87556f21cda3390323614bcaf6bd06b4ab3a26f71a7aca4be3b89a9c2f32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5995aeb9766b0b4e84aaaf8a4155dc4c1a71f8a197007f8554111a713a17f128
MD5 b0df72185387593dff8c10603b46b2ac
BLAKE2b-256 1bc0ee5d24924ba9eb3abf9ac65ab6d0697a9d0db419f0e30d8922947a67bd02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 94bf5cf84ada3bde9be6776cba167a88029cf6e16249c8a535bb3707319c20ce
MD5 af82f24d261c2719eeebaeb84b27b9a5
BLAKE2b-256 7dffd11bb9e235462ce83a8094a4740fd927a66eb5c4d22180ffa478597f9566

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f911768be4daef26e36e4f541e0b3ee07bf34e67deb732c22f4d177b08b2c49
MD5 e8adfbcaee488800dae8ea522df7628d
BLAKE2b-256 11f00f5ac43cd112374f5075e06f36c0722df1ade7f6df49ebba1d425d9f074f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24d330f4f5018343caff52dcbfc0e722f3265d6f97cba4b2a27fa00ba1b5a300
MD5 699c6bf48b9727b5b64638843797ba8f
BLAKE2b-256 406a710471b86683c32f3db0a07864da537ff15464e1c5f4c22c4c2391bf96fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab6af42d1a9649880a6eceb843de54a980fa10fca33d689fc61c1383ad558a3d
MD5 dbf33d595a144a00cbe7deb492141668
BLAKE2b-256 33fa6faa0148400a80b1a9cd57607c880b5d31bed53ea74d6e73a7cbf4277878

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b8a9bea87ea1cd2b615c63b8dc03390024f0fbd0cd2ed351458067664d2ff7ad
MD5 f53e81c32e93f91a2f793fc336ae8071
BLAKE2b-256 5c335ecffd1c21fc8a8bcf1da2865e60065d7af9823fb5293d52b333c4566017

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 390581d41f9bc0cbc275a14b3632e54e5267fd4bc8ff3a91d1d7a76ec03b15d8
MD5 5a99eb70fd5df4a549b9432abf36d799
BLAKE2b-256 5744a71a832d2fb8612a371e2c15eb4afb31246f62df721c05750e5a9abc8de9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f401df44f2635d18a9ea646d70b7b7c0b614e271120b8525170047d507b9d08
MD5 2da20aec5565f4989378b407a5d39beb
BLAKE2b-256 22be14495ede20fa749c38900f8faec368ac3b966707f073d51ff3c1d2dda87b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9c8f7cf0007dfb9c4add47593d8d1a24138aa77dc57224a530521023369f5539
MD5 5ba7e00d542f1bed5f759a7c78f3114b
BLAKE2b-256 dc63db2725e0e8159e80551bcbe2ebe89849fc8eda9fd8bac61fd94bd0ee0c57

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.0.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.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 092b158a3017408d478367c71767c910907df728114f36b026e097f423230e47
MD5 2c51645048bc0a47e42f40101d76e5b1
BLAKE2b-256 7927c78f1d61e0a7ac8344b977bc76bd7f3ac96697ef2517547da3a420b32620

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 15e76e556f9de3081314996b7365b75eb516a249b6f4b72626f5e716c384aae5
MD5 ae44537e6007b5bdfff99f82beb5ccd3
BLAKE2b-256 a8ef3080eab040803c1cd8e594d599b4d053a13c954e7652c18d1d5ab08f4557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 33d16b08846c7c0c9d1e1f94742a5b72bed8df381f870211c1c22e3cbe889da9
MD5 b55082638d6251f0c15a9cf952e26632
BLAKE2b-256 4f75677c989480bcab3f890c7da42423aa32c9c2e79d6b3f0f323f07b9e65455

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7248441313b6eac24fbc1e3a92975e11931d7ebe43ff0c4b66a2644065f8d98e
MD5 01fc8c5fde133f0996df138537deedb0
BLAKE2b-256 a92ff2d793f34f4336c65d9c6143f14e73f445925a2a9ae3afacae8eab6458b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fb021d8cc93dd1624edf15f6e9b563d8b85a321a76d5868a926593c96641b4c1
MD5 6da0586cee5fc91e0b0d0453f7823937
BLAKE2b-256 50d08bc81a41f3c04fc01da4221d84f939df3d49401fcc0a8ac9b8a7f9a869b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1af7a7df8a80858e0254225d0626236e4e0a10ad8d732ebcf4a28fd15b08c15
MD5 0a7e15d9676844915c54d1213e64b335
BLAKE2b-256 7000747c397b06597d8da6ffa173c07bee066793f9227c5adea5655efaddb063

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4793f0235ef260398bff1681ba666089e4a5455a2ec37cb27d3d034dd7c8ef28
MD5 714ed416a34b38bce3884c12f9585974
BLAKE2b-256 f73fd6e04f1e8dcf9b3c9f21379e15cb5a038ba35447343aea8933ceb22a4ddd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e18c141f0cf9ec7ea3602f73835f9506965c2c2016ed65c4d64e4c4b581f1e0
MD5 5cc706e75c148396bcd05b1d8d8213a9
BLAKE2b-256 00132c8d202514751e3d7bad9531004cec253bcdf616c0f0f3d0778bdaa0dad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 737f8f94f3316257d40343b6b9e882cd0514bad5e995372bc33d77d679fb5246
MD5 1947d447fe6321389ee9b38af9168da9
BLAKE2b-256 37c31d4300488a34568d523290cd82e1a7a79f328fb992ea97af3145deb8e170

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f6fd2c5e027add2ea9094630a3a1cbad8ca9eec91180d814a412f52b05857703
MD5 283663deb961c7b45227c929c3fa7aa3
BLAKE2b-256 41b7fdd4cfb2a63d76f165a0b1abb446bd7e6c02b4dc3be2c3a7f32548613b74

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.0.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.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c707edb948e8b8889db263246a1adac523b586c7d1a69ef5fb9f947099d77101
MD5 5cfdd877e171cf390cac9ad75df01365
BLAKE2b-256 09ede8e6df04bcf8fa9c59c4f10336190741083d25abcf046ed03eaf082c3586

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 043a3b5186a28099d721de17f81f8fe388bdad5bbf77b1917b58b08c5e59e054
MD5 df3871b440b96291e5e24db3798726eb
BLAKE2b-256 24d125fd3c9d008cf07d9a04ba6f88d59e6edb3d5ff875b3ce4f7082ed74dfeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c9ab389a15ceef3b13af52131f1c278f2e1ede906199ef33b9d36fa8629bf3dd
MD5 0913a586d264b5674705da73e3d07c15
BLAKE2b-256 be177b2bdc3a65c010376c5d4302ad7e2222bebd15c829b555eaa7d638884eee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ceb76c3b4f3566340ebcde191d023c3ed87f793c1f2a9cfb6a2fde669e566c6
MD5 52a4ced4b071a5d06fd7f1cee31ac02c
BLAKE2b-256 f2b0aaca1044314ba206bb818156b383d8db3d36b3d4a1b780dd8f9aaf7f64e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6dbeec96df058ca921242bcd38d29f94299ca12120ce123971531170c6aa1d8d
MD5 a9995bd5166fd3845669f4d2691a8a4c
BLAKE2b-256 de868fdd56dea2fc834b943adb4bfca49c302e57e18a7c41bf905ec286e0db42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9830f52cad440be526a095e1740f89a9f33111a80269af986d92b5f60763ec64
MD5 0392729f128270c66cdda82b8f59a2f4
BLAKE2b-256 494112e8fcaed9d1e980dc5d93f8786d12764c3471e562bff1b036223f3b1446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e398da0fc013565bb3965b3ecbe81ca02dc829df573f0312b0039a593316e89
MD5 809b2dd92ee235bf01624d804452f44b
BLAKE2b-256 acafa86fd54153bdb80bbb10affbb200571cf7cb8b030f04256c625ba3fe2b4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d17dc8c1ce3adc7d85f86af6bb873afeba180282b255989cc69b38489e1dcaae
MD5 5788d3f68d2cf8baec11f9498b4d08ed
BLAKE2b-256 bbb8a58d976d5567fc9ff1a5e87a782b22f83cd3e0ffb95da48138685cdde76d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1fa826ed4736922903448f63f98870f49282648114bf61f86353e3cf665272f2
MD5 ddf44ff4d03c51e8d0ea0e1822375b51
BLAKE2b-256 c015e7cba0ab5e453dacdc6531bb7b266becb0eb79404b0326fcaab614ef510a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f2d83cdc86aa1fc4ef7e2d0dc016550e25ebf44e7934fa739eebe1a54e5be416
MD5 6f3ae372503aae759d0ef09d79291bfa
BLAKE2b-256 192d97bbd25b113317aca7bac5c71da2b6506e8ba703ea88808d826ea97fb58f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.0.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.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7307dd510c9d44eb7d1ddc5e2c60c9fe18e93ec07ef8e4c5c20f0f26275cf85e
MD5 720fb477df6bcf4bbdf1e64a37a1d870
BLAKE2b-256 86cd7881f0bbfe6be90bb5806374876d975da8795035df41e98636d05278fd2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f183ff1805f8b2a626f6f70e7924ca2c69b3c5cfd537e6fc41367c2ed7f0f7b2
MD5 baeb2e57e0ec10ed61952b7d4aa4e385
BLAKE2b-256 e1f4d4f861779396b92ec8145aeff30167a5782866fb2a93f33652cbef2df461

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e705e57d0d9325f186e0d4bd1c7ab67a9f352774339625d89da69c80a38a1d07
MD5 742cf6070a98e26e9c09409d408ba059
BLAKE2b-256 0f03e169cdcf0f12470a07886020aee78ffc126ae94e95ee4b9a6760535a3a2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07205b3f8b59aa3b85053e159c995a568828da3cf0df09107c5c6c6823f24641
MD5 b39fe13300cbb847e2c377e81358ae4f
BLAKE2b-256 7d39cd09efdb1894fa815922a7751034ef76a6419136f899e445d4796e155677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 645611c9f16cd555f979a65128e2412b6176e4fad158f6e2c7475e850a8473a2
MD5 6ad22d17292c86e1f0802616fe9639d8
BLAKE2b-256 7cce1662ccbdfb59c01404b17652d4401f5c8b6b8c6bb1ce9e098ca4c284e010

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cfba15f00974b611ecd5a652b53456badbbe1ec491ea74c30c471886d14ef25
MD5 d667cdb468a2cc0dd8c52d450bbb69ab
BLAKE2b-256 60dc9fb0c4c230c698317bc503da8e95dc187eafc069dc8b0329f2e2f95f7f3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12a7b8dbd035ea95a2ed1dd4a5d296b212460b7101c6aaf4d347dd8512e1f721
MD5 9ffe612f479839d06aff7114d3891a2a
BLAKE2b-256 0f9048f60e54dc8203c32494267506737f7882c49486dd400b267a70cd4b9637

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4109319c728d6a132c7197f73e214393f18c8533edd948bd46a4ba13b01059c
MD5 98a3b2e61f221d28c731c2b75f350d1f
BLAKE2b-256 7138f4dc5755290be8bc1b9197609c03ae27356d95d226013eba5485377f0b3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 305d112e506c19e914cb0c7361fb9e9c18ba5147b8ed4643145e722f9f52bb6c
MD5 2665c940c84a04b0d0b565ea151b2ef8
BLAKE2b-256 3a058e2140f22200ff69487042b9ef7901d8215eba3cf3be190c2ee43e384651

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c5218dcd39db05998c81cb0b1dcab6323203c0b25a8f94a925724262d0773f7b
MD5 fcedbd0693e10fa12a4db25a8f4aa73e
BLAKE2b-256 91a748ea7ff9d2c8ee0a61c0861d5d9f87487790fbb0330ca65d5b65d37fdb84

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.0.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.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 eea09ba7565d2de92c456ce9891026355d8e8c8b13819e719456fc98f186230b
MD5 b6c95dbf8e998bb2ae82e0237a00fd32
BLAKE2b-256 2b9537e10cf50d63ec4d6dec251c8223b8f690d23e09dbf4aa773f8b6687824e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 78dfd6e8e6e6b709f7746cc51fc046d7c03dc5a83c13ffd6fb72a0ecde00cda3
MD5 bc24efd9f81e30584c2ed35e7e6bdfbc
BLAKE2b-256 65ae610e8d586ae73e0256d2e8fdac60a4a7b4d4ec460b6dd408928c012c98b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ead6a3f59fdefdbbe2825b9afd048cbda03fe47fe84ba04a137ddc85ada44e6f
MD5 3159a651dfcd3bb9d65e350a4cafc948
BLAKE2b-256 090f8f54d6148b4c693e0d119b88f39d2c06296b4d62147639f777e15aed0394

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92fee71e60f78523d90be914332e2db5c9b4ad8279f8c38c1184ba0ec803f62b
MD5 70eba7a9d31cb00f36290686c6039876
BLAKE2b-256 eb0d7692d6ad3041b0a27390840e5dab638a34de6d57e7377e6783d067fdd71f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e2732efaf76bbb8757e8d6aae72ef781c4944206dd32bbda325bdaac1681a0a
MD5 524ba016002bb6c717a25cd727a99532
BLAKE2b-256 d6549dc6098751a7550ea6d397f1719130376b766dbe9ef6dd2e6223b81d4cc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 848a0bea8f526b4451a676875ed4dd2ef9acca8180094bb5aab099569f12ee5e
MD5 229ee5e05c695e297ee4533ceee4b555
BLAKE2b-256 17cf221538977b81805451a7fc3bb99d70487c0d428ff284fb6a34b2ca0cb690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a78d3f329c4313f642959f3aeccb548740115bed977f7710eca904f227b89260
MD5 39ab2160652bb738494979846eb7bdbf
BLAKE2b-256 e1d670a8a75d0564ad3c3705823cf925afd7da23fff70a6930d8f30a11cc3116

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dfa648d47951b0b34b4acf7356663a5a7a50408f0eec7b454957d9df904f4e04
MD5 c0896731652667178c388ed4f319c939
BLAKE2b-256 5a54e440a02b790d58025ad83bd925a8f363e8860bb23ea4c78104ef71b1316e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.0.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.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 95c34c5d03431d16f9adce0af2c32f9381265cb38c53dc31f8d5ed5d88523c15
MD5 370f34249b8ec086a0acf666e90a4bdc
BLAKE2b-256 95ec020b7d10fd9815db434aa3e43c630953a83a991c0bffadee9373ed6a5471

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 73e8c2fcc963b1b206e6833d47ee2fdecfd80b4d1c0b3e4df8e51244827facaf
MD5 baa9af9b5340ed483dd6889b06cb433e
BLAKE2b-256 9c5cdbd42459d2b4daca02efc105054d15e22250d214d3db22ce6a994ec4051f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 40d171682a86d38f279831f7f39bb6afeadcc0c36d858747f83497e0203db3b0
MD5 abd327205fe001b2fac16f10929217ee
BLAKE2b-256 fba6f21e1a05dcc68b808222ab7569dcf5a4798f3ecdbcd379c167da32e849a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b777ed4497217f268824f57328c765bccaa47cc049b4878c7113c6232f9f12a
MD5 a6129879d3a2dcef138dd4b1a423a0de
BLAKE2b-256 1088f70f29174b3b527bc9ef6a9108f2b468e38482c3349b8da0aa531194f1af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3761e0ccf9c0caed55673e689e69e940b482fef88d9420d655dc579306ab0c11
MD5 e8f762ee2b9c88c4c70242d0d31bd361
BLAKE2b-256 4badb669793c8fbe726abbf4979dac15a633428036409b31ea965741b6f56150

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79fc5e0b52ccc0241abaf5566c5327cf6a010f7e904b19eda2860e5ac681a10e
MD5 7763b52188f72d31cd0feeb88d4089e3
BLAKE2b-256 54de5c2661bcbfdfcae5093a827d8f20e1eca9f18ab6fd7ddb589e6c45cf3821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 31107ee35dc65a411dbb772f7658d322bd5ef777e1f0b0a3041575451bc9af64
MD5 d0a18100dd9ccba4bbd81a4b7922047f
BLAKE2b-256 fdac4e5254d45f5783efb2aa4f240f0875475eb52ebf70ff6da0bf4979321f3a

See more details on using hashes here.

Provenance

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