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.6.0.tar.gz (15.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

sql_impressao-1.6.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for sql_impressao-1.6.0.tar.gz
Algorithm Hash digest
SHA256 b5e2df09613253520fc2cc5fb7868234a9c1a3b710628d160dadd3bbc29d9aeb
MD5 60be9fa1077f1dff677e389f3c39fe18
BLAKE2b-256 2076a83c49c06963ed385f5515e97a66c67d22ff9f94fc5735193776c46d22fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8112ef5f3ae49af670ed323dc2587f623143c52ce05d61d3ae4e4be44d9da35d
MD5 24670b429f1a7c204da0ddf28e73ff4e
BLAKE2b-256 9445cd1ab19fbb346396177735722d7f931bbb97595b096bf55a2459dfa307f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b2457850219299aa4c7f16072917f8784d819a313f6f6b0b80a890d72b6a2b79
MD5 43a933e191aa4be2ded609be603b218b
BLAKE2b-256 e3987f622f0506f948dbd6bcb6dea484661d258bc82b5c7dee5c778756cbfd50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b671ba50f69f69e5f241fc900e769c5c35ab59b0874a95bf6afe723c49418507
MD5 6ecf024997bde4e80911d05cc66ae18c
BLAKE2b-256 8574604aa5cf592fc6960ad80f1eeacaebb7e058faa41a2db065f340921d8139

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4deef7f7162296f00f4333cd0acdc358723b4366d7a1607395b14ec43e4ba265
MD5 5828964bf24903609dc5b03210e690c1
BLAKE2b-256 d611303c9c4e453bf6f2da9eb477d0528fad2783624d7147118ad98d74ddb915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f7cf4cc722ef25b7dc684b83892cf8dee9e0dabdd160bf6b85a5b9d9b42cc9a
MD5 ab98d415713f7822455adc7714d10212
BLAKE2b-256 ca3c571936f5c43cc90bba4158fa3719f68936b469b0dfc737dd69fdec67671f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ea737ac9ffe8165a9b52a0ffdd878af22e7db59102afa016819c58888a4f4afd
MD5 a31fade3fe5650f36817b19de463fd63
BLAKE2b-256 7e8ad84f407f99abae636a3ca7b64270d9531424aeb729c231386f47b49c6581

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e5cf68335abfa103f14288249651885ab16ccb6c99f5d38efbeb813ad905bb9f
MD5 9c1f21fcb03e91b79a9de0d4057cac47
BLAKE2b-256 7c3dbf20ac5bfab1e6a5c1231b44d77a39125778df2c5377810d40c76f16f765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 37aba8b2e0ed8b6e9b728880d3f326c5c153b623086e695656794c12d2537234
MD5 1258662fa4a3b180c59d72d85815f16b
BLAKE2b-256 a1897c60b34721014dc5311dea373744def5200d7b60539c0d8c06b70dfcd354

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 387d8b4551f70dffe74e8239a56d4827181fe58f181c738e21fdca3eff1eff80
MD5 859f1561b5aa0b3da2e34cfc6c25cd27
BLAKE2b-256 6297ec9da810b6d96cbf696d69efd879628e9ad64549ba3bc355b25db7c89da1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 269b0887ad2046792ae10c37e29673ace8b693352d7b47f5581fd53c844a6af4
MD5 43c70554fdef09b24c738ea69dc80266
BLAKE2b-256 a90ac3406cbb3edb97b98f1d8f78c2117af7b05d1b922dd2f497098a6f0f5389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59d5a124928ce60901e76dd0ff94027f8036af6150896bc854936b98a35787b3
MD5 672da3b6c885e6145bdbe6c6ba195f2c
BLAKE2b-256 56c71f36a677699d5690d6c348e2c087455ddc16ac68a3f323917efd44189973

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb2116e599de191ec232c0496f13b175970fd68ab262bc9a63d4e0eaf779aa84
MD5 469ae569b57c1d2f900f2a1d2516e89a
BLAKE2b-256 619005ee90c98557a7208439a3582a7ab99f20d73d69aca20bea39f921cd6034

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8d4d6690325215776e64db43d1a5dd4e857d9473dd6166906f9bff8d09dd37c1
MD5 4f6d2a2d43e206d1d9499664fa200f53
BLAKE2b-256 2baaca3392e2f4406784fc59808eeec4a98708463ddd3cb59cc64c31a1f92bdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9bfbc292222f72d680e6eaa9852ba076287e1f2668322cccb5376b2754ec434a
MD5 8f1aa57d65fc4f5f27ae5d9d92d36d94
BLAKE2b-256 a438eb4d16de9084a49933e119bbdeb00cbb025c8d1c390cb1af0a3e86f36c70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e7780b1a8456329e983e20cc1608ad4c0469159643beae62cec56d90973aba6
MD5 577fa33922ee06bd932c18aff81f1a15
BLAKE2b-256 35729790e07f67b3800dc75bf510b8f041f7c95e97217ed2d95c794595e29b5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 898695387016539d9e2b4d2aab0d67cc8ddd98a330a2b453173a4cd84ae31678
MD5 5203655da51a0bf28acace7fb0687cc1
BLAKE2b-256 c0918dd9e55628570b1207468406efcacf331bb14498138cea59a81be1f99c82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 521a914000fe1ff0c73e8153aa40b48fa457b46950f3e22002a685f38b74d578
MD5 d22c8df3b0a81da5e177712f9d1a252c
BLAKE2b-256 a28ff03f47c38cffbc5074d0b7c0a20163d9bbca8c1107d179b355926da997d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf2a3a38a910f83dc340dcef5c4fed3c56c8e4825ad1a541a579331aded1b494
MD5 7509262202c182b3f0931de47f4182da
BLAKE2b-256 a1dea44a52709bc598b48a7d6ca48f1566f1ce4daf0b14deb0ce38d196438554

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f5d715facdcc8996086ffe22bbcf5b31580a7370762feb66441d63cd5fa64363
MD5 58f500d002d92335507004d7d3eca2e1
BLAKE2b-256 57086e3d4c40e4f63c20f6677fee28259ee5af3cdc558f862ba6dcd8590d9369

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9a9a5f04bfcc05cb1f5c0a91a9fd04a523144ef955cb69b3bc67c8d8709fc4d8
MD5 66560b0a335d9274d94ff919e1f7a8fb
BLAKE2b-256 54b06001ea788d75e5e58b0923e173321bbced3de74f69a020670c70526f8e77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a903145a17b5d706f0211eb05561a104dd97887f155ac7ed255fefb19a7b88a3
MD5 d0151e2df7c1b5ba239ff851ffa462a7
BLAKE2b-256 db5d0489464a5ac9ba37634b612e8b3b3e00670f0191e42a65d21042453cf6a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aba3e9e33a4fe8faabce09866e906b6a7b61d67c1dbb103f62eee32573f5fb55
MD5 3ed968568991e455dac4bfcf890d552a
BLAKE2b-256 fd81522987b23b1cf9c543502b6d65eb69a7529dff121238682b8ceec5b34b7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c7d8da20d34822325643ea9c23b1e9016a5842a9b613bfd1fe7083c15e546dad
MD5 df60f00c5817b4f8a8b5bedaf91ae2db
BLAKE2b-256 2e6957dd17f096e68176b1bcc6b7f218d581317f970bb38264097dc41677dcfb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.6.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 581eed95d3bbd6d91291ee99c95ea68632a893cee0103915395bfda5bdbd1a23
MD5 ba165b385edea3a1773c53521e8a86c9
BLAKE2b-256 4fca457ec90a4b794da7277abf80558d0ed211d8c7205517a370a7b1b5155d41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 39aea2a7431177c428e2da5dad40f1e24442a4c7a2b2e3e73f3fb4cfb96f1fe6
MD5 5aa43eb1098dfb30c2773cab3d611600
BLAKE2b-256 bbf024a0ef840acb0e9c92d37c33bb4fbbfc50c4689687f43eff9b55653382cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e38275e565a5ef737641707c4b1acb7836a55576dfb3d29b10b0d6e12811818a
MD5 f11e130a86364b8ba93fe7ce20b67898
BLAKE2b-256 c3163773d904f6b8722fc781a61f90df0d854a16d4978cb085a8a09dc5815be7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d70cdb88a72da1cfed4972c45affdb5e9707e386788266121619400a81803f6a
MD5 8232a397e3a3854c926e6a6407d3932d
BLAKE2b-256 853151c9f2f9a02413b55cc75734253bf42594d88a8cbbb2d2419468b031d4fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ae5bf2f43a8ab0e5f94b85aeac928f6f7b127d044208bc3830ecf5e68fa1e9e
MD5 7b11c22b5c237585c0d7f343ea64cbc6
BLAKE2b-256 ff728c682472e88fb039c5b48abab8ea494ddf5de629f08357eed61e5d148fe9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c150caee53a1b2a5f9dc8c1e51a4b1d3e5d78744300003bc56929e40074eaa02
MD5 1913fb3f47c4f69ae1cf7b58b6746764
BLAKE2b-256 694376159da6ec2c8a3ec0780daabf1ec052b99f9985bb625147c103c1c9f085

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3602e5b93847a3a1add3c8e5e7b3feff801f141ecc3cd978c9311d576b14f5d6
MD5 bcbe3b0e42d0cb5c8f8fa5f1f070d90a
BLAKE2b-256 416ba4e07c5a70751592d63defe47bf94ee865243e1727418c1228d7b04a63b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 487a4cac3566bdf92a84faa850ea222c017c44f996d048815957e9cf0807064f
MD5 ea7ef8641246eac318014a2a9c8e056b
BLAKE2b-256 8b95070ae0c958528480499f69725d5f3de9d951507f18993803330748cf6bc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d25503658bf65e677a92e49d49e6685b88137fffa8f512953058d9c0df70df1e
MD5 649a328bcb50b066777423fa144d7468
BLAKE2b-256 58255474fb9b8dc9f1e58a4869af0885d88ae8533c66fe8f4e5e77ac46087712

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9ee0ebd82c4dd0ba2c78feedae4877db6596ac9acfc4bb918746a90f33c341ad
MD5 9b8e4973393352f95309aaac0c7301b2
BLAKE2b-256 314b45c0133c8bbb934b0b9705d7bfaebd96b41f61cec51c639e3b58ffd17f29

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.6.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sql_impressao-1.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 964e7fb2a5df4c71e0c01da9712d73cd5695b0f875e9a0e25645cf21c5b0869e
MD5 c5c6953072c613c7ae94b90f1e8905ce
BLAKE2b-256 cdeb05644003412d9f61c9d05b9f76bf3bb76e61401291e476181bcb539ff426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 29bb5422d7d87947a24ce9b5107eab63bddaa644697dcbc2834143b88558ce75
MD5 deafb8d99734e276dffdcbc06625677e
BLAKE2b-256 02ee0415c133ab020360d306baa8d7cf74b1447edba1801de543fa8c21303dba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 381580f77b2bcb39c03f3198890166de8963788006e3b5cb7fc7a64e524e86b6
MD5 dd8a757b4f4ba761629fc810d760032d
BLAKE2b-256 e045b88125c0718245d9229a8d8c6d163ac855bbeeb2b537e74a443c04928e54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d6ee7aeda3f175e7c5f7a40e6a2ee8beffc7a15af721e80793048d4e8ddff28
MD5 4169ff1de0277f5b86a5063b9a716a85
BLAKE2b-256 1577df006c2ff7518adccc863aee3436a6f0f61dbfad088d13845344564e7834

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e10f897b831d57815b8ce82db06610e65a294a6b4da6b7e76257eb1fdb1d41b
MD5 17ec2c09fedc192ed7c2638c289f41c2
BLAKE2b-256 d67def1355cd436b053e2c048752a78c167b23f9e62c1dd5148adb77e701b626

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ede26d009c8058d16dbfd714bcd97aeb7fc9f6cb471ca778b60873fd2e0b4a0
MD5 8a75c8bb67197715dcc1c6c55853c045
BLAKE2b-256 7d23ed3e24d643fc878d7077d96d41e776fb4104b1d9e3e77ae4efdf5a2191b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b758957e557a3bc87d3fc55f1996bfdade7d14ab116f559b4d85986e9793915
MD5 a22624f564dced10574bf12e62799479
BLAKE2b-256 50e982036db3a409f0484e8edcc72d0d5cf421c5fbe69f55fdcef46df2df45e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 499114fc95a2a14b4abe6b3e5af3f3dac13d2bb83372441e7a9247fb778d5164
MD5 eafa523ee482713b8d0e8557b55dbda4
BLAKE2b-256 1ec977029019997284b85a4e2058c5bbc06210beb7610aed703c04b66198ecb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e3be465175804f03dd38d8e32cd22fb257fc09eae7df6c1c3f845ddcf1bcab95
MD5 0a0f6e3b6052c43d6b9bca7249b5e567
BLAKE2b-256 c9ba140ea5a82d1d104e0e3a8d8754ff03260e0fa9b75d40c44e871b6aff1b4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e4ec2ab4bad4b48c9d0ac13fc488602d94aeecfd202d8cae064ff61dfc86b362
MD5 4e61136f8152b69ae1bd7c803d2de703
BLAKE2b-256 93bb10c6cb31a9e057fd29c63491b45bf339c468f7df8bbb766560c7f8ec1788

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.6.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sql_impressao-1.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9243cfc7d0e7f7963e11c0592b43aab86af979bced93f350ac0d7c98a368e3b5
MD5 fd73ee3905469ef88c498332923ff223
BLAKE2b-256 ea3432c47cdcecc866ddee7e85a20da4e3ebffab77ebf277195c399b0697b888

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8df9019e1914f14bb23da27f2f7c7083e6ec5d5a7c5d14432a0b57866b8b2c7d
MD5 569f6be0c96a79c6f6d1ad9e734bd3cf
BLAKE2b-256 05bed1b772598d4fcd9b6d5d9fd5de47dca7c0b3b9b3596ea81ef85ad5da559c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fb71fd895a1937b670017b34ae519abdf7acc71cd102663e91e95b75e1d0c4cc
MD5 a97694fa4e11cd5d7e1f3db4cf4c18cd
BLAKE2b-256 caec2e7d8d63f6e9d6b2b673b46fd3a115da37436aca3d919a421b84a352753d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a17a05ffe2dacce847717e904d2ef1f3fe3374bdf94614a1f86ffabe5fca1c6
MD5 5169100cde12eaa5e1a11a5a99462184
BLAKE2b-256 a64f5457b3b844cec41604591ddbb533e43f531565f8135ad8bb5e9b6100f9a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 119fc325315e3c5b93c4df130d2b2660ad8b7dfa9b55b4a1cf0f8837d6669b6f
MD5 8cd7cb82975eaeabb3379f12b7044745
BLAKE2b-256 d764aa6229b886b2cd4efaef3276efed69faf2dfeb475ee804aa7a5e60c3d0ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 353f213a0099952ce234b4f39d5307f9593bbfca019cea665ada0beb4ef816c1
MD5 07551bbb9e304ed57426c225e9a7df1d
BLAKE2b-256 3ba1434f443ec3936814454376263bdda17182933be0e4eb1cb40544cf9b2e69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 71c8371dc2a41271184cb47bfebc23be46009eeab0912a212019c8f6ed989bc2
MD5 8d2970673ceba518807fbdad15d268fc
BLAKE2b-256 e3c3ffba3e4da0bebb152916ddde957d93cc7de0d72f8eb666c5dfe79dbd0434

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9b4656e0b7edb77271c0760b4a5dceec49d30fa815266bdfabc1eb0140757b9
MD5 d78f5a78ab99bd0ac3108579d5ba2377
BLAKE2b-256 695b946f385622a6c029d580e7c6ffdf0e0f38bde04b340e0f2a3902620ff933

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 41a5bbcfa9eb5759a33d1d89316c4a6b0df24a5ab8989895057309c7e8d39bfb
MD5 bcea3d62f84886bdb0cd031c6a96b572
BLAKE2b-256 7cc7a23fa57270ba49da4524ae3860d792464221cb4a63afe3b633659e8bd98d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 08a5faf6366176693bb5ff4a8764937d0fa3c79e8ec799dac1dc7ecfbc025c5b
MD5 1459953189c95327c19cb1deb8c3ba13
BLAKE2b-256 eb10edebbf7580bc25c7a17bd0c6c5496e5dd33d3dd2194ec13806d3683ef722

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.6.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sql_impressao-1.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 26f71de4b2ef0715dadaa14c48c5bf547f0fbdebb18b9327bf99359aa9602b64
MD5 73cac22c664e710f8b8062f9fa864b86
BLAKE2b-256 1964c27f6713d054b5e9117f28577ef42b8108dc932afd4fd30cee7fe8538a50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0f174f5f4ef4a5e7a06f8fc3698530eb0167cea38d21ccb09e40f04849ec4911
MD5 08474907518c11c36752366fe85b54f0
BLAKE2b-256 9aae48e0b60691798123c96fcd5dc6946c52feff37d1d81d3b12c08591e0bd1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 178f5144ec1fe2ad2eb010ab531011374e26305a2ded73716d492e522812ce17
MD5 7d89e518031c8284928ed958e9e9b6c3
BLAKE2b-256 6463510e38f78d6e05986629720c6a7199571b0dad5dfb61c31217c019e1f409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e77de46ce8d1ca27ff0cec0970d73d5ef1cbb80bd743b69ca4081f14d412b333
MD5 9b6a6f6ec0cd1c683f872d5dee5c8cc9
BLAKE2b-256 473d8b7de353204af45049dbeb77ba82b49bb94d55c0f84d962e93eb76e229d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ca7c639fffdfabd467eb35e157cc0345dc6e455f00d641a9f04da9524b183a6f
MD5 ceec7ff37e1e57f20945f79e60d4abcc
BLAKE2b-256 34dfe86292c7b34c4b35cd6ed46f5c0b8821dacde8ae24a9db7fb95d44edbb2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f00351a96061618cf970d7057c01a4d0eee4c37e02e6ec16ae5d97643555ffb2
MD5 9676d34d5a38c7b8facc6b84bf4e5f27
BLAKE2b-256 481d3d1505accf6293fcfb468ba5472173e4dd73544345cf75d423b4adca8474

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ae8f317f4da22090c0dba7768229b741ace42a7ad4c353a5951de683ad7663ce
MD5 b160ff59e552ba374baf4495cb7f9ba0
BLAKE2b-256 c43246db319589d38f4ede4d47ab79936c7993e18c9985e6d85511cf3fcdc3d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e44ed47e51e1f696dd2454ad572181ef3c09dfa9bc61d6f77d39fffaaf6108ab
MD5 9891900d706bb6f826a43489d892699c
BLAKE2b-256 518938d5afa95b4699eb08a9e9bd7fa167ce70aa0e576ff203b44c78b407f339

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sql_impressao-1.6.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sql_impressao-1.6.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 167e527d734449cc3bc32d681c98732ec7d4d909abb1ab02d9d7812f4e768b59
MD5 9089f33424b0f9e5a3d7ef4c1d1d60ee
BLAKE2b-256 8d98d684043e4a58c45b6c52f6cd222d06c58e9cea688728a7f94b47208ae356

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 90a44caf7de144cddc2bf0d373c21cb333533f7ac5064f0935704668320f4fec
MD5 c2c8f2ea0efb90d3a745de8cc4457207
BLAKE2b-256 5fcffa2dfd89d35e3b0d078c73c52f4ca0558c03b7b881919f0c6a4d54c70ee9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1442d54cda7e3235f49ba5dbc3510adf75edcbe674e9d5168360018b3d2de45e
MD5 877ab2bf2c63926290919add55c44505
BLAKE2b-256 84cb178e6486e8d2d1476a7784cb873acb22e110ca9fb412b9508d862d8faeb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7591dc6c7b902cb0175cce83aa8c971b597a2208d9511fc957ff25d7720137f
MD5 48acb909c8e3e3f6e737306658c44483
BLAKE2b-256 5c925bd131daed2ce6e7a57d6f6db6bc000eb39b596fc946fbae0479d6d05d42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92da97bdfb87ca250d39587d7805b0fd583388a8d5701e0650acca14c5f7ddf4
MD5 86b082e11daebcfa52d52b5de7ca3535
BLAKE2b-256 fcd9dfa8b6b7e1f178d567a8036e9e33bb277287be9e02486404917fd3054078

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54d24d09c9cc8197c5a3c196e5078f9097b568d6314c7cef604df1d7ce003d1c
MD5 11d188a78d082259a6e0c7df0c4300ab
BLAKE2b-256 43df6ee18679e6852aa0ceddbd9ad864421459a140313d966d349d667e07254a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c14d82607cb9ac015e53d5fbd3ac99804bc7f2fedf89b20b505f25d14eb2acde
MD5 190bed6bd326b5fb505dcec6e5a6790b
BLAKE2b-256 ad8d62f12840959c150ab1f1ab68dfbfa2887e42c41359948939839005467b04

See more details on using hashes here.

Provenance

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