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.10 to 3.14 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.10.0.tar.gz (15.4 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.10.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.10.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sql_impressao-1.10.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.10.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sql_impressao-1.10.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

sql_impressao-1.10.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

sql_impressao-1.10.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sql_impressao-1.10.0-cp314-cp314t-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

sql_impressao-1.10.0-cp314-cp314t-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

sql_impressao-1.10.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.10.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

sql_impressao-1.10.0-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

sql_impressao-1.10.0-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

sql_impressao-1.10.0-cp314-cp314-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

sql_impressao-1.10.0-cp314-cp314-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

sql_impressao-1.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

sql_impressao-1.10.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

sql_impressao-1.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

sql_impressao-1.10.0-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sql_impressao-1.10.0-cp314-cp314-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

sql_impressao-1.10.0-cp313-cp313t-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

sql_impressao-1.10.0-cp313-cp313t-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

sql_impressao-1.10.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

sql_impressao-1.10.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

sql_impressao-1.10.0-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

sql_impressao-1.10.0-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

sql_impressao-1.10.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

sql_impressao-1.10.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

sql_impressao-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sql_impressao-1.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sql_impressao-1.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

sql_impressao-1.10.0-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sql_impressao-1.10.0-cp313-cp313-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sql_impressao-1.10.0-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

sql_impressao-1.10.0-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

sql_impressao-1.10.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

sql_impressao-1.10.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

sql_impressao-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sql_impressao-1.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sql_impressao-1.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

sql_impressao-1.10.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sql_impressao-1.10.0-cp312-cp312-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sql_impressao-1.10.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

sql_impressao-1.10.0-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86

sql_impressao-1.10.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

sql_impressao-1.10.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

sql_impressao-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sql_impressao-1.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sql_impressao-1.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

sql_impressao-1.10.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sql_impressao-1.10.0-cp311-cp311-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sql_impressao-1.10.0-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

sql_impressao-1.10.0-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86

sql_impressao-1.10.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

sql_impressao-1.10.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

sql_impressao-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sql_impressao-1.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sql_impressao-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sql_impressao-1.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for sql_impressao-1.10.0.tar.gz
Algorithm Hash digest
SHA256 0575111e02a5b6ffb4b662dc683247f436488600cf7abf74593b05e7ab158e4e
MD5 d2673b2605ca1dd01a16f726898cf63f
BLAKE2b-256 d7401d1f9da5ab775c9408c41ba7daa6f1f07100ed5ff1581452613c3979fae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b77f47d6f11f6695c6541c103c9cc7a1b0ed989e32727c0abd35fb6f5ab66f72
MD5 c21109c78b9ebe46523b55d9322f8f8c
BLAKE2b-256 56140c42f143f6b7756854370466624aa9a4cadca43a4fa5f8ee3d2a47cf8327

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 46c9f6c8e6141a2b71493d7730eb7eb59d296c2468c27feeebf6b05d063a1aa6
MD5 511ff710a3627823107ca662d4ede929
BLAKE2b-256 bbcf951f454cba5b44150ab2100a09814f9b50f9471c719b4c62b54efb8b9434

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e38067a4317050471a62614ba5adf9599107656e16093b814bf1558ab98d71a
MD5 e9bcf3831e5dff6759c159bb622432d3
BLAKE2b-256 381bfe6f81760658cb24c2f330820e2dd6b4085458cc1de127e0b047a702140d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bea47915ff8ff22a5e464ae1b841b245f926992da8962ec102514842b388e351
MD5 9ef15b6ddfe56d3fc6bb311412679213
BLAKE2b-256 86f1e3d9e621f5a30aca197327f3c1448b9176f15d343b6f9743ea68b6e27b08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68e9cc1ee46af320b96271e20226d6f5ed427253c4e00177ca0723c590208145
MD5 6ddf8127bde7a5b9b97fd6410f94090b
BLAKE2b-256 34e73a072c552a47bd7a918138ea4af3958ce065e4a2745e16df72f5adb39f99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c179b473b2ba41f4d67ab83802cc1f81bbcca34a388b2854f0b36b9917dbde29
MD5 18335b2b0273d78a47e45bad588d571b
BLAKE2b-256 9104fc5c1aeea83861cef171dada6d9cb3efc52441a982a5b85552e38d07d28e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8ca3613e88feffff264de05a0121ee4390b4ec72d99e7ca8282c9a241e105c0e
MD5 f2ac1b07408c8431f93d5887c803f2b1
BLAKE2b-256 03981284384ec3cc8e46c64b967c3152a711d6392daf45c64b71a4c642191300

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fe852f80935490c653e0c803d1af6ab1256bdc810f86f6caaf3e75470bd72884
MD5 0688dc9eca29838ec94b0f3617077241
BLAKE2b-256 bba4cf1a2144b521a01f2d5a1a60735f2094d11787c18b2ad1677bbcebc5d039

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a963827200155d52fcf3bdf9ebf70347064486b3cac605727c2ec6b20be3e082
MD5 9f2651cc301c59e4d36d5071144b04ec
BLAKE2b-256 40a183e59fb503e71689cc446d42da01db7f5eb8657de3368380248a576ba72c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9b087cff4e682fea1ffc5ffce4fff39d6590ec8754b2ff62dd50316f5488907
MD5 96e96f401560bb1348ba5294040a9b5e
BLAKE2b-256 30789f7f4b3b0ccef8a6bd8ff95c5d1781d70ee8cd7fc3893a2ba2d1a2d2a56e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.10.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.10.0-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 05a66563b77954635d2ecd92af7a42b40732334c521acfc007fe194b437d07fc
MD5 caebbb6c3fb556c074fdb9b57c1408ad
BLAKE2b-256 98c636e09c43af21458480ca70b15a3ddbdd1d1b371e9a5a72b3a4a0b138829b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.10.0-cp314-cp314t-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.10.0-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f5bdcd002dd0dfa5cc8e6f81fd35818b1109ef5305fd3546c7ff3dd37080c86b
MD5 70502eb3fccb2f29c469975462c0151a
BLAKE2b-256 1dcf337067d3babe84bd7b7f5f4fd05940a4184fee2b52d9b88387c11792ea9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.10.0-cp314-cp314t-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.10.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4da3f5dd474a321748678af4bcf17501eec843c1b14699cec5fcb5b3d543c22c
MD5 93e7a935055964786ff8f627c542eb60
BLAKE2b-256 5a8efc8212fde21aacdf412c55b40457934e38ade094d221fe47b68d2c868688

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.10.0-cp314-cp314t-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.10.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27e9759d538a5a185d927bbef1a40d405bdad1afb94b7c2aceb46a5953071d88
MD5 2b3ca1e826359ed5197a7ee483987d87
BLAKE2b-256 6ea9a2126caefed826bea506c87635107586e0ac6928e3409bcd1f7ce732a7a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.10.0-cp314-cp314t-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.10.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a9e5fff0444617c192f19e1c6576ae7a4d249fa46d884d61caadbdce6169d570
MD5 750d5337c121414da73d953c6be8fd00
BLAKE2b-256 820b75e068e2d98c7d37ac495b1d9a814bcfbca927e0be17db32282fbed037b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.10.0-cp314-cp314-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.10.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 81091959412af6fca658125d99adeb539a8abf8cb955d0847684cdbf70b64c7e
MD5 8e2c62f62f21cffbdef4eb6e468cc9f9
BLAKE2b-256 b17af28a1bb3b9fd4573af8f8d9bc8356b16c739be761597913aca706785c29b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.10.0-cp314-cp314-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.10.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ddaf83ef0ba8cfc51e59e5e39781e745ddc8319044f9a8c28dccd66a197fdfda
MD5 4d04e19a409ef06241a99e9fe732cd8b
BLAKE2b-256 23276b555e7a77182f85c2e449bd960f740ae211f7cfb6cb82b7cb7eeea01751

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.10.0-cp314-cp314-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.10.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bb74a5209c3ff9477417cab9243fbf26ab9c2b2be0f1fa2ef0ae44459fcf83f5
MD5 c9215515682c11b71b1a98361cae23dc
BLAKE2b-256 45f5ea1a7f8b2b08d072fa5c14e2b3f9981acc98b6a508fb6eaa702605a14014

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12ca5b0a9abc79a600a0117543d7e6f4feab987410eb3bb4a23b23bee7bca60e
MD5 0c2e8ca50f782a99a6441502405348a1
BLAKE2b-256 0b9c754d76f6454c8c405bc34bab979898c5499d3c5f9242ea7ee819f6d7acd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: main.yml on adamchainz/sql-impressao

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sql_impressao-1.10.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6093597e2214ec1ebb122e8295bbcffd24b92b4803d81be20a49f7cf8cb7fe8e
MD5 78d1bdc2b81028406ec8cdd3b35ecd0b
BLAKE2b-256 6a40274c5edb17ce3318f3a5bc635b4f2ea058f5d603eb4aa0b804b36c64eb5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.10.0-cp314-cp314-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.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a6e49c99000a5f6fa1773c5330aae83e9c8bd5ab8239f53d72828c6f7d6a075
MD5 90937dc91c4695af222d99de0d69f3ff
BLAKE2b-256 170b5204d1396f7df76a9aa7afec0ccc219e8f0fa8b6e3bd7361b7f34a644a40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb7333bdee4048814da18f456fc472e01ff1004257bbdff7be169240b8aa863f
MD5 5579dd09fca13569fe02d2e889c61046
BLAKE2b-256 628ffa5dd262029fdaee15e3fdb3b8e8b56497f426bfc1444903d4124c06ed3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: main.yml on adamchainz/sql-impressao

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sql_impressao-1.10.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15aad63c0681e1ee8d4bc581a833cfde1eed94289423b0b704b25a6bcf4ca424
MD5 2be9f41d8a2d22c74bd6a7b81777411b
BLAKE2b-256 722737da3f1e9f84f296afcb2dcb413affd889475af3344a84401dd8722160ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for sql_impressao-1.10.0-cp314-cp314-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.10.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4531069697da563f99e6e68d5c78ccd3a18a59a572374763de49081399e5aa9
MD5 f185a16df55419f6926e9887ff554e52
BLAKE2b-256 c41555388a3c60d4d4d750086b5a04d89267e91b50526a3c793794f84ac8f32d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e293fbd81da0f5fc1984974362aa63e260dfc79f1d12f24e6d580104d3300ccc
MD5 99bb445ea02ee8a1c5f8a8cfe4ed6a0d
BLAKE2b-256 3947be49e41d1cfe6e8c31682da8e6295d5f07573a050645f3690bcfed4aaef9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 913387ef6127b9d9fafc816ae9e559f4d4fa8701a729f799647cee161d7dc8f5
MD5 597a2d31a7a22505f41e87b7d4e8eb2e
BLAKE2b-256 9b7ca36fbf82ac19f17c3a078b399da703e4ed32d30743d6fa43e91adf93479d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f02ae7eb12c367d187c242ef950c67ea8003bd52506ac183907bf10f1c9c695
MD5 22ecfa788018294174189897b6cad212
BLAKE2b-256 d2d4339bf9bbe000487d79f14c09ec0b08bb2b61722c3d1f2a69f59682934abd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c8bad9e9464429dc584751c3888f506d563d9f01644693ad1fb575f0a85dfdb
MD5 10a1dfad188d71b4d2f7fa297eb440f1
BLAKE2b-256 b75d6c21b56e61cf50901224f45527d41e4bb0e10e7a0a0b3a3cac3f21776ac8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dd7b174bc613ec0d4ed9237b194109e7e90742cce54ecdd013420e5b5107c9a7
MD5 16da045f5d9bfb3cb2bd684517d4fef7
BLAKE2b-256 ef2977c09051a1e0e0c904e44a35e7433cb07fea6ee372c8dcc5967f98d7201e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fb6037684a275c62c9c930be024a44d2cda1b7a0e6f50d387d4cf37d43eb9d7b
MD5 f3dff775ab6130d3ad3702a4478a2f62
BLAKE2b-256 6850f82e1fdc3f79afb56765842d7b1214d6aa8c6dfcf2aface731a7e718a622

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 27bf2be966e39a197236c1b31f081af2a3dcce0bb67d2b695c85ec5062b45a67
MD5 9c41b91773f7fb147a1542c8329b611f
BLAKE2b-256 46950d115197ef8ae3e08c15e1e8808605b0c869f21845d71500356efb410a24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e320835ac2b417aa6db070adc68502049bf1e9496898b6a1266adfe0b8e71c6b
MD5 a60d184c3118d4e0dc48b801e85624cd
BLAKE2b-256 6efc60adec8f684e728f78d1e0c01dc24ed34019400fd37c2a96552564f3f915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1264a42c146ed8ada6f44aced12a6dfa087249e6475d7f4cfc87b55cba36417
MD5 a9609fef39dc08a06c87f5e1e08b4cd1
BLAKE2b-256 2458a887c0e30355e9058e389d2cb688a27bc378ff2be540f84a4dd311319756

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c884aea585b42a354758d3635e87eaef0ff7aacc7b1287ab4f0139f50ce5c8e
MD5 ce8834f83e3b6ccde86c007d0ae71938
BLAKE2b-256 b29e978194f8d640744776d650ed941445b472df58da8f1aeffe53feb5029d51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2dfd3e8a8dd18a68aaa81b947a08c4233b77c3e365dfe9c299998d31e502428
MD5 6b56de064a00cbdc1837c664aa895b70
BLAKE2b-256 29807b6ffd7a6415b43699ce835decc6f90b978486135e10c0fbdc99a66feeac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 57805f8afc296ed9b6867a4a7b1867e48cfbb65830093817e00e54fd5bf9c8e8
MD5 bec8e5b6d056b64a0367e2ac257de4dd
BLAKE2b-256 8d69f5d53ba0c060d3a637f7ef11b07a63782c6df447516136a2fb9328716676

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64d09e68b12c9bae3d498c8908761077fed3b2ebe9593ec01bdcb596c2b7169d
MD5 8402c89c637b96bfb14a27ac6703efe0
BLAKE2b-256 e9fbed5b512202d0ac50adbe91d79615aae7427198235fef5f51ca92c5344e76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13e953d0d41aa6f39deea494f1fe8f6198fc926f648468af64041928864e5324
MD5 6385cab58a835b74426a6f48b73d90b8
BLAKE2b-256 836a4e24d959d2910b77318e70b4a7dc4df7502565d6c31cff863f7cccd4ea8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 59cdead4ce82cfe095ef5f3310c4df9dc52425edd1f0701b4c61a958ce6b4c62
MD5 7ac1ac6da58b3a0c69f023ad773b892d
BLAKE2b-256 29061ef8f3f9b26c75043f0eb671a67cd7ca024e3756404885c1be92211b6716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e34c33c34c74c4d6fbe79f1a48f4c3eab16a3bb5498e82bd711f025851c4259c
MD5 2b239b7976d4b87219bf94c5b2496be5
BLAKE2b-256 c775242f8eef0f4c97ffbee77d9094b4ae62338054d9523dc92070175ee4e485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 21c68c3102d499de3a33b55618cbbc31214bc44b8eb9a1cbd619d6df50bc57b3
MD5 86836547f13a8d62e1bc2f5e4acc7c2e
BLAKE2b-256 4980e329a586766bc36f870e7af31a6562233092ca0794ce4966f38bbbf3ae2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b87fb1cf94a3d82257a6a2e7e57ed1bca1568e00cafa2b1075cc71852f5ff4af
MD5 6fcbdd5d3e7b3247a6a7f974cd747806
BLAKE2b-256 0f989f890ce4d427de3a0e1afb9e5637ca476d92a1c0844e9956786b11e25a18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 656662687fa8cca68f81829f1eb28ea6d747d03eb3ac1f3638e05d1f4e74602e
MD5 1faa3854cf5d37feed62d916a20ad250
BLAKE2b-256 49bb05e31d5626a78d07a6e62a91feccb428edf546b4b65795df281bd055e516

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d92b551bb790f54ab15f927270a2139bff82abec8314b9f75ae31628d1fc9b3c
MD5 ef7aec36581632763adb169da4c39761
BLAKE2b-256 b4bba8d95f2984bf224da0e3ebf88acd090d0950e714e92f7ee0c12a3a4cfaa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f810a09afa5a2632a72b66f7424326f8a4ea864a73c7b48def6327bf3b3aeb1
MD5 a60988089f3077e88b416afae5904fb4
BLAKE2b-256 55744dfa754e38df0f4b64ccecec7ed2ecbd10b02929aae0bbdd43cc252a12b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a4dcbb16b070553e9cb19fc0951e09255354ab84e5b5827f69dc9cf96771f9d7
MD5 162f505463960acfc43be2f2f2ca230a
BLAKE2b-256 31099232ff3d2cb7442aff6b3b5576d4111bf340a3c650eb525872b86a2fb735

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f1d8bc7fe230dcc5cec50afc27b7001d1b7244683cb62fde6b68fb14709342c
MD5 2a787deb7f6dd26feee3542e77f6e5c0
BLAKE2b-256 960edd23dc1086ce68737765d95bc4edbd725782a9ce3d839306ee2e543d4b49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4335aacd46831d8dbf504f0bf705511faa6624b2e47cfb5bba1f6cdde5a6d1ba
MD5 0c88cf0c23b10d683b48d309581883dc
BLAKE2b-256 1bf37029393551bacc82ad1c29636472ce17a05a089ada5c8a27c074a1d3c302

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e3e877752f975fa6d68085a4093d3a8112a0b1478e070d60451120ad016524da
MD5 42f1d00a399595daf419289b25240fda
BLAKE2b-256 d293f18b094069fd08b479c90da6c0dc9c59c4751d42a9c37093c3966a4ef92d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4413b8a65e388d95a6fa292594e3dd3ca97affb9d768454299e375c57ee92d97
MD5 de1dfbe5da303b3ba7437b2e41c7b4de
BLAKE2b-256 28189d97b8b16e468a99995dd2fdb983da5f5fab71827febbe347ec81313dfd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a10cac9196a7ba5d4ee22c199475f1463ee227e20542a600d970d5a7db607edd
MD5 6162b9037de0bdcb54279bc2752b2078
BLAKE2b-256 489eeb8464136118e7a42920a321a42cb6544365b4b6e24d7c9e6a6412bb0769

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 de7d496a8f93811c4d4528c3ac44f07ebec290d4171a58dbc4c068e02375287f
MD5 b1c096862b800df2526ccb5251599689
BLAKE2b-256 391ecab3d21f7571ca974c0d834be8d2ad1e8041447a98d3c831d0778116f4a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6c632e41b2604d3eeafc28142a702731da903269adc1d037bd31998a9defaa1
MD5 8502a87d706a16a7bd5eb0ae90f2b29f
BLAKE2b-256 0c47c96b3c47fc70f112b9d5c6d58b00828107929fdbb36b0692bcd506af3d2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 514b2f06be0ec70d3321d9e11ad1b406df32406d81ad0b4f8cc453128b6fb14c
MD5 7d25a50f488dcbff92d8d135c4ce741d
BLAKE2b-256 57859396bcceb54b7d548548d05ae582e2727b8180d3eb543acbf893135128fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac051d093c395274aa302eca5fc832b8e359392a67624dc2052b8a0f33183aa7
MD5 dd2431f79694e4bfa20c62bb5228891a
BLAKE2b-256 631833c03a8850003b72fb9337a1e2ad0c45e610aedcc5025ae9acc3af495158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f59bc2b6413c5b943d0f0741b353155123e130c1409f17d08ef3125c5ee6702e
MD5 90aae2f00b63104372dc92348dfc0a1a
BLAKE2b-256 4ac4a73f15e9a6d399726adc50d8f3fdf98eb038478cf727466daeb27e8fae54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28e920b67b7144313e33545aa06be1460ca1cc8a989d26b2ef9fc7df8437cd9e
MD5 3dbcbcfee761f9e1b830004fcb13d59b
BLAKE2b-256 f99809b6202445dc94ecff19eb0ff34f67d2ca34822ab4cc7e5f72ad37bac129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc41543dfbcbc4b9283214adc05ef1dd32c22910768d6b8494241fafc94adab5
MD5 9ae44cd0d9929b9216a24bc4e141239f
BLAKE2b-256 28e5fba5bd8f2706e3892c215219826c2f0a376817abe7be3c287aeb16dda687

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 835b0633d86f7019f3e917520d00199158b81b445b02cadfafe24511f1ca0817
MD5 af67435b3cf38a42f46faff472ee1254
BLAKE2b-256 fdfe3140c9bfa481ce1c8e391baeb1b8f061341dd9c77d5880d1a6ede3cdd390

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4756f346651096e6c36169c5e0531c10274542a1b10912d0afcc1b1f2990329e
MD5 439c7c6efaf4ce22c9c8e91da86ff9d5
BLAKE2b-256 8d394963494855d3ebe101565fe81693a9bbcea526fc4566de08104f1cb0895f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bf6a892755533ceab12198fcb3cfb7fd7b4872bb28d1bf17e3f81a0d058d6109
MD5 89911bf1d69ffa0b9683f6c6c94b23ce
BLAKE2b-256 b91b391934abcf1eecae4990459031e4cfd1db0e0e0a3f3f0f6162ee4941229a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c0d47ef9f8b199c45e97a10aeefb9696b9db065eda767f38455d022cb72637dd
MD5 7cd756a4c43d1773a0f7370ed12b3832
BLAKE2b-256 157ef534de948dadd339824e5ddde26ac876f4b360d7df47d34e7ac465bf03c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6de09bdcf78dfa49f6f3a1047356de7fd4f803e2e1b953d6dcb9ff72e9a561c
MD5 33def9dc5a93ce0b6003b77bd8aa070a
BLAKE2b-256 403c4df00a9ab6d6eea793c892b53ad5613d1ef5ac6c28ee529bc74d6530d5db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92b475e7126b97928dff891e63c7833aa274781eb7cccb14c38d42d83fd1df0f
MD5 ed4d60bebb9b593f48b90e34bb83b2b1
BLAKE2b-256 ba3f39bd0b615083f269960110fa061cda850cd02057f589aea68ad90a86611b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53ba1064cdb6ecf51beed62ec02525051b3b8112454245f30c4ee63a5c526618
MD5 1c8674d74f52c6634f5f68886b0155c5
BLAKE2b-256 15cda498f27a0ec5290ef6a02237cced2ddbf4b57e486eb7a7ad5fff13c29227

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c60691ac67a6a24438a4d1128d8b3f6c161310bc23032a3c06022e166e5612d
MD5 353de3de7108a9b90320624ffee7275d
BLAKE2b-256 40dbf44b761060ef861e0cb5c6f0f244554c9071577afa1f11bf40139868314f

See more details on using hashes here.

Provenance

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

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