Name | sql-impressao JSON |
Version |
1.8.0
JSON |
| download |
home_page | None |
Summary | A SQL fingerprinter. |
upload_time | 2025-07-31 13:22:07 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | None |
keywords |
sql
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
=============
sql-impressao
=============
.. image:: https://img.shields.io/github/actions/workflow/status/adamchainz/sql-impressao/main.yml.svg?branch=main&style=for-the-badge
:target: https://github.com/adamchainz/sql-impressao/actions?workflow=CI
.. image:: https://img.shields.io/pypi/v/sql-impressao.svg?style=for-the-badge
:target: https://pypi.org/project/sql-impressao/
.. image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white&style=for-the-badge
:target: https://github.com/pre-commit/pre-commit
:alt: pre-commit
Python bindings for `sql-fingerprint <https://github.com/adamchainz/sql-fingerprint>`__, a SQL fingerprinter.
(*Impressão digital* is Portuguese for “fingerprint”.)
A quick example:
.. code-block:: python-console
>>> 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 <https://adamj.eu/books/>`__.
----
Installation
============
With **pip**:
.. code-block:: sh
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 <https://github.com/apache/datafusion-sqlparser-rs/blob/776b10afe608a88811b807ab795831d55f186ee3/src/dialect/mod.rs#L1038-L1059>`__ for a full list.
Example:
.. code-block:: python
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:
.. code-block:: python
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"]
Raw data
{
"_id": null,
"home_page": null,
"name": "sql-impressao",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "SQL",
"author": null,
"author_email": "Adam Johnson <me@adamj.eu>",
"download_url": "https://files.pythonhosted.org/packages/2e/d7/9e0549c150172f7b1c00c064eb4fbf774ae8dd50fd51673a4a7da6044117/sql_impressao-1.8.0.tar.gz",
"platform": null,
"description": "=============\nsql-impressao\n=============\n\n.. image:: https://img.shields.io/github/actions/workflow/status/adamchainz/sql-impressao/main.yml.svg?branch=main&style=for-the-badge\n :target: https://github.com/adamchainz/sql-impressao/actions?workflow=CI\n\n.. image:: https://img.shields.io/pypi/v/sql-impressao.svg?style=for-the-badge\n :target: https://pypi.org/project/sql-impressao/\n\n.. image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white&style=for-the-badge\n :target: https://github.com/pre-commit/pre-commit\n :alt: pre-commit\n\nPython bindings for `sql-fingerprint <https://github.com/adamchainz/sql-fingerprint>`__, a SQL fingerprinter.\n(*Impress\u00e3o digital* is Portuguese for \u201cfingerprint\u201d.)\n\nA quick example:\n\n.. code-block:: python-console\n\n >>> from sql_impressao import fingerprint_one\n >>> fingerprint_one('SELECT a, b FROM cheeses WHERE origin = \"France\" ORDER BY age DESC')\n 'SELECT ... FROM cheeses WHERE ... ORDER BY ...'\n\n----\n\n**Improve your Django and Git skills** with `my books <https://adamj.eu/books/>`__.\n\n----\n\nInstallation\n============\n\nWith **pip**:\n\n.. code-block:: sh\n\n python -m pip install sql-impressao\n\nPython 3.9 to 3.13 supported.\n\nUsage\n=====\n\n``fingerprint_one(sql: str, *, dialect: str | None = None) -> str``\n-------------------------------------------------------------------\n\nGenerate the fingerprint for a single SQL string.\n\n``sql`` is the SQL string to fingerprint.\nIt may contain multiple statements separated by semicolons.\n\n``dialect`` is an optional string that specifies the SQL dialect to use.\nSupported names include:\n\n* ``generic`` - the default, a generic SQL dialect.\n* ``mysql`` - MySQL dialect.\n* ``postgresql`` or ``postgres`` - PostgreSQL dialect.\n* ``sqlite`` - SQLite dialect.\n\nSee the `source of the underlying function <https://github.com/apache/datafusion-sqlparser-rs/blob/776b10afe608a88811b807ab795831d55f186ee3/src/dialect/mod.rs#L1038-L1059>`__ for a full list.\n\nExample:\n\n.. code-block:: python\n\n from sql_impressao import fingerprint_one\n\n sql = 'SELECT a, b FROM cheeses WHERE origin = \"France\" ORDER BY age DESC'\n fingerprint = fingerprint_one(sql)\n assert fingerprint == \"SELECT ... FROM cheeses WHERE ... ORDER BY ...\"\n\n``fingerprint_many(sql: list[str], *, dialect: str | None = None) -> list[str]``\n--------------------------------------------------------------------------------\n\nGenerate the fingerprints for a list of SQL strings.\nDoing so for a batch of strings allows sharing some state, such as savepoint ID aliases.\n\n``sql`` is a list of SQL strings to fingerprint.\nEach string may contain multiple statements separated by semicolons.\n\n``dialect`` is an optional string that specifies the SQL dialect to use, as above.\n\nExample:\n\n.. code-block:: python\n\n from sql_impressao import fingerprint_many\n\n sqls = [\"SELECT a, b FROM c\", \"SELECT b, c FROM d\"]\n fingerprints = fingerprint_many(sqls)\n assert fingerprints == [\"SELECT ... FROM c\", \"SELECT ... FROM d\"]\n\n",
"bugtrack_url": null,
"license": null,
"summary": "A SQL fingerprinter.",
"version": "1.8.0",
"project_urls": {
"Changelog": "https://github.com/adamchainz/sql-impressao/blob/main/CHANGELOG.rst",
"Funding": "https://adamj.eu/books/",
"Repository": "https://github.com/adamchainz/sql-impressao"
},
"split_keywords": [
"sql"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "336b1526191b751494d0fc1a1b561a03c3d100b40b1a6e8ba6225aad91370e4f",
"md5": "ff7c00f7728c3884d2960a523f1733b2",
"sha256": "c6dfabeefff680d4420bad2845f243218c15d0369cbd91352e6c6b0da5792b18"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ff7c00f7728c3884d2960a523f1733b2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2262693,
"upload_time": "2025-07-31T13:20:08",
"upload_time_iso_8601": "2025-07-31T13:20:08.627634Z",
"url": "https://files.pythonhosted.org/packages/33/6b/1526191b751494d0fc1a1b561a03c3d100b40b1a6e8ba6225aad91370e4f/sql_impressao-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "edd2a1341b9e8ae33e3b3797e76766b7797eb87d845fa2193cb9ba293b55efbf",
"md5": "c9ecfd2d43264101aa94cac1994d5142",
"sha256": "5903f1241ffeba8684fded601b25529700ee3457771179af61edcbe6a4e1528c"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c9ecfd2d43264101aa94cac1994d5142",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2380622,
"upload_time": "2025-07-31T13:20:10",
"upload_time_iso_8601": "2025-07-31T13:20:10.222365Z",
"url": "https://files.pythonhosted.org/packages/ed/d2/a1341b9e8ae33e3b3797e76766b7797eb87d845fa2193cb9ba293b55efbf/sql_impressao-1.8.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9fc6da7b62dab7886fd9f2b09abfcbb6a61fac23cd6628ad932b5372432bbcb",
"md5": "3bf0f89d107ebc3f0627abb2d3e1e257",
"sha256": "56a2a8c3789bbf67b92f6223de78aa0635b0737e3e2c919f6f9e081a2ac7a6ca"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3bf0f89d107ebc3f0627abb2d3e1e257",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2397271,
"upload_time": "2025-07-31T13:20:11",
"upload_time_iso_8601": "2025-07-31T13:20:11.997558Z",
"url": "https://files.pythonhosted.org/packages/d9/fc/6da7b62dab7886fd9f2b09abfcbb6a61fac23cd6628ad932b5372432bbcb/sql_impressao-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b715a030f33a686731b542d331c8c0bfca3fa0c64204ca59e9711a650f4f0d22",
"md5": "0438a64e8024a506a6bb7713f850542c",
"sha256": "db30b28264d0e3b143e4c3db192e2c0619b1ff1cccf57668cf25410544d438c0"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "0438a64e8024a506a6bb7713f850542c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2659841,
"upload_time": "2025-07-31T13:20:13",
"upload_time_iso_8601": "2025-07-31T13:20:13.859309Z",
"url": "https://files.pythonhosted.org/packages/b7/15/a030f33a686731b542d331c8c0bfca3fa0c64204ca59e9711a650f4f0d22/sql_impressao-1.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bc8432dddc50a7817fb0b255da42b38624fcde6a4fc349bc5f7380b657ef2567",
"md5": "90ece7b9a1ead3a98a90a077145ff7ea",
"sha256": "cc43dbf6461eb98ad8893345fbf95484253c0d28d1c668cf1ad5bceb073f203f"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "90ece7b9a1ead3a98a90a077145ff7ea",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2441485,
"upload_time": "2025-07-31T13:20:15",
"upload_time_iso_8601": "2025-07-31T13:20:15.452719Z",
"url": "https://files.pythonhosted.org/packages/bc/84/32dddc50a7817fb0b255da42b38624fcde6a4fc349bc5f7380b657ef2567/sql_impressao-1.8.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "857e756290221e357db3464e9ac7885be07dcb8adedc656eae676688a56c0138",
"md5": "da2fe36599555d185f76043b01a5c40c",
"sha256": "7dead7ccd6240287763d8be18d3fe652da54943c3b62bc3fcd1ed24379a4c790"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "da2fe36599555d185f76043b01a5c40c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2568009,
"upload_time": "2025-07-31T13:20:16",
"upload_time_iso_8601": "2025-07-31T13:20:16.837202Z",
"url": "https://files.pythonhosted.org/packages/85/7e/756290221e357db3464e9ac7885be07dcb8adedc656eae676688a56c0138/sql_impressao-1.8.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b89035081b410f9b9cccd48032a0425dd3459dd12043741e8fc89709f9f5a6e0",
"md5": "484c9c6803dc133c0d152fafce96a392",
"sha256": "6be1b245e0f779a07e81b34a5f4dd69071ac857da1c1ecbfe38c63d4540a6c0c"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "484c9c6803dc133c0d152fafce96a392",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1914040,
"upload_time": "2025-07-31T13:20:18",
"upload_time_iso_8601": "2025-07-31T13:20:18.198436Z",
"url": "https://files.pythonhosted.org/packages/b8/90/35081b410f9b9cccd48032a0425dd3459dd12043741e8fc89709f9f5a6e0/sql_impressao-1.8.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "63ef5b92e746ed65f7975ce766f61b9b06d8a79e163245a5b64277c37c096259",
"md5": "707cd4e44308a29d1cb034225772322a",
"sha256": "c8bd8064ec9ab5d0ac34ecb7869ae1c3b17a10ef15a22cd367d1852172905169"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "707cd4e44308a29d1cb034225772322a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2035571,
"upload_time": "2025-07-31T13:20:19",
"upload_time_iso_8601": "2025-07-31T13:20:19.705061Z",
"url": "https://files.pythonhosted.org/packages/63/ef/5b92e746ed65f7975ce766f61b9b06d8a79e163245a5b64277c37c096259/sql_impressao-1.8.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "109b319344ba49adb3fbb3be60d8ebdcb9187016dd4a0227c59f121504b6a3a2",
"md5": "b4d4c9ad95598a5138df1a95d00f355c",
"sha256": "07e46191dad425d3e6230c1842adc6b1ffffd65def4342fba92ed3ec4fad8c6c"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b4d4c9ad95598a5138df1a95d00f355c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2271832,
"upload_time": "2025-07-31T13:20:21",
"upload_time_iso_8601": "2025-07-31T13:20:21.440989Z",
"url": "https://files.pythonhosted.org/packages/10/9b/319344ba49adb3fbb3be60d8ebdcb9187016dd4a0227c59f121504b6a3a2/sql_impressao-1.8.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "522f172d089e7ea2765f8a16f83432ffeaabc169b5fe9f926422a24ada155b14",
"md5": "a3f2e59690008899095491edd56c1989",
"sha256": "20b3fed45431b7bc7e4f127f824bd7be46e55d1e624563b01ae96c0adfba1f15"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a3f2e59690008899095491edd56c1989",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2089078,
"upload_time": "2025-07-31T13:20:23",
"upload_time_iso_8601": "2025-07-31T13:20:23.455275Z",
"url": "https://files.pythonhosted.org/packages/52/2f/172d089e7ea2765f8a16f83432ffeaabc169b5fe9f926422a24ada155b14/sql_impressao-1.8.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d285dabb77517ff0c63b1c3568d383878fbc2afd8188e7cdce8bd721d5a55d97",
"md5": "256d5cd6ab491b71bcc3693acc818d2d",
"sha256": "8b682a826f4be0d15e8feabe72932429e069c4cede1b243e190f0bdf9114ca29"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "256d5cd6ab491b71bcc3693acc818d2d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2262549,
"upload_time": "2025-07-31T13:20:26",
"upload_time_iso_8601": "2025-07-31T13:20:26.277549Z",
"url": "https://files.pythonhosted.org/packages/d2/85/dabb77517ff0c63b1c3568d383878fbc2afd8188e7cdce8bd721d5a55d97/sql_impressao-1.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f91b82c4239fdf3daa86835e20b89ba36e8d6f17ba34e3814f3858f8398fd871",
"md5": "e08260dd489d059ae314f9b0da4d0231",
"sha256": "34d0bf3543151efa299b62c35285c9b4cae21f922a0241cabd417e37194e7f31"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e08260dd489d059ae314f9b0da4d0231",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2379991,
"upload_time": "2025-07-31T13:20:28",
"upload_time_iso_8601": "2025-07-31T13:20:28.281979Z",
"url": "https://files.pythonhosted.org/packages/f9/1b/82c4239fdf3daa86835e20b89ba36e8d6f17ba34e3814f3858f8398fd871/sql_impressao-1.8.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ea26c12753423c5f2bc8a701db079ec1322e00170abd6055646b7bdcac2b5c0",
"md5": "e80ac3a386b16ae8e8393a52d70e2ba4",
"sha256": "9742216d00f112a8a01c132fb6285b5dc37831bce55ac83187154cf70c26f812"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e80ac3a386b16ae8e8393a52d70e2ba4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2397315,
"upload_time": "2025-07-31T13:20:29",
"upload_time_iso_8601": "2025-07-31T13:20:29.851805Z",
"url": "https://files.pythonhosted.org/packages/6e/a2/6c12753423c5f2bc8a701db079ec1322e00170abd6055646b7bdcac2b5c0/sql_impressao-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2355392b4aa36d9a54b70c32ac2ade474054b81f2bb1a3842c84f9d6745b8df3",
"md5": "6c2ae1c898fb8ba340834a017436c109",
"sha256": "c8091c1578ea26a8c2034abeff779568623a5d426e966716ae6688c049caaf33"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "6c2ae1c898fb8ba340834a017436c109",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2659350,
"upload_time": "2025-07-31T13:20:32",
"upload_time_iso_8601": "2025-07-31T13:20:32.001230Z",
"url": "https://files.pythonhosted.org/packages/23/55/392b4aa36d9a54b70c32ac2ade474054b81f2bb1a3842c84f9d6745b8df3/sql_impressao-1.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8c73719959c004618560028377c27532c3be6615385fc64c923ced876aede91",
"md5": "e3339d4b13d54cf3dbccc37416131304",
"sha256": "20e597964e2654146debedd5f334c53d3090f039fd9c5ea183b2c4db56ef56b0"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "e3339d4b13d54cf3dbccc37416131304",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2441368,
"upload_time": "2025-07-31T13:20:33",
"upload_time_iso_8601": "2025-07-31T13:20:33.354361Z",
"url": "https://files.pythonhosted.org/packages/f8/c7/3719959c004618560028377c27532c3be6615385fc64c923ced876aede91/sql_impressao-1.8.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e8341a8f91ba0f9ccf7688299f03a728a1e3aba94b7cebdcfbe8d3db6b4601cc",
"md5": "cd3815aae6aa4e33d1a81aaaf213713c",
"sha256": "140c1aeec00ba64bcb05fda5b6738872cb222e9ad8c6e5fc3bff73b244888359"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "cd3815aae6aa4e33d1a81aaaf213713c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2567657,
"upload_time": "2025-07-31T13:20:34",
"upload_time_iso_8601": "2025-07-31T13:20:34.749727Z",
"url": "https://files.pythonhosted.org/packages/e8/34/1a8f91ba0f9ccf7688299f03a728a1e3aba94b7cebdcfbe8d3db6b4601cc/sql_impressao-1.8.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "175b16ae5865f41d4318b5235d498784dbe1825fe39ea7f0e9bf38c3e5455a35",
"md5": "c95175e18970789a4e46022152c3d267",
"sha256": "38b6e90cf705e5ab4a36a8d4d828cd55d503f5b8a9971b635432f70c82fa112e"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "c95175e18970789a4e46022152c3d267",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1914140,
"upload_time": "2025-07-31T13:20:39",
"upload_time_iso_8601": "2025-07-31T13:20:39.376725Z",
"url": "https://files.pythonhosted.org/packages/17/5b/16ae5865f41d4318b5235d498784dbe1825fe39ea7f0e9bf38c3e5455a35/sql_impressao-1.8.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "059f127fb1021d76e8dc07f338fe8af536994428c94533dab802674c5ec1b551",
"md5": "755b4fe63bf40c9b276af5b122fd20c9",
"sha256": "07b7b1b2b95451c5b7a0cd4f4bdb432b23b4e22f6e89629eb1fb1444d82e59b9"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "755b4fe63bf40c9b276af5b122fd20c9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2035868,
"upload_time": "2025-07-31T13:20:40",
"upload_time_iso_8601": "2025-07-31T13:20:40.861590Z",
"url": "https://files.pythonhosted.org/packages/05/9f/127fb1021d76e8dc07f338fe8af536994428c94533dab802674c5ec1b551/sql_impressao-1.8.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "559901a8ab22a51a0fb4f2c7257cc89a76061ba894e546113358779e21a6b846",
"md5": "435a2576bc0a91fe8f29517581c2b213",
"sha256": "86cad105fac99ba23aed82c64c64b02eaf12ec4b560d87321cdf6a6c05101279"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "435a2576bc0a91fe8f29517581c2b213",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2268177,
"upload_time": "2025-07-31T13:20:42",
"upload_time_iso_8601": "2025-07-31T13:20:42.272539Z",
"url": "https://files.pythonhosted.org/packages/55/99/01a8ab22a51a0fb4f2c7257cc89a76061ba894e546113358779e21a6b846/sql_impressao-1.8.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ace727955dc7c42f1e18da3a9402fd1f3d430e90365d27190038e21f2cbf0acb",
"md5": "e6d016182867a8d95ea41d01808edf0a",
"sha256": "d43eccbd175fd2f73808808b51783da8cb2d3db66137260841dd1ba242f94433"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e6d016182867a8d95ea41d01808edf0a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2085131,
"upload_time": "2025-07-31T13:20:43",
"upload_time_iso_8601": "2025-07-31T13:20:43.745078Z",
"url": "https://files.pythonhosted.org/packages/ac/e7/27955dc7c42f1e18da3a9402fd1f3d430e90365d27190038e21f2cbf0acb/sql_impressao-1.8.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51cc61d8260ca15ec2ac92dbfea2e1e8c276ee39069f14c84d72764c4fad5f79",
"md5": "b5eb3af12a85b2f8f45c9d9e79085d03",
"sha256": "e4a44940303ce2774394bedb58a8ee5e8c60e88e6bdfdb384309ea72179f2d92"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b5eb3af12a85b2f8f45c9d9e79085d03",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2261877,
"upload_time": "2025-07-31T13:20:45",
"upload_time_iso_8601": "2025-07-31T13:20:45.153403Z",
"url": "https://files.pythonhosted.org/packages/51/cc/61d8260ca15ec2ac92dbfea2e1e8c276ee39069f14c84d72764c4fad5f79/sql_impressao-1.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2e8200469d0282dc0039de2cce192bf0f8e47b9f1f97db3db3308671145243ce",
"md5": "9a21963578228afe0279ed98aaff3159",
"sha256": "31d2c08a82a63d90c491e697478109c4ad124468a6e7e37bca27444f607c3f99"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9a21963578228afe0279ed98aaff3159",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2378599,
"upload_time": "2025-07-31T13:20:46",
"upload_time_iso_8601": "2025-07-31T13:20:46.515993Z",
"url": "https://files.pythonhosted.org/packages/2e/82/00469d0282dc0039de2cce192bf0f8e47b9f1f97db3db3308671145243ce/sql_impressao-1.8.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d6b4e68535fabd1d6e8f83e1e62c54b8f27f2422ffedbec01ad85d149d7a334d",
"md5": "5c569b354fc23acb517f7d9f4114f276",
"sha256": "6413492833b56c5738d0b91fbab0f049cae7924fbd0637257be354687b0b316b"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5c569b354fc23acb517f7d9f4114f276",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2396087,
"upload_time": "2025-07-31T13:20:47",
"upload_time_iso_8601": "2025-07-31T13:20:47.891496Z",
"url": "https://files.pythonhosted.org/packages/d6/b4/e68535fabd1d6e8f83e1e62c54b8f27f2422ffedbec01ad85d149d7a334d/sql_impressao-1.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2e506533bd7ac01ca754ccfb890dd9f0fbf78d65f459c1faf6b0d9038c1fac2a",
"md5": "83c90c05f74179be9508952647b59319",
"sha256": "94fe7a0d7edbe5eb78d821c2b8a75e6cdeee6df467e3e00424e8123629c3c540"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "83c90c05f74179be9508952647b59319",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2658802,
"upload_time": "2025-07-31T13:20:49",
"upload_time_iso_8601": "2025-07-31T13:20:49.396292Z",
"url": "https://files.pythonhosted.org/packages/2e/50/6533bd7ac01ca754ccfb890dd9f0fbf78d65f459c1faf6b0d9038c1fac2a/sql_impressao-1.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8627001a4efb2dac1e8484df4736cfa7fc7e92c00e551ea0576284be567e1e1e",
"md5": "42c5d9fb64de2ca925682b95c6a66174",
"sha256": "373a55d15583aeda5b64ab1458d83d263ca3df500483a2204ba3a7fe82a185ef"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "42c5d9fb64de2ca925682b95c6a66174",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2440960,
"upload_time": "2025-07-31T13:20:52",
"upload_time_iso_8601": "2025-07-31T13:20:52.834118Z",
"url": "https://files.pythonhosted.org/packages/86/27/001a4efb2dac1e8484df4736cfa7fc7e92c00e551ea0576284be567e1e1e/sql_impressao-1.8.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5d9cbb1440413d6f766b0c0c9e5b799de712a9bd052b25fc77c26c5d0c2855c3",
"md5": "049601002bae3b9a8d7895a8c24f1bce",
"sha256": "9073cd474fec0d550a6ecb596d351106eb473f6ac2a31ee5bbb754ba70a9f8f1"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "049601002bae3b9a8d7895a8c24f1bce",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2566498,
"upload_time": "2025-07-31T13:20:54",
"upload_time_iso_8601": "2025-07-31T13:20:54.347241Z",
"url": "https://files.pythonhosted.org/packages/5d/9c/bb1440413d6f766b0c0c9e5b799de712a9bd052b25fc77c26c5d0c2855c3/sql_impressao-1.8.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f855bd14cbf23ec8ffbf99f90f1a28f7d4b551370f46b6e1642665002dcc055",
"md5": "dd0e5b5174b0e752dd0968ceaeafda9f",
"sha256": "c1de1fe8c65f7b700acc0dc5289c305898a23276076cd933e52624aef20fb01a"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "dd0e5b5174b0e752dd0968ceaeafda9f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1913470,
"upload_time": "2025-07-31T13:20:56",
"upload_time_iso_8601": "2025-07-31T13:20:56.097370Z",
"url": "https://files.pythonhosted.org/packages/7f/85/5bd14cbf23ec8ffbf99f90f1a28f7d4b551370f46b6e1642665002dcc055/sql_impressao-1.8.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7981fd8eec434c8248a7ce80756b5a5980808c0674bd19320f9628e5f37d5b7f",
"md5": "b59c4f164f9f7cebe7beaef027db04b3",
"sha256": "1434c9dfc634d69d2f6cce8b6dd5d804fb3e4205bb90152905df63e2113f2e16"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "b59c4f164f9f7cebe7beaef027db04b3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2035435,
"upload_time": "2025-07-31T13:20:57",
"upload_time_iso_8601": "2025-07-31T13:20:57.560993Z",
"url": "https://files.pythonhosted.org/packages/79/81/fd8eec434c8248a7ce80756b5a5980808c0674bd19320f9628e5f37d5b7f/sql_impressao-1.8.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cdb5b6c7d1586e3d5ee609c5a972613b140a357369a4cef3c557373aa1cd14a0",
"md5": "5363f82cbb741a38a8ce347b9c6b5bcf",
"sha256": "c9e99908dab5bd43a5416a505545a409cb98ca049c8da57f7df151c705e91eb5"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "5363f82cbb741a38a8ce347b9c6b5bcf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2268098,
"upload_time": "2025-07-31T13:21:00",
"upload_time_iso_8601": "2025-07-31T13:21:00.589300Z",
"url": "https://files.pythonhosted.org/packages/cd/b5/b6c7d1586e3d5ee609c5a972613b140a357369a4cef3c557373aa1cd14a0/sql_impressao-1.8.0-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f2bba13d2cffa83fe7adec37e2309eb2d4d63cda78429a4a2b2c52533907745b",
"md5": "b5f67179d74eb2b7399bf7b4f232c5ad",
"sha256": "6124d71a53f671ae47549c4fcee2a258fed0ee7b72352d9070d7ab0dc550c03d"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b5f67179d74eb2b7399bf7b4f232c5ad",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2085318,
"upload_time": "2025-07-31T13:21:01",
"upload_time_iso_8601": "2025-07-31T13:21:01.883427Z",
"url": "https://files.pythonhosted.org/packages/f2/bb/a13d2cffa83fe7adec37e2309eb2d4d63cda78429a4a2b2c52533907745b/sql_impressao-1.8.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3c11239218b52e5cb8767843206e1ac1bdde0cd33c87452a22b63b4e7890793",
"md5": "b2802885d5cba45a347265d20acfc05b",
"sha256": "c85a99d0234c17e334f14ff0a1e8e87e5c5ed1bae7f7edd1d2783c97deccb81e"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b2802885d5cba45a347265d20acfc05b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2262372,
"upload_time": "2025-07-31T13:21:03",
"upload_time_iso_8601": "2025-07-31T13:21:03.294655Z",
"url": "https://files.pythonhosted.org/packages/a3/c1/1239218b52e5cb8767843206e1ac1bdde0cd33c87452a22b63b4e7890793/sql_impressao-1.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "65047574390b284ac4726b10534ccfeea530464e10c112c20c8306dcc1c77c27",
"md5": "7e49acdee032809049eeea2691020a76",
"sha256": "c6fea2b1874a00faeb1552870fd8963414225e9cb2460c803451a0d1ea3ede19"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "7e49acdee032809049eeea2691020a76",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2378911,
"upload_time": "2025-07-31T13:21:04",
"upload_time_iso_8601": "2025-07-31T13:21:04.633666Z",
"url": "https://files.pythonhosted.org/packages/65/04/7574390b284ac4726b10534ccfeea530464e10c112c20c8306dcc1c77c27/sql_impressao-1.8.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0e13b31cb2757fb8e3f41ab5441ceb8e19644876b3a7cfcdd3bf4023b31ad60f",
"md5": "35f653e999e23ea6bafcf58b6a30123f",
"sha256": "83e766b0858593a4480de1d2a96317cdb9a32427ddf2cf7bed93e1b5cc3439c1"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "35f653e999e23ea6bafcf58b6a30123f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2396202,
"upload_time": "2025-07-31T13:21:05",
"upload_time_iso_8601": "2025-07-31T13:21:05.987226Z",
"url": "https://files.pythonhosted.org/packages/0e/13/b31cb2757fb8e3f41ab5441ceb8e19644876b3a7cfcdd3bf4023b31ad60f/sql_impressao-1.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6d64484afd15fc6fd2d3c26fce79f5db3743e77956cda0c7215d89c02e1d5776",
"md5": "31ae3bc039a41b3e5255e3c7c0e6a741",
"sha256": "d41dc902653e28b6af42c039e83bfc7b29258f41a4cd1c736d29dd4b90dec49c"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "31ae3bc039a41b3e5255e3c7c0e6a741",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2658358,
"upload_time": "2025-07-31T13:21:07",
"upload_time_iso_8601": "2025-07-31T13:21:07.470599Z",
"url": "https://files.pythonhosted.org/packages/6d/64/484afd15fc6fd2d3c26fce79f5db3743e77956cda0c7215d89c02e1d5776/sql_impressao-1.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ce4b20798b13a27d2629db4f9c2afc20957c8c121bc8b049298c4eab43b02a7",
"md5": "72110dec2fc6fea12993f1531e37d23e",
"sha256": "08539f38cde6895044b0a946cbb6b10799c769f378ed0c64a27689eb7f9992a6"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "72110dec2fc6fea12993f1531e37d23e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2441141,
"upload_time": "2025-07-31T13:21:09",
"upload_time_iso_8601": "2025-07-31T13:21:09.336461Z",
"url": "https://files.pythonhosted.org/packages/5c/e4/b20798b13a27d2629db4f9c2afc20957c8c121bc8b049298c4eab43b02a7/sql_impressao-1.8.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eb6ff347c959b3507df0f4310e77183554b0b96057546e773f16b44406eb44a2",
"md5": "a35022e0add4dd47971554cdf1992ea2",
"sha256": "671a13bbd42e63fe091ddcb2fd0da6819b997f608e1f3fb466515d0ae4309353"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a35022e0add4dd47971554cdf1992ea2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2566428,
"upload_time": "2025-07-31T13:21:10",
"upload_time_iso_8601": "2025-07-31T13:21:10.791586Z",
"url": "https://files.pythonhosted.org/packages/eb/6f/f347c959b3507df0f4310e77183554b0b96057546e773f16b44406eb44a2/sql_impressao-1.8.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "574a35a164a0707049065fbe87c387107a4823e75d50241efb1061ac579cd49a",
"md5": "779e4af69512d5e24fe4f8f4307c3232",
"sha256": "4a74a88e42769c57cc916bcaa034240bff245cb31125d3813d295c361eb1c128"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "779e4af69512d5e24fe4f8f4307c3232",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2261741,
"upload_time": "2025-07-31T13:21:16",
"upload_time_iso_8601": "2025-07-31T13:21:16.782664Z",
"url": "https://files.pythonhosted.org/packages/57/4a/35a164a0707049065fbe87c387107a4823e75d50241efb1061ac579cd49a/sql_impressao-1.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bc5ebe091d625becd10ae4e3daea6aa11a913b77825468f49354106ceea3e7af",
"md5": "cb6121205b4e98a901cf1d2e99f7d506",
"sha256": "f9aefa1f03471bd0512a7e59a38071abeb5e69ab5888dee27792385eff58326f"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "cb6121205b4e98a901cf1d2e99f7d506",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2379301,
"upload_time": "2025-07-31T13:21:18",
"upload_time_iso_8601": "2025-07-31T13:21:18.120508Z",
"url": "https://files.pythonhosted.org/packages/bc/5e/be091d625becd10ae4e3daea6aa11a913b77825468f49354106ceea3e7af/sql_impressao-1.8.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20203b7934d6c6e39768f260e3d7c21e0f696b4b763104815d20233e5852039e",
"md5": "4c13354bf9113132be3416820517eb5b",
"sha256": "ab83975217e9bd9d7d1e159fd9c17fdb458c4a34d13f8e4b22bd438d2679a215"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313t-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4c13354bf9113132be3416820517eb5b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2440649,
"upload_time": "2025-07-31T13:21:20",
"upload_time_iso_8601": "2025-07-31T13:21:20.999056Z",
"url": "https://files.pythonhosted.org/packages/20/20/3b7934d6c6e39768f260e3d7c21e0f696b4b763104815d20233e5852039e/sql_impressao-1.8.0-cp313-cp313t-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32f45b8e5ac8983e0082257bbb0a3b509af292d07966191315ad6afcdfdac53e",
"md5": "8ed848cf4d1d42390bb20ee4ad1461d9",
"sha256": "2381a711801d3a66226865f817a2a044a2175252849946e6bd4dcd15bdc0d363"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313t-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "8ed848cf4d1d42390bb20ee4ad1461d9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2566818,
"upload_time": "2025-07-31T13:21:22",
"upload_time_iso_8601": "2025-07-31T13:21:22.656140Z",
"url": "https://files.pythonhosted.org/packages/32/f4/5b8e5ac8983e0082257bbb0a3b509af292d07966191315ad6afcdfdac53e/sql_impressao-1.8.0-cp313-cp313t-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef9c4d29a7ecbfd89b03a9e840d028545a791b38e8b623b2f49ba09138408b99",
"md5": "1502ca5459cefd6c15bf7b4b64c681f7",
"sha256": "9c6e756d5e50084a1a25ea9f6f82a1ddcaa9fabe20035c8f4c1ab2397e6205fe"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "1502ca5459cefd6c15bf7b4b64c681f7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1913549,
"upload_time": "2025-07-31T13:21:13",
"upload_time_iso_8601": "2025-07-31T13:21:13.870259Z",
"url": "https://files.pythonhosted.org/packages/ef/9c/4d29a7ecbfd89b03a9e840d028545a791b38e8b623b2f49ba09138408b99/sql_impressao-1.8.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "275f2bbcb77b19841352c9ccf4431e22a93e1adb85430fd649e99633a175af0f",
"md5": "9bd0e1c111b3f9da8b6d4ed75b3b4a23",
"sha256": "57008d2d6961baab7b40881fd45d300b9005156f0808e545c05993ebb8c3f814"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "9bd0e1c111b3f9da8b6d4ed75b3b4a23",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2035325,
"upload_time": "2025-07-31T13:21:15",
"upload_time_iso_8601": "2025-07-31T13:21:15.378925Z",
"url": "https://files.pythonhosted.org/packages/27/5f/2bbcb77b19841352c9ccf4431e22a93e1adb85430fd649e99633a175af0f/sql_impressao-1.8.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "782f96c693a258e32c9df54baa6a77a1ff40551981b45b8bd74b173a16262e61",
"md5": "115a0a75b2b9f7b49bf5e74edf0695b2",
"sha256": "4ec5bfb1951efc9e92872d5c74320510da98262ad2c7b1381a0bee2c70d78431"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "115a0a75b2b9f7b49bf5e74edf0695b2",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 2396498,
"upload_time": "2025-07-31T13:21:24",
"upload_time_iso_8601": "2025-07-31T13:21:24.224102Z",
"url": "https://files.pythonhosted.org/packages/78/2f/96c693a258e32c9df54baa6a77a1ff40551981b45b8bd74b173a16262e61/sql_impressao-1.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a1ce01f1ccf8d2ae4f620a702872716dfe2e48ce4a5c0eb4204f8fc17ce5381",
"md5": "9ca557e9a800701212952f780a02df34",
"sha256": "9b9ace655b23ffe83e9cb6ccb48ddb29766ce7aa436caffe59c504dcb60b99db"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "9ca557e9a800701212952f780a02df34",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 2658845,
"upload_time": "2025-07-31T13:21:27",
"upload_time_iso_8601": "2025-07-31T13:21:27.121508Z",
"url": "https://files.pythonhosted.org/packages/1a/1c/e01f1ccf8d2ae4f620a702872716dfe2e48ce4a5c0eb4204f8fc17ce5381/sql_impressao-1.8.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "118a40e02b0d10f747d6ffe6c1567dd0216b737ebedcb8fe6290959a1e68d3b1",
"md5": "d404f16de15c5cae8d087bd49d33d84f",
"sha256": "275aa86823d7bca8352417fb871bbac5b804068a0fb6614bf7e25cc753dc96f8"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d404f16de15c5cae8d087bd49d33d84f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2263001,
"upload_time": "2025-07-31T13:21:28",
"upload_time_iso_8601": "2025-07-31T13:21:28.456125Z",
"url": "https://files.pythonhosted.org/packages/11/8a/40e02b0d10f747d6ffe6c1567dd0216b737ebedcb8fe6290959a1e68d3b1/sql_impressao-1.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f78f22c31a8c6d61a77d6433debfd28316865e7185373ec8c21a57a370e07a0",
"md5": "7414229b99cb2672d9e201b30e8e746b",
"sha256": "b757ff7bd1d85cb160a2bee9b55f40128ea17d53180d7a32064b95a82006f870"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "7414229b99cb2672d9e201b30e8e746b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2380526,
"upload_time": "2025-07-31T13:21:30",
"upload_time_iso_8601": "2025-07-31T13:21:30.040680Z",
"url": "https://files.pythonhosted.org/packages/6f/78/f22c31a8c6d61a77d6433debfd28316865e7185373ec8c21a57a370e07a0/sql_impressao-1.8.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "18d5ab47701346d8b06531c8e66ad4c3d10e775890d62c542c4761799f84c283",
"md5": "ae261791ba7acdd87b65e5024fa5fe32",
"sha256": "3a3871ef30cd271476afe5199bf1f22f6dfbd17777bfb01e71914ef114b3e6ae"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ae261791ba7acdd87b65e5024fa5fe32",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2397873,
"upload_time": "2025-07-31T13:21:31",
"upload_time_iso_8601": "2025-07-31T13:21:31.376900Z",
"url": "https://files.pythonhosted.org/packages/18/d5/ab47701346d8b06531c8e66ad4c3d10e775890d62c542c4761799f84c283/sql_impressao-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b34cbacbe927def352287763a1e917fbfe16675eb6052969d244e5f8e058872",
"md5": "f1e737faa4d4e81e111497ec1cd357c5",
"sha256": "9d658f5ad22264aa014d52c6ef537aa3c5aa941a43aaa724e0e38dbc6a4761c4"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "f1e737faa4d4e81e111497ec1cd357c5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2660180,
"upload_time": "2025-07-31T13:21:32",
"upload_time_iso_8601": "2025-07-31T13:21:32.916506Z",
"url": "https://files.pythonhosted.org/packages/1b/34/cbacbe927def352287763a1e917fbfe16675eb6052969d244e5f8e058872/sql_impressao-1.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5c06714975c51c98c6424d022dbcaeb73f12eb7fff1d15be650e23d610bcad94",
"md5": "63d32d3d9ae220cda2d5ae174350a46e",
"sha256": "4542c218235e4006e2b6063690618afd3f1767d7ce62aafeb1f16f7987574485"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "63d32d3d9ae220cda2d5ae174350a46e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2441848,
"upload_time": "2025-07-31T13:21:34",
"upload_time_iso_8601": "2025-07-31T13:21:34.306259Z",
"url": "https://files.pythonhosted.org/packages/5c/06/714975c51c98c6424d022dbcaeb73f12eb7fff1d15be650e23d610bcad94/sql_impressao-1.8.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a55e7bb5a76da6d83930e895ed91917012ad7f80131277790813992681531f3b",
"md5": "f59cb3043b05ca52aebd01173eaec923",
"sha256": "713b179484c4e19bd6a0486d9c44c210fb6956f83859e619800947f37ffe6d45"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "f59cb3043b05ca52aebd01173eaec923",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2567992,
"upload_time": "2025-07-31T13:21:35",
"upload_time_iso_8601": "2025-07-31T13:21:35.727686Z",
"url": "https://files.pythonhosted.org/packages/a5/5e/7bb5a76da6d83930e895ed91917012ad7f80131277790813992681531f3b/sql_impressao-1.8.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8391f0d84efc9c341c0558cd497006d7ddbc2d30599d23373868842dc8f0e96a",
"md5": "97a75a886bdb088488eba9d56d0e9900",
"sha256": "5952a98b3d42bddf0d1d70148d204bb013a442506b79f78e5eb1274c304cc20e"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "97a75a886bdb088488eba9d56d0e9900",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1914077,
"upload_time": "2025-07-31T13:21:37",
"upload_time_iso_8601": "2025-07-31T13:21:37.340929Z",
"url": "https://files.pythonhosted.org/packages/83/91/f0d84efc9c341c0558cd497006d7ddbc2d30599d23373868842dc8f0e96a/sql_impressao-1.8.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a38b492b65ada668a4935aba89d573e1afc14ded64bec4e810c14cf308ca943b",
"md5": "c3804d8bf34162253ef5ec270402c33e",
"sha256": "951c87dff1f3f5fe3add421479783cdfe77c6928640f23caec285a88e9d783dc"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "c3804d8bf34162253ef5ec270402c33e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2035707,
"upload_time": "2025-07-31T13:21:38",
"upload_time_iso_8601": "2025-07-31T13:21:38.967693Z",
"url": "https://files.pythonhosted.org/packages/a3/8b/492b65ada668a4935aba89d573e1afc14ded64bec4e810c14cf308ca943b/sql_impressao-1.8.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80c44714996695301d34d4c4fc5542c9bef979d273688b423f8d64ec31a89a84",
"md5": "cc8e70158233be75a49b09ebf4b1831e",
"sha256": "e8c493bf5d78217686e95e3d792c3903156889103198549e0073945444bf44a5"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "cc8e70158233be75a49b09ebf4b1831e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2263467,
"upload_time": "2025-07-31T13:21:40",
"upload_time_iso_8601": "2025-07-31T13:21:40.427633Z",
"url": "https://files.pythonhosted.org/packages/80/c4/4714996695301d34d4c4fc5542c9bef979d273688b423f8d64ec31a89a84/sql_impressao-1.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3ec05b68c20ca88e66c49f17faac6ecf638b0bb9bddb31701ecb31cf4cea6e34",
"md5": "41c7c277c3aacc8af851482a46d6cb9a",
"sha256": "8b67f6df98c1f653afedd42088dfabc83a7b91d628b721d9e8307cf39a22af5f"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "41c7c277c3aacc8af851482a46d6cb9a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2380729,
"upload_time": "2025-07-31T13:21:41",
"upload_time_iso_8601": "2025-07-31T13:21:41.981387Z",
"url": "https://files.pythonhosted.org/packages/3e/c0/5b68c20ca88e66c49f17faac6ecf638b0bb9bddb31701ecb31cf4cea6e34/sql_impressao-1.8.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad543c12a06391ec52ab43b90507862bf2a75beb80484e3295408cabf5863dbc",
"md5": "28f060d982020ac63bb29679f8cdad1b",
"sha256": "a49b86c52195510888964c4f09dbdf5a6f6de007a736258d8e44f13c54d3e457"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "28f060d982020ac63bb29679f8cdad1b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2399218,
"upload_time": "2025-07-31T13:21:43",
"upload_time_iso_8601": "2025-07-31T13:21:43.448373Z",
"url": "https://files.pythonhosted.org/packages/ad/54/3c12a06391ec52ab43b90507862bf2a75beb80484e3295408cabf5863dbc/sql_impressao-1.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2da8af2a4d601a915ef0bdf33026dd9936eba0b028948f8b4c11a92d7a17796a",
"md5": "a7065feaaf54a3381a0a753819d465fb",
"sha256": "f970628a468146bc86fd1534e1c80ae6862c3e44b4fd29e4bce513a251eb4b90"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "a7065feaaf54a3381a0a753819d465fb",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2660298,
"upload_time": "2025-07-31T13:21:44",
"upload_time_iso_8601": "2025-07-31T13:21:44.946712Z",
"url": "https://files.pythonhosted.org/packages/2d/a8/af2a4d601a915ef0bdf33026dd9936eba0b028948f8b4c11a92d7a17796a/sql_impressao-1.8.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "39d64ed84f5c6a91bad5e25d063dbf6e87ec9613f919c757ff1352539b5106c2",
"md5": "1d7002a5feef52d1dbfc93c5b0b73945",
"sha256": "95694f02bb03de375d39bd364091570eb8c1f6559994e0e1be158abba615aff2"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "1d7002a5feef52d1dbfc93c5b0b73945",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2442275,
"upload_time": "2025-07-31T13:21:46",
"upload_time_iso_8601": "2025-07-31T13:21:46.803963Z",
"url": "https://files.pythonhosted.org/packages/39/d6/4ed84f5c6a91bad5e25d063dbf6e87ec9613f919c757ff1352539b5106c2/sql_impressao-1.8.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff3e8c744a1f1c81d4b338a254af75eaf3bfb68777d2fc05c8fbc091f01de290",
"md5": "2dee2f2d90b63a50492c21d9e90d6c7b",
"sha256": "4c841997d8f55e17e10bab8117e354a5283dfee8dd7da974b39520b569ae8d3a"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "2dee2f2d90b63a50492c21d9e90d6c7b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2569443,
"upload_time": "2025-07-31T13:21:48",
"upload_time_iso_8601": "2025-07-31T13:21:48.589319Z",
"url": "https://files.pythonhosted.org/packages/ff/3e/8c744a1f1c81d4b338a254af75eaf3bfb68777d2fc05c8fbc091f01de290/sql_impressao-1.8.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1fb187d7667186196500da69613c1d1273c75a1bcf34e78dcc556d49ff42243f",
"md5": "a517f34c730a6c5f8250de1cefb83290",
"sha256": "043d4cfba819bfff656378d3c21913286f1c0e7e05f8ca2e9eaa51dcf4f6986e"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a517f34c730a6c5f8250de1cefb83290",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2263418,
"upload_time": "2025-07-31T13:21:50",
"upload_time_iso_8601": "2025-07-31T13:21:50.494569Z",
"url": "https://files.pythonhosted.org/packages/1f/b1/87d7667186196500da69613c1d1273c75a1bcf34e78dcc556d49ff42243f/sql_impressao-1.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "abb53c7589828cc0abcc032f50dd1e82f1d6993f54a880984cea33ab9ecc5f2d",
"md5": "d3238f9745de228ecb1b13741aa604bd",
"sha256": "b8877c321519780c1b888337ad9af5b9dba3eedcc187e39c7150343a90ad9fc6"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "d3238f9745de228ecb1b13741aa604bd",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2380413,
"upload_time": "2025-07-31T13:21:52",
"upload_time_iso_8601": "2025-07-31T13:21:52.134902Z",
"url": "https://files.pythonhosted.org/packages/ab/b5/3c7589828cc0abcc032f50dd1e82f1d6993f54a880984cea33ab9ecc5f2d/sql_impressao-1.8.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b96730eb9f16617a6b5e938177ccb58c643fbac1990620335c66df3ffeee5158",
"md5": "0e92bb6e08abf889e241b34dcc41a879",
"sha256": "db76a1335f02f898e73ee74eb210a489b7b0e92605f206656f005cb3628bf27d"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0e92bb6e08abf889e241b34dcc41a879",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2398964,
"upload_time": "2025-07-31T13:21:55",
"upload_time_iso_8601": "2025-07-31T13:21:55.163686Z",
"url": "https://files.pythonhosted.org/packages/b9/67/30eb9f16617a6b5e938177ccb58c643fbac1990620335c66df3ffeee5158/sql_impressao-1.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c717e101da23b785e94cb0d86c0efa07a31ff993d48ffb638066d72ea1eb4d9e",
"md5": "9d1490689689613b9a0eebc86ecb0cb5",
"sha256": "61d63d14956280e91a450d1c4241c8dc7a9536459550ad753a97b8ca474231cc"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "9d1490689689613b9a0eebc86ecb0cb5",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2660182,
"upload_time": "2025-07-31T13:21:56",
"upload_time_iso_8601": "2025-07-31T13:21:56.968996Z",
"url": "https://files.pythonhosted.org/packages/c7/17/e101da23b785e94cb0d86c0efa07a31ff993d48ffb638066d72ea1eb4d9e/sql_impressao-1.8.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "440a4c71dcf671c52d3f0db1d7dc9012037e5fa63fd2480e10778161a5687910",
"md5": "3b8647c4649b2a79bbabde60027d7b59",
"sha256": "f8e90ad7e1c4d8ac0981ac713b3e6f5d310ee053f640c339e51af5a134b93e35"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "3b8647c4649b2a79bbabde60027d7b59",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2442535,
"upload_time": "2025-07-31T13:21:58",
"upload_time_iso_8601": "2025-07-31T13:21:58.606013Z",
"url": "https://files.pythonhosted.org/packages/44/0a/4c71dcf671c52d3f0db1d7dc9012037e5fa63fd2480e10778161a5687910/sql_impressao-1.8.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8dd56bc6ace45a1a1c38af271c8fef3e9ed1ef69eded2bab14357b6e1a0034db",
"md5": "c2118ca1bd5ac775f8c4a2046f260cff",
"sha256": "f6934274a3200c58dd76e9b7a56ddf2f10eee9fca2fd05bee8f306de7e4cec3c"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c2118ca1bd5ac775f8c4a2046f260cff",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2568870,
"upload_time": "2025-07-31T13:22:00",
"upload_time_iso_8601": "2025-07-31T13:22:00.609905Z",
"url": "https://files.pythonhosted.org/packages/8d/d5/6bc6ace45a1a1c38af271c8fef3e9ed1ef69eded2bab14357b6e1a0034db/sql_impressao-1.8.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5718f50bcd787ecf3b5c35b28f437bc52c710be07d41d4e66a1175879ae0e0da",
"md5": "fc2966373e980cf374b42d5b63c0dcf4",
"sha256": "5766be1fa7908eb48762b41a36fe0514a25c95325257feb03164ef9c60b28ab8"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fc2966373e980cf374b42d5b63c0dcf4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 2263560,
"upload_time": "2025-07-31T13:22:02",
"upload_time_iso_8601": "2025-07-31T13:22:02.076384Z",
"url": "https://files.pythonhosted.org/packages/57/18/f50bcd787ecf3b5c35b28f437bc52c710be07d41d4e66a1175879ae0e0da/sql_impressao-1.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9ee52b300b86d94f834571d7a716e6bdcf6b3b759e11e24f80c22225d513ed6",
"md5": "61b1be3739a51e6424ba2ecb1684b7ad",
"sha256": "1a6c5c516a9a345d953561c765f1eda40bdb7819a2c2d42a8c474acff93db71c"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "61b1be3739a51e6424ba2ecb1684b7ad",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 2380679,
"upload_time": "2025-07-31T13:22:03",
"upload_time_iso_8601": "2025-07-31T13:22:03.577176Z",
"url": "https://files.pythonhosted.org/packages/c9/ee/52b300b86d94f834571d7a716e6bdcf6b3b759e11e24f80c22225d513ed6/sql_impressao-1.8.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b0b19d990fd77848ea55a38ac63a71ab4a73a3c28207d939a405c1c0d875a6e3",
"md5": "ede675ca5b50c7d1501696ebb4ea670d",
"sha256": "79a3bb727597abb30e71a373c4cd39d5aaaa6563153e5d290ec479595f304fdb"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "ede675ca5b50c7d1501696ebb4ea670d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 2442092,
"upload_time": "2025-07-31T13:22:05",
"upload_time_iso_8601": "2025-07-31T13:22:05.114076Z",
"url": "https://files.pythonhosted.org/packages/b0/b1/9d990fd77848ea55a38ac63a71ab4a73a3c28207d939a405c1c0d875a6e3/sql_impressao-1.8.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6fab2291f649793751962043d7845977363532507fb6444f302c2b17290004c5",
"md5": "25fcf06b1a7723cfdd5851f82c42b37a",
"sha256": "f3b78f0eed9cbcd6b0223724533796556477581c4458b87c6a1db21a9bab3f87"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "25fcf06b1a7723cfdd5851f82c42b37a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 2569190,
"upload_time": "2025-07-31T13:22:06",
"upload_time_iso_8601": "2025-07-31T13:22:06.495652Z",
"url": "https://files.pythonhosted.org/packages/6f/ab/2291f649793751962043d7845977363532507fb6444f302c2b17290004c5/sql_impressao-1.8.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ed79e0549c150172f7b1c00c064eb4fbf774ae8dd50fd51673a4a7da6044117",
"md5": "f6fbe99b7a19810fd68c9d49fe5a97a2",
"sha256": "f68427b922709e4dbc21328f05e9bd3f77993cc02a6931305a86344453dbe0ef"
},
"downloads": -1,
"filename": "sql_impressao-1.8.0.tar.gz",
"has_sig": false,
"md5_digest": "f6fbe99b7a19810fd68c9d49fe5a97a2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 15592,
"upload_time": "2025-07-31T13:22:07",
"upload_time_iso_8601": "2025-07-31T13:22:07.844230Z",
"url": "https://files.pythonhosted.org/packages/2e/d7/9e0549c150172f7b1c00c064eb4fbf774ae8dd50fd51673a4a7da6044117/sql_impressao-1.8.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-31 13:22:07",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "adamchainz",
"github_project": "sql-impressao",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "sql-impressao"
}