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

Uploaded Source

Built Distributions

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

sql_impressao-1.2.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for sql_impressao-1.2.0.tar.gz
Algorithm Hash digest
SHA256 5695ee13cc050a10c30cc920f7916bee48628e912357c4df9172f7c2cfaea759
MD5 ddfac1a671c353dfb8a6819e64827d3e
BLAKE2b-256 3d51b708b0b0712eae81edb3cc142f9e32dabb4d9c8193d6abd4fecce63847c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d63533dbb4c36bde19f66ce72897252ed84965857e040988503bdb7a1a39b0a7
MD5 54550abc19539825ea368880d8a2efaa
BLAKE2b-256 d7f192622a2169e4c679fc36c1321f40c94e8a1dfe3665c2666e00313e0fe2f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 86281d55f157f092f2d742dfdd49c2feed5d620061e9c2662226335c01265ece
MD5 44df921446d5b8ff08c03b013551bc38
BLAKE2b-256 b7c4dee23693c5378a2c4987c545a6d7eb4f681188008449ababb2b31462dd37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46625bd8f52e9a826dffa2e5087c96ba6775c8b8d154527efbbe3094c4ac3820
MD5 c43e958f3344061233fc27512cb1884c
BLAKE2b-256 f822153450d88d1ae2b982d4ccd81d42b9344154bacf3181162be11dc29ab7e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39866a8bd0979a7ccc1b3b3c5c52bb3ac2dc2b0d0124521eab863a8f0dce9b14
MD5 653ef429de373ca550964823110d1abe
BLAKE2b-256 47ca7ae703098a12255e5dc8276454580f735950a0397a834dcf9abbfca01907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ff3f55642b830f32164b420b648fb99c2856c1aab5a89f5f351744ccbe83d07
MD5 34aa1aaabadd553a18f72d1142947d04
BLAKE2b-256 0ced6f844509015e74406d706dcaa1aa874fa6d23d5838334bac1e12136788f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 20dce8bc2c9c31595316f277e3171bcbccfc8f5a4e9ac2d124a952ce12d477c6
MD5 a909c5d79f43ad23e212c7379810050b
BLAKE2b-256 672110403a3fe843a5132d70767680b8dba59895ec9fba5c673f99377cf97f01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 58be01623fbb1957acf360e8fd6f1c6141edddb0cd539b8df9d9367de12b29fe
MD5 da1f6a95f64217734713ed093623770c
BLAKE2b-256 4206a79120b2621055d3ac90625bb206bb393e576fb1f2a3be8bfb3f3019e9d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4aed0ef3423ce73a052eff4ae5b8fe54de2222d846449273133d5d6b5dacf4f1
MD5 8fd98e9518ed35bc21fe25dc083c052d
BLAKE2b-256 1d6dff53d2fc45bf5dda950b703891dcd4ab8029258ab10381bb69337f37fdfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cde607323f08a7706a72c9b99cfb670571ecbbe40c94b937b131c9b0dcf67843
MD5 94cd69d15a321be08d15ca05f52521ef
BLAKE2b-256 90ad877a418a247d68ded62d51a8936aa88bf6ac7b46ed168a4531f8360078de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af04f649e1293142de1a22879ccd44afe657fa5148b8e2bc4dd0c1dd5b838e7e
MD5 36acb7dbaea2358a258b5806927c52ad
BLAKE2b-256 2818cf7549244c24e61623a3cda3a1d3ca670fcb6333f71671ad302788eb8e0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d126e48d8072566ecb04e275f9dfeedcad3f439f302142b52c839b8539a5e06
MD5 014b0f2ef02759102ebf6c79b1f68b28
BLAKE2b-256 3691904426785e4618b1c1f2cb6a7f1a830efacdfee9ee48df8e2deacb79281d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 24331316c90cd4b420f1bc1ad6a132ae1a939946cc02b9be34a0cf8d64477949
MD5 e3aa367447e031d1eb4f5fd90fa2d3ab
BLAKE2b-256 ce57186c6ccb8f40c09c25a7f765ff9e2cc0799269d9938306ca4bced7c454a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a89e664f1a51dcd19522efa8fc8e55dffe0954439b62fdcfd19cd57f155d2a4b
MD5 91b9d15c01aed630a010a67a13575f61
BLAKE2b-256 68296f687381dd5999b684772c9fc9fb28fb336e1715d78298d9b558e939ce2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5f3ed9ed4806a9b885e799e886e0aeafaa049902b14119646125ee3852985729
MD5 7b009b7ef6f6035c31bfb37c10ff142f
BLAKE2b-256 82bc74d2a785354acbe7028073795128f8795c69f9c2199a0c1b7a9a0fc68852

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e336559caf024c5c8afc440a59d89fa71dbd4edfb4f4be2bd12b9bc61842a089
MD5 d30d012700d36e7a3bcdcc46db52a311
BLAKE2b-256 81086541b7158e9fad7792aca3f16008d497f3cf9193c399ea07d014654c2045

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1609643102f1405f82b55020fb7c7de684991d73a6cf02a4b45bb80f6e456c44
MD5 23c98477ef204202a4c07f8f7d01e9f4
BLAKE2b-256 9ab939c9c44c85ddbaa3cb54949de2d171e4d029f14405e27eea7ad5faa8da18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 80cf20ef5d19487795521ce2d43635a008cde6ee67b0f85f3f15808d3743479d
MD5 b3cb6ea27a41931773749b1254016645
BLAKE2b-256 fb0dcbf99b7ee285dd518bdaeac6c4a9d4977c8c0e730e5099d10c2c4f467082

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8f658a812ea8c8bb30bc1024dea7cd3ae113d0fcb6b92a04a04e4b13de25e319
MD5 5b3259196ce7debd800a1d0416a74c1c
BLAKE2b-256 51a4eae4ab2bf06658d5016c2d6495debb8e6698b0dd141f54d8bc25028417c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1150e17647cdd65747a290361186a9fa050cb08e39f53fa4b21a5e8ebed136e1
MD5 d7765ecf399b76838fc5d2ec280a55df
BLAKE2b-256 ecbb0ccd9a309af655766f96037dbe0adb098ab5a533c0b7c1fef549f872a1ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0de0b90e3effb02c7d421d109880d91090e078eedcfd92250133861b799fa496
MD5 7c515ee98d1f350afedb03d57b10314d
BLAKE2b-256 50cb64cf354a44947d6e2d6e081d7b6fe3fd7cd3c9adc88a3c178a193abc4522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c878777370d467bfccb7ef721927c1c746adb4a9495573705f680ade8cecd3d8
MD5 81f906cecf5e537ce81f94319c98fd56
BLAKE2b-256 34831f677dd4501b99acfde80184d6a94b55de016de7316d3b3363cfe33459d3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7760948e32644aaa561ab01a26ba1ba81f2ce30063ae8a9438562824e4618129
MD5 978fc98b97ceca294501cb177dff7f83
BLAKE2b-256 f3e2666ffba99cb46664c3fa69e61a03ace99d8884f1d19b58445fdea8108f5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1ecfcc45bc6b8608d577de59aa9afe3b9a9cb71d33c695579d390c6b5e09ce69
MD5 c57d4a35d385b25f963e84d426529eeb
BLAKE2b-256 185f0d8fe733b8c34fdf23aa2b81be438a59f26538671b92b13b5c946c80a303

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cdc4c2f863b3c7c3d84b4029d6bbc87656cbd5fce5878abd68d49f8b8334cdbb
MD5 ba5cae322a270020e81156ef9193d980
BLAKE2b-256 bbcc4d952fa741fa006be5788b88328d9b9ae1abe20409c3ad7536bff805a9ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 603040a219f8170636647582ac0992baf1cbd5865173ae44c0f5e1081b4d10b3
MD5 8ed907ec0c16b140160d9cddbd7c13c9
BLAKE2b-256 5def0e9e3c9804559ae33c362632bd25b92db6d2da46c345523e95770f419cc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43d5163724a9c02e7fdd0cd47743d95c4402e9634590ed4afd20c668acc7e61b
MD5 876f6535833c814e8a43fcb79f6475fb
BLAKE2b-256 110b559a666abdfdb20b5da8a325915400f914bf75e63c7449a2ded7cbfbd80d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee6837587cfc58c76597fd3207c909de7345522aec10e206df4bad44d150ad61
MD5 64488e5e91d939b30c147fb0c011f64d
BLAKE2b-256 35bb9a14156fe74ad1b8467b921100a16af226f6d0f181b35f4f15055982e004

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3519bc0fd5307a365fb691f791f3d97af09d5a2a80cdc6b32768c798559f979d
MD5 23e7a765d4e984adcd0aaf4eb1661efd
BLAKE2b-256 59025c552c671df3970429f097d1983e31d135101f9ed03ebe33347f1fadda12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28ace2cb315971b9623ddd1a503dfbf7e2412871e0db50f08dac8963f8e89eb2
MD5 44dd8c749443d5e297df4adee59f67d3
BLAKE2b-256 4be42f0ca0fc7f5aaade3d226920558b65976823a789e9c1c60d01af989a879d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f335b2ff078411139938ce1299e96d25df0cb2353e6f3a54872a624bcb87f4e3
MD5 f06c6dbd777d3c572824c817f97b44c2
BLAKE2b-256 d29224ad29ebe8170d1e460abe1f32634031f689b6bddd7f2fe82e1926f11122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3d4838ca7e258a77f95ef60d1326c2c05cdf35b9958f76b3c9836f5980fa9f5e
MD5 3f7061885ed0c4a79734371d5288fc32
BLAKE2b-256 f4ff0f546e219989c4da321d5ac130e6de95d45e2501931969369ce626052499

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for sql_impressao-1.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1dc9d15de0e1ce758c8c25c88f13fad573cb8527391784733cb03739444198e3
MD5 60c0a92f51fca2d34e1812f9dedb2a74
BLAKE2b-256 31960f277ecbf0069302dba7cf857351b7085cee06ff2818e692bf9a5af2a25d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eca42707cff20ed68ac362d257a6406cb2392b61d74840a9913ff6c929457f6d
MD5 a33887f292572640f38baf47f516ddbf
BLAKE2b-256 f98148bbd5397f6c0d768b55dcee062af280c411ee99e6188a9e60717e16f52d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e520f36888d94e35d666877abc4bf004a9db726188d478ee02ec6e2e0266f059
MD5 5e6f18ada0dfb59d54f83f6c3c1ab723
BLAKE2b-256 b622f850bfb4f4a3ab2d768b460f3bf99d9a0f141fe32d22cd735375873783a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4456c09aca5e8c1792459750f85841e1cd0784ad20ef62a934095b91d25ba9a
MD5 071c9631e4c19a06a82ade740c2ca58d
BLAKE2b-256 bfd3f8e3b99b3cca877fb9a7f191f0f5749c1b9443ae1662a37aa93620e4f71d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f3852c27e1e652073cb5b14f0db9af993d1d2d1f207845052d85e0636159c49a
MD5 20aa814648f860d64caf93557b84f506
BLAKE2b-256 eeec2914e5708568d808ce98ea174613462f4d7c84291910a64781e143ea236b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa9ecf11e2dc1bdf50ac71407c4f80114497349dd72692255f8e82a5f9518e57
MD5 b93bafd2dd15c774744a854264e284cc
BLAKE2b-256 6c51509ab055b54b32de5769e031dc724ab70d427d6e47bf43810aeea8964484

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c28ff24949b6febb252cdf736122a281fd7d009836f2fbd790a318372efc783
MD5 207d6051b75ed1542daaf6ddb7ce4084
BLAKE2b-256 0efa826bda8cb89097fa6e363fff4ca5843234a49252c0663edfe6b209533df9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 210c868b5732d9e7c3c3374e079c87f778871e0f750ea66b12747d79a5f35c91
MD5 ddcc39e94b247dd264b18b518f1449ca
BLAKE2b-256 af8ca6911e73f0a39d8886c19ed6a8248f63bdc29715ba3dcd324817c9336904

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b1f035368d232148f93cfa1f824b256f55d00c140b5dbd21a33c98c1463cc82
MD5 4b8b6236452d3813cd5df2e7581412b7
BLAKE2b-256 0c763e39dd98eec594e2270d1113b77223ee8c3558c48a8dfe8281cab2a5bc8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8545ce4b57d36454857af230e5746a986c6c34b3330e675eb508c1544cf2ed01
MD5 fcbe0b44dfa1fb3c66c160767e111010
BLAKE2b-256 99a6d810b205eac53505efe0f5893dbc3b74e59c285322146a288cfd5c3004b6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for sql_impressao-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2941c3b77d367f104ec90105d6e5a82dd09cefe1c0be1c40d9fb1e4ca6069ee0
MD5 aa52378928961a37d8d350086e4a1b62
BLAKE2b-256 9dbfaa5713f6faef2d3db879a6f0f1b3bd864720ce941cf42a2268e963937264

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6c199092851c28c128d9d29a9981737918080fe345e12e5205c7e6174371b2c8
MD5 8d0f3affc0a6853446f5f7cd5fe9c63a
BLAKE2b-256 3b4890cf6de7770781f8239a3100fec6eeee7b1cb7173cfe44f49050360b36c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cc591c98f3b676d7140b3d2d3e58c55ca0fcf8fd56a606ce4174801c42d6471e
MD5 dfcdb4f29dd98be648c75406b23c025d
BLAKE2b-256 19ad3cc5b283597286a620fc274f6d97de53996c8f1711154f8d158cd7f841ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cd735ee07dceae2021c8d66b24b3ec41008527ac89e8ff2d4fc9b7d0f25990e
MD5 925422c5df7e3634553365577c677501
BLAKE2b-256 5ddb855805e1feceeda77680788f2d912091cc7bb4231d49e47912b4c33d05c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5bdb248f4d2a97b71d9a25af21e3321af772af6b4d1fe3e23554a56f36545dd
MD5 0fdaae946c6731570c5eb3d1bf70338f
BLAKE2b-256 57405e302374c571a7d11427c5da5bcd19a4730c3ef7e5f423cfab501eedaa50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fae564244367135cf2535054cc0cfc343ce5220c52d5ffc377dccfe67d3d96e2
MD5 35882a45d36c5fea53ac5f5dc89195be
BLAKE2b-256 50e3ba128483e6a35ee5aaed5d8ff2f234e146bc736eb8d2477c43ad15da27cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 31fedf7f5364d44847e282d0f14af4bce90b1598b7fa4cf0a6cef0fdaac909fc
MD5 d8b9c37f7fc5ba0fe2335fc89e8ae6b7
BLAKE2b-256 e7d76028dbd823943019503451caf7a9e5222bf2695729137483b460e0242a93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb6b16f2197c3c9280d6a727bd8bad0686a6acc90f310eff05938a28a8560922
MD5 e2790f35909c24c95583c694254b0c09
BLAKE2b-256 3af0748ebf48afe5277822086167f045ce6f12bebbb4ed87fd0a0a41f3e97d12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6991bc9ecd5b8325c5ad3a6b4fd92fc614371e31960753b64ce251dd0589c2c2
MD5 637e587cfd38cdba99f40440e3a13ad5
BLAKE2b-256 7945e483c8500308817657c1b2a0d58ff99934e524096c133495fed642f66901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 06abd740beb3b36484b2b701a4960b3bf05097072e3db0bea78e477f4899fbb3
MD5 7bbbce362e06620545ef3604553d75fb
BLAKE2b-256 f2e8557afd0a1f375df376ba4e40671d85008325c446df55a055ee48d7b4def7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for sql_impressao-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a907ca6746d97553d13ed751c628345b504b3a23e2ddaeceeedb8a29927ba9b0
MD5 f5c540f5d822ef044e04f333bf700177
BLAKE2b-256 0315b86a69b4545407d76745788d891194bd9030fa3c4f30244cfa60d9cb8cb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1829df48df975378faa16ebe4d01d9c98771ff09172ab00b6e4e2297508b639e
MD5 d492993e4204d1a2170b14c3fb152be8
BLAKE2b-256 554ec52c359904a104b2d47151cd04af1b60e1c55a9b199c1ae9a12c308702e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dcf61b02cb715028a98c064d287565b39dc3cb4008568ab27de0a7d82d0b1d37
MD5 fb6a28d35641e899b264934211d68a31
BLAKE2b-256 252c58733d85fe614ceced60bf7cf97c9d9b1b1ac9e5b3655e8e5891f23ace2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81b8bbae6bd83e1c49abd9bc3a7124f777a32d29fe9787757812452e9f7a8c3f
MD5 023a6b2c252ae084f4cc477ef6061674
BLAKE2b-256 178976ea56034bd8e5fee77c06c413050c774f38c41263dcb71bf58cf3ccffc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43259999a055fb881f88f969564b704f5c17ea19f5fbcec0fb18f7650d408b95
MD5 cba74754d83524e03bbe132d8001826a
BLAKE2b-256 d03973b53bf90405acff9232edf1f550cb09a4ebc8cd86b4dc426c04abbd0940

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da6a6005b2fdc7789f1005768f5faf89ee286878f12bb4724d021ebd562796a6
MD5 070f7ada27121d06b674206421827bfe
BLAKE2b-256 daf4757e5b0fc41ed6eab2a20bcaf558025106b5fd83ad91f0ec6f2cddcc6185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ae66dbbdaa6e4780dd6ff0b2a5106a92a2c5408562da4bc800993949c115680b
MD5 b023100087f7b9173dd3527b11c407df
BLAKE2b-256 aec8718be3357dc26046dc7c91781a7710bedf75e642f90a210fcf058b1f36d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ce99dabbf8c8882349d5f69d2d8cbb351c40f1faf5b1311892c6ba67a0ba6e8d
MD5 baaf8c3ec8d01c99b3d05f34540f56bb
BLAKE2b-256 1619a9d34366e88fd747b82653c04ceaea0a5a68f679eb30dcbdd3a61ed57187

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for sql_impressao-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 52e1fa3010117113674a11850572ea610a2c10a8820670c577f74bd962718485
MD5 62842e166e7dedfc6a74e76ae7237016
BLAKE2b-256 e23c07eca6b4f6bc8a7109e5afe6f7d04db8626415cfe6aa6611f08d9f04567c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 07ded13ad6fa15b246596e491c5a9cdbea5701d159b72631079659112a464529
MD5 ec34fa40e4d285c4f53323ad0ba75799
BLAKE2b-256 11fe320d4a6f08399fb127ec342b071147d8e308067bd5aceb3b65d70bbaadef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b830eb6c79a4d333745b68d7e8e82c4d583464257c94a297d153d8eb2b031e82
MD5 be5ba2b0088781b0fa4651cc10225f4e
BLAKE2b-256 6050404af58e4af23cf9edcefdc213da59963b8c314500518a0ce28d7b32aa42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bed3a3dbbf5ca61aa4682e67d98ae151d021eb08d2512b072751679779cac3ab
MD5 b565e3055a9aa4fbb7ad246d78cc0c7d
BLAKE2b-256 17cdefa6aa619e47b98444308c8414f1d35eca8c4c9b48a4f404c54877b18826

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c580077ed24caca156794ef0b87de0970380a7911f0b7862596f101fbb79fc6
MD5 aecc289d2f5d5edc5ed00a070314f73a
BLAKE2b-256 0c6c5fc99d841aab6ebd075b45447baa25f698302be7129ed7869cad595b9df0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bee50320a2315482b8a7472949d95f922d04c03f4bbd8c18104d634d15c66fd6
MD5 96962922fa19fa9afbdcc2c47ca767ed
BLAKE2b-256 859bd58f11ef0fd4b9bc7872201ea7b8c282fa000f9f512708ae01947ea60c8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sql_impressao-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 47a356f4a66876634e98240e5ba982815ee87d824f90e79062bfaa1ae6bfadd5
MD5 c75bb9192e2b1fed90068c09a897df4a
BLAKE2b-256 b89661917005a19a60b19c509be945b630b613d12fb558da3fc664ea2e8d7a6f

See more details on using hashes here.

Provenance

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