.. -*- coding: utf-8 -*-
.. :Project: pglast — PostgreSQL Languages AST
.. :Created: mer 02 ago 2017 14:49:24 CEST
.. :Author: Lele Gaifax <lele@metapensiero.it>
.. :License: GNU General Public License version 3 or later
.. :Copyright: © 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Lele Gaifax
..
========
pglast
========
PostgreSQL Languages AST and statements prettifier
==================================================
:Author: Lele Gaifax
:Contact: lele@metapensiero.it
:License: `GNU General Public License version 3 or later`__
:Status: |build| |doc| |codecov|
:Version: `7`__
__ https://www.gnu.org/licenses/gpl.html
__ https://pglast.readthedocs.io/en/v7/development.html#history
.. |build| image:: https://github.com/lelit/pglast/actions/workflows/ci.yml/badge.svg?branch=v7
:target: https://github.com/lelit/pglast/actions/workflows/ci.yml
:alt: Build status
.. |doc| image:: https://readthedocs.org/projects/pglast/badge/?version=v7
:target: https://readthedocs.org/projects/pglast/builds/
:alt: Documentation status
.. |codecov| image:: https://codecov.io/gh/lelit/pglast/branch/v3/graph/badge.svg?token=A90D8tWnft
:target: https://codecov.io/gh/lelit/pglast
:alt: Test coverage status
This is a Python 3 module that exposes the *parse tree* of a PostgreSQL__ statement (extracted
by the almost standard PG parser repackaged as a standalone static library by `libpg_query`__)
as set of interconnected *nodes*, usually called an *abstract syntax tree*.
__ https://www.postgresql.org/
__ https://github.com/pganalyze/libpg_query
See a `more detailed introduction`__ in the documentation_.
__ https://pglast.readthedocs.io/en/v7/introduction.html
Installation
------------
As usual, the easiest way is with pip::
$ pip install pglast
Alternatively you can clone the repository::
$ git clone https://github.com/lelit/pglast.git --recursive
and install from there::
$ pip install ./pglast
Development
-----------
There is a set of *makefiles* implementing the most common operations, a ``make help`` will
show a brief table of contents. A comprehensive test suite, based on pytest__, covers__ nearly
99% of the source lines.
__ https://docs.pytest.org/en/latest/
__ https://codecov.io/gh/lelit/pglast/branch/v7/
Documentation
-------------
Latest documentation is hosted by `Read the Docs`__ at https://pglast.readthedocs.io/en/v7
__ https://readthedocs.org/
.. -*- coding: utf-8 -*-
.. _changes:
Changes
-------
Version 7
#########
7.10 (2025-10-26)
~~~~~~~~~~~~~~~~~
- Fix ``AlterTableCmd`` printer, to handle ``ALTER TABLE a ALTER b SET STATISTICS DEFAULT``
- Use `Cython 3.1.6`__
__ https://github.com/cython/cython/blob/master/CHANGES.rst#316-2025-10-23
7.9 (2025-10-22)
~~~~~~~~~~~~~~~~
- Add an empty line between a ``SELECT foo UNION SELECT bar`` and its ``ORDER
BY``/``LIMIT``/``OFFSET`` clause, to emphasize the fact that it applies to the whole
statement, not to the "right" subquery.
7.8 (2025-10-19)
~~~~~~~~~~~~~~~~
- Fix prettification of single keyword statements (`PR #173`__), thanks to Vlastimil Zíma
__ https://github.com/lelit/pglast/pull/173
- Improve ``WithClause`` printer, when there is more than one *CTE*
- Avoid spurious parenthesis around expression terms in some common cases like ``1 + 2 + 3 + 4``
- Use macOS 14 to build arm 64 wheels and macOS 15 to build x86-64 wheels, given that GH is
going to `drop macOS 13 runners`__ in a couple of months
__ https://app.github.media/e/es?s=88570519&e=4325169&elq=c19630476abd40d0b7c6ff415b964f56
- Generate Python 3.14 wheels, thanks to cibuildwheel `3.2.1`__
__ https://cibuildwheel.pypa.io/en/stable/changelog/#v321
7.7 (2025-04-04)
~~~~~~~~~~~~~~~~
- Nothing visible, fix GitHub Actions CI environment
7.6 (2025-04-03)
~~~~~~~~~~~~~~~~
- Upgrade libpg_query to `17-6.1.0`__
__ https://github.com/pganalyze/libpg_query/releases/tag/17-6.1.0
7.5 (2025-03-17)
~~~~~~~~~~~~~~~~
- Merge with `Version 6`_
7.4 (2025-03-17)
~~~~~~~~~~~~~~~~
- Merge with `Version 6`_
7.3 (2025-02-09)
~~~~~~~~~~~~~~~~
- Handle the ``SET configuration_parameter FROM CURRENT`` case in the ``VariableSetStmt``
printer (`PR #168`__), thanks to Bolaji Wahab
__ https://github.com/lelit/pglast/pull/168
7.2 (2024-12-21)
~~~~~~~~~~~~~~~~
- Merge with `Version 6`_
- Handle ``timestamp AT LOCAL`` expression, new in PG17
7.1 (2024-11-26)
~~~~~~~~~~~~~~~~
- Merge with `Version 6`_
7.0 (2024-11-13)
~~~~~~~~~~~~~~~~
- No visible changes
7.0.dev1 (2024-11-01)
~~~~~~~~~~~~~~~~~~~~~
- Upgrade libpg_query to `17-6.0.0`__
__ https://github.com/pganalyze/libpg_query/releases/tag/17-6.0.0
7.0.dev0 (2024-10-31)
~~~~~~~~~~~~~~~~~~~~~
- No visible changes with respect to v6, apart from the support for new/revised syntaxes of
`PostgreSQL 17`__
__ https://www.postgresql.org/docs/17/release-17.html
~~~~~~~~~~~~~~~~~~~~
**Breaking changes**
~~~~~~~~~~~~~~~~~~~~
- Target PostgreSQL 17, thanks to libpg_query `17-latest-dev`__
__ https://github.com/pganalyze/libpg_query/tree/17-latest-dev
- Require Python >= 3.9
Version 6
#########
6.16 (2025-03-17)
~~~~~~~~~~~~~~~~~
- No visible changes, just a workaround to a strange CI Windows-only failure on a test
introduced by v6.15
6.15 (2025-03-17)
~~~~~~~~~~~~~~~~~
- Escape occurrences of C-style end markers in SQL-style comments, when changing comment style
in the ``RawStream`` (issue `#170`__)
__ https://github.com/lelit/pglast/issues/170
6.14 (2025-02-09)
~~~~~~~~~~~~~~~~~
- Handle the ``SET configuration_parameter FROM CURRENT`` case in the ``VariableSetStmt``
printer (backport of `PR #168`__)
__ https://github.com/lelit/pglast/pull/168
6.13 (2024-12-17)
~~~~~~~~~~~~~~~~~
- Better fix to the ``x AT TIME ZONE foo`` glitch, v6.12 solution was incomplete
6.12 (2024-12-16)
~~~~~~~~~~~~~~~~~
- Properly wrap ``x AT TIME ZONE foo`` in parens when it is the argument of a ``DEFAULT``
constraint
6.11 (2024-11-26)
~~~~~~~~~~~~~~~~~
- Remove spurious trailing space in the ``ConstrTypePrinter.CONSTR_IDENTITY`` and the
``Constraint`` printers (issue `#165`__)
__ https://github.com/lelit/pglast/issues/165
6.10 (2024-11-01)
~~~~~~~~~~~~~~~~~
- Upgrade libpg_query to `16-5.2.0`__
__ https://github.com/pganalyze/libpg_query/releases/tag/16-5.2.0
6.9 (2024-10-31)
~~~~~~~~~~~~~~~~
- Fix regression introduced by recent modification to the ``CommonTableExpr`` printer that
impacted on the ``RawStream`` renderer (issue `#163`__)
__ https://github.com/lelit/pglast/issues/163
- Expose the ``RawStream`` renderer in the CLI tool with a new ``--normalize`` option
6.8 (2024-10-29)
~~~~~~~~~~~~~~~~
- Upgrade libpg_query to not-yet-publicly-released commit__, to solve an issue related to
`plpgsql` (issue `#156`__)
__ https://github.com/pganalyze/libpg_query/commit/06670290ad39e61805ecacbc6267df61f6ae3d91
__ https://github.com/lelit/pglast/issues/156
6.7 (2024-10-28)
~~~~~~~~~~~~~~~~
- Generate wheels on PyPI using Python 3.13.0 final release, thanks to cibuildwheel `2.21.3`__
__ https://cibuildwheel.pypa.io/en/stable/changelog/#v2213
- Improve ``CommonTableExpr`` printer, reducing horizontal space waste
6.6 (2024-09-30)
~~~~~~~~~~~~~~~~
- Make recently introduced doctest related to issue #88 work on different Python versions
6.5 (2024-09-29)
~~~~~~~~~~~~~~~~
- Fix glitch when using the ``--preserve-comments`` flag (issue `#159`__)
__ https://github.com/lelit/pglast/issues/159
- Finally add a note to ``parse_plpgsql()`` documentation mentioning how it differs from
``parse_sql()`` (issue `#88`__)
__ https://github.com/lelit/pglast/issues/88
6.4 (2024-09-28)
~~~~~~~~~~~~~~~~
- Fix issue with deserialization of deeply nested ASTs (issue `#153`__)
__ https://github.com/lelit/pglast/issues/153
- Upgrade libpg_query to not-yet-publicly-released commit__, to solve an issue related to
`plpgsql` (issue `#154`__)
__ https://github.com/pganalyze/libpg_query/commit/680f5ee67c6fdae497c8d1edfadd02b9b8eac74f
__ https://github.com/lelit/pglast/issues/154
6.3 (2024-08-06)
~~~~~~~~~~~~~~~~
- Fix ``SEQUENCE NAME`` in ``create_seq_stmt_def_elem`` (`PR #151`__), thanks to orages
__ https://github.com/lelit/pglast/pull/151
- Generate wheels on PyPI using Python 3.13.0rc1 release, thanks to cibuildwheel `2.20.0`__
__ https://cibuildwheel.pypa.io/en/stable/changelog/#v2200
- Use `Cython 3.0.11`__
__ https://github.com/cython/cython/blob/master/CHANGES.rst#3011-2024-08-05
6.2 (2024-02-01)
~~~~~~~~~~~~~~~~
- Almost no-op release to fix issue `144`__, producing correct wheels for macOS arm64
__ https://github.com/lelit/pglast/issues/144
6.1 (2024-01-22)
~~~~~~~~~~~~~~~~
- Inherit fix for issue `143`__ from `version 5`_
__ https://github.com/lelit/pglast/issues/143
6.0 (2024-01-22)
~~~~~~~~~~~~~~~~
- Produce wheels for macOS arm64
6.0.dev2 (2024-01-21)
~~~~~~~~~~~~~~~~~~~~~
- Enable compilation on Windows and produce related 32bit and 64bit wheels (issue `#7`__)
__ https://github.com/lelit/pglast/issues/7
6.0.dev1 (2024-01-11)
~~~~~~~~~~~~~~~~~~~~~
- Re-enable Linux 32bit wheels, thanks to libpg_query to `16-5.1.0`__
__ https://github.com/pganalyze/libpg_query/releases/tag/16-5.1.0
6.0.dev0 (2023-12-29)
~~~~~~~~~~~~~~~~~~~~~
- No visible changes with respect to v5, apart from the support for new/revised syntaxes of
`PostgreSQL 16`__
__ https://www.postgresql.org/docs/16/release-16.html
- Do not build binary wheels for Python 3.8
- Skip compilation on Linux 32bit (see `this comment`__ for details)
__ https://github.com/pganalyze/libpg_query/pull/225#issuecomment-1864145089
~~~~~~~~~~~~~~~~~~~~
**Breaking changes**
~~~~~~~~~~~~~~~~~~~~
- Target PostgreSQL 16, thanks to libpg_query `16-5.0.0`__
__ https://github.com/pganalyze/libpg_query/releases/tag/16-5.0.0
Version 5
#########
5.9 (2024-01-22)
~~~~~~~~~~~~~~~~
- Fix issue `143`__, affecting ``AlterOwnerStmt`` and ``RenameStmt`` printers
__ https://github.com/lelit/pglast/issues/143
5.8 (2024-01-11)
~~~~~~~~~~~~~~~~
- Fix issue `#142`__, a glitch that affected 32-bit systems
__ https://github.com/lelit/pglast/issues/142
5.7 (2023-12-23)
~~~~~~~~~~~~~~~~
- Use `Cython 3.0.7`__
__ https://github.com/cython/cython/blob/master/CHANGES.rst#307-2023-12-19
- Update libpg_query to `15-4.2.4`__
__ https://github.com/pganalyze/libpg_query/releases/tag/15-4.2.4
5.6 (2023-12-07)
~~~~~~~~~~~~~~~~
- Fix issue `#138`__, a defect that hindered the creation of AST nodes that act as *markers*,
(currently ``A_Star`` and ``CheckPointStmt``), that do not carry any other information
__ https://github.com/lelit/pglast/issues/138
- Use `Cython 3.0.6`__
__ https://github.com/cython/cython/blob/master/CHANGES.rst#306-2023-11-26
- Handle the ``ENABLE TRIGGER ALL`` in ``AlterTableCmd``
- Fix issue `#136`__, a regression introduced by “Avoid overly abundancy of parentheses in
expressions”
__ https://github.com/lelit/pglast/issues/136
5.5 (2023-10-07)
~~~~~~~~~~~~~~~~
- Use `Cython 3.0.3`__
__ https://github.com/cython/cython/blob/master/CHANGES.rst#303-2023-10-05
- Produce wheels using final Python 3.12 release, thanks to ``cibuildwheel`` `2.16.2`__
__ https://cibuildwheel.readthedocs.io/en/stable/changelog/#v2162
5.4 (2023-08-24)
~~~~~~~~~~~~~~~~
- Improve documentation, adding ``parser.Displacements``, ``parser.scan`` and ``parser.split``
examples (`issue #128`__)
__ https://github.com/lelit/pglast/issues/128
- Fix issues `#129`__ and `#130`__ (merged from `version 4.4`__)
__ https://github.com/lelit/pglast/issues/129
__ https://github.com/lelit/pglast/issues/130
__ `4.4 (2023-08-24)`_
5.3 (2023-08-05)
~~~~~~~~~~~~~~~~
- Update libpg_query to `15-4.2.3`__
__ https://github.com/pganalyze/libpg_query/releases/tag/15-4.2.3
5.2 (2023-05-20)
~~~~~~~~~~~~~~~~
- Update libpg_query to `15-4.2.1`__
__ https://github.com/pganalyze/libpg_query/releases/tag/15-4.2.1
5.1 (2023-02-28)
~~~~~~~~~~~~~~~~
- Merge `version 4.2`__ changes
__ `4.2 (2023-02-27)`_
5.0 (2023-02-19)
~~~~~~~~~~~~~~~~
- No changes
5.0.dev1 (2023-02-11)
~~~~~~~~~~~~~~~~~~~~~
- Update libpg_query to `15-4.2.0`__
__ https://github.com/pganalyze/libpg_query/releases/tag/15-4.2.0
~~~~~~~~~~~~~~~~~~~~
**Breaking changes**
~~~~~~~~~~~~~~~~~~~~
- Change the type of the ``ast.Float`` value from ``Decimal`` to ``str``
Using a ``Decimal`` implies potential differences in the representation of floating numbers,
and already caused issues (`#91`__ and `#100`__) in the past, making it impossible to render,
say, ``SELECT 0.0e1``, due to the fact that ``Decimal('0.0e1')`` resolves to
``Decimal('0')``.
__ https://github.com/lelit/pglast/issues/91
__ https://github.com/lelit/pglast/issues/100
5.0.dev0 (2022-12-19)
~~~~~~~~~~~~~~~~~~~~~
- No visible changes with respect to v4, apart from the support for new/revised syntaxes of
`PostgreSQL 15`__
__ https://www.postgresql.org/docs/15/release-15.html
~~~~~~~~~~~~~~~~~~~~
**Breaking changes**
~~~~~~~~~~~~~~~~~~~~
- Target PostgreSQL 15, thanks to libpg_query `15-4.0.0`__
__ https://github.com/pganalyze/libpg_query/releases/tag/15-4.0.0
Version 4
#########
4.5 (unreleased)
~~~~~~~~~~~~~~~~
- Use `Cython 3.0.2`__
__ https://github.com/cython/cython/blob/master/CHANGES.rst#302-2023-08-27
4.4 (2023-08-24)
~~~~~~~~~~~~~~~~
- Fix issues `#129`__ and `#130`__ (merged from `version 3.18`__)
__ https://github.com/lelit/pglast/issues/129
__ https://github.com/lelit/pglast/issues/130
__ `3.18 (2023-08-24)`_
4.3 (2023-04-27)
~~~~~~~~~~~~~~~~
- Fix `serialization issue`__ when column's ``DEFAULT`` value is an expression
__ https://github.com/pganalyze/libpg_query/issues/188
4.2 (2023-02-27)
~~~~~~~~~~~~~~~~
- Handle special syntax required by ``SET TIME ZONE INTERVAL '-08:00' hour to minute``
- Fix mistype mapping of raw C "long" and "double" attributes, that were decorated with the
wrong Python type
4.1 (2022-12-19)
~~~~~~~~~~~~~~~~
- Fix serialization glitches introduced by “Avoid overly abundancy of parentheses in
expressions” (to be precise, by this__ commit)
__ https://github.com/lelit/pglast/commit/6cfe75eea80f9c9bec4ba467e7ec1ec0796020de
4.0 (2022-12-12)
~~~~~~~~~~~~~~~~
- Update libpg_query to final `14-3.0.0`__
__ https://github.com/pganalyze/libpg_query/releases/tag/14-3.0.0
4.0.dev0 (2022-11-24)
~~~~~~~~~~~~~~~~~~~~~
- Update libpg_query to `14-3.0.0`__
__ https://github.com/pganalyze/libpg_query/blob/14-latest/CHANGELOG.md#14-300---2022-11-17
- Avoid overly abundancy of parentheses in expressions
- Prefer ``SELECT a FROM b LIMIT ALL`` to ``... LIMIT NONE``
~~~~~~~~~~~~~~~~~~~~
**Breaking changes**
~~~~~~~~~~~~~~~~~~~~
- Target PostgreSQL 14
- The wrapper classes used in previous versions, implemented in ``pglast.node``, are gone: now
everything works on top of the ``AST`` classes (`issue #80`__)
__ https://github.com/lelit/pglast/issues/80
- The ``Ancestor`` class is not iterable anymore: it was an internal implementation facility,
now moved to a ``_iter_members()`` method
Version 3
#########
3.18 (2023-08-24)
~~~~~~~~~~~~~~~~~
- Fix ``BooleanTest`` printer, enclosing expression within parens in more cases (`issue
#129`__)
__ https://github.com/lelit/pglast/issues/129
- Fix ``Constraint`` printer, avoiding repetition of "DEFERRABLE INITIALLY DEFERRED" on some
kind of constraints (`issue #130`__)
__ https://github.com/lelit/pglast/issues/130
3.17 (2022-11-04)
~~~~~~~~~~~~~~~~~
- Fix ``AlterSubscriptionStmt`` printer, handling "SET PUBLICATION" without options
3.16 (2022-11-03)
~~~~~~~~~~~~~~~~~
- Update libpg_query to `13-2.2.0`__
__ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-220---2022-11-02
3.15 (2022-10-17)
~~~~~~~~~~~~~~~~~
- Produce Python 3.11 wheels (`PR #108`__), thanks to ``cibuildwheel`` 2.11.1__ and to Bastien
Gandouet
__ https://github.com/lelit/pglast/pull/108
__ https://cibuildwheel.readthedocs.io/en/stable/changelog/#v2111
3.14 (2022-08-08)
~~~~~~~~~~~~~~~~~
- Harden the way ``Visitor`` handle modifications to the AST (`issue #107`__)
__ https://github.com/lelit/pglast/issues/107
3.13 (2022-06-29)
~~~~~~~~~~~~~~~~~
- Update libpg_query to `13-2.1.2`__
__ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-212---2022-06-28
3.12 (2022-06-19)
~~~~~~~~~~~~~~~~~
- Rewrite the implementation of the ``referenced_relations()`` function, that was flawed with
regard to CTEs handling (`issue #106`__), thanks to Michal Charemza for providing his own
version
__ https://github.com/lelit/pglast/issues/106
- Improve ``WithClause`` printer indentation
- Fix minor whitespace related issues in a few printer functions
3.11 (2022-05-29)
~~~~~~~~~~~~~~~~~
- Fix the ``Visitor`` class, it was ignoring nodes nested in sub-lists
- Reduce the size of the generated parser by factoring out common code into helper functions
3.10 (2022-05-11)
~~~~~~~~~~~~~~~~~
- Update libpg_query to `13-2.1.1`__ (`PR #102`__), thanks to James Guthrie
__ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-211---2022-05-03
__ https://github.com/lelit/pglast/pull/102
- Produce `musllinux`__ wheels, thanks to ``cibuildwheel`` `2.5.0`__ (:PEP:`656` was actually
introduced in `2.2.0`__)
__ https://peps.python.org/pep-0656/
__ https://cibuildwheel.readthedocs.io/en/stable/changelog/#v250
__ https://cibuildwheel.readthedocs.io/en/stable/changelog/#v220
3.9 (2022-02-24)
~~~~~~~~~~~~~~~~
- Fix bug handling node containing a ``location`` field, e.g. ``CreateTableSpaceStmt`` (`issue
#98`__)
__ https://github.com/lelit/pglast/issues/98
- Properly handle dereferenced array expression (`issue #99`__)
__ https://github.com/lelit/pglast/issues/99
- Avoid improper "floatification" of literal integers (`issue #100`__)
__ https://github.com/lelit/pglast/issues/100
3.8 (2021-12-28)
~~~~~~~~~~~~~~~~
- Fix glitch in the AST extractor tool (`issue #97`__)
__ https://github.com/lelit/pglast/issues/97
- Add Linux AArch64 wheel build support (`PR #95`__), thanks to odidev
__ https://github.com/lelit/pglast/pull/95
- Fix type mismatch when using ``--remove-pg_catalog-from-functions`` (`PR #93`__), thanks
to Boris Zentner
__ https://github.com/lelit/pglast/pull/93/
3.7 (2021-10-13)
~~~~~~~~~~~~~~~~
- Update libpg_query to `13-2.1.0`__
__ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-210---2021-10-12_
3.6 (2021-10-09)
~~~~~~~~~~~~~~~~
- Use latest libpg_query, to fix an error parsing ``PLpgSQL`` statements (`issue #88`__)
__ https://github.com/lelit/pglast/issues/88
3.5 (2021-09-26)
~~~~~~~~~~~~~~~~
- Forward the ``special_functions`` option to substream, when concatenating items
(`issue #89`__)
__ https://github.com/lelit/pglast/issues/89
- Fix representation of floating point numbers without decimal digits (`issue #91`__)
__ https://github.com/lelit/pglast/issues/91
- Produce Python 3.10 wheels, thanks to ``cibuildwheel`` 2.1.2
- Update libpg_query to `13-2.0.7`__
__ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-207---2021-07-16_
- New option ``--remove-pg_catalog-from-functions`` on the command line tool (`PR #90`__), thanks
to Boris Zentner
__ https://github.com/lelit/pglast/pull/90/
- Implement more *special functions* (`PR #92`__), thanks to Boris Zentner
__ https://github.com/lelit/pglast/pull/92/
3.4 (2021-08-21)
~~~~~~~~~~~~~~~~
- Fix another packaging issue, that prevented recompilation from the sdist ``.tar.gz`` (`issue
#86`__), thanks to Christopher Brichford
__ https://github.com/lelit/pglast/issues/82
3.3 (2021-07-04)
~~~~~~~~~~~~~~~~
- Update libpg_query to `13-2.0.6`__
__ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-206---2021-06-29_
3.2 (2021-06-25)
~~~~~~~~~~~~~~~~
- Effectively include libpg_query's vendored sources (`issue #82`__)
__ https://github.com/lelit/pglast/issues/82
3.1 (2021-06-25)
~~~~~~~~~~~~~~~~
- Fix packaging glitch (`issue #82`__)
__ https://github.com/lelit/pglast/issues/82
- Build wheels also for macOS
- Update libpg_query to `13-2.0.5`__
__ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-205---2021-06-24_
3.0 (2021-06-04)
~~~~~~~~~~~~~~~~
- Fix glitch in the ``RawStream``, avoiding spurious space after an open parenthesis
- Improve the ``Visitor`` class, to make it easier altering the original tree
- Properly handle nested lists in the serialization of AST Node
3.0.dev2 (2021-05-22)
~~~~~~~~~~~~~~~~~~~~~
- Fix bug in ``CreateStmt`` printer (`issue #79`__)
__ https://github.com/lelit/pglast/issues/79
- Make it possible to pass also concrete ``ast.Node``\ s to ``RawStream```
~~~~~~~~~~~~~~~~~~~~
**Breaking changes**
~~~~~~~~~~~~~~~~~~~~
- To reduce confusion, the ``printer`` module has been removed: print-specific stuff is now
directly exposed by the ``printers`` subpackage while serialization classes are now in the
new ``stream`` module
- The default value for the ``safety_belt`` option of the ``printify()`` function is now
``False``
3.0.dev1 (2021-05-16)
~~~~~~~~~~~~~~~~~~~~~
- Fix ``AT_SetIdentity``, ``AT_EnableReplicaTrig`` and ``AlterSubscriptionStmt`` printers
- Improve ``AlterTSConfigType`` and ``IntoClause`` printers
- New generic "visitor pattern" (`issue #51`__) exemplified by a new
``referenced_relations()`` function (`issue #66`__)
__ https://github.com/lelit/pglast/issues/51
__ https://github.com/lelit/pglast/issues/66
- Refine printing of SQL comments
- Implement ``AlterExtensionStmt`` printer
3.0.dev0 (2021-05-03)
~~~~~~~~~~~~~~~~~~~~~
- Expose the new ``pg_query_scan()`` function as ``parser.scan()``
- Expose the ``pg_query_parse()`` function as ``parser.parse_sql_json()``
- Expose the new ``pg_query_parse_protobuf()`` function as ``parser.parse_sql_protobuf()``
- Expose the new ``pg_query_deparse_protobuf()`` function as ``parser.deparse_protobuf()``
- Honor the ``catalogname`` of a ``RangeVar`` if present (`issue #71`__)
__ https://github.com/lelit/pglast/issues/71
- Cover almost all ``SQL`` statements, testing against the whole ``PostgreSQL`` `regression
suite`__ (`issue #68`__, `PR #72`__ and `PR #77`__), thanks to Ronan Dunklau and Hong Cheng
__ https://github.com/pganalyze/libpg_query/tree/13-latest/test/sql/postgres_regress_
__ https://github.com/lelit/pglast/issues/68
__ https://github.com/lelit/pglast/pull/72
__ https://github.com/lelit/pglast/pull/77
- New rudimentary support for the `preserve comments` feature (`issue #23`__)
__ https://github.com/lelit/pglast/issues/23
~~~~~~~~~~~~~~~~~~~~
**Breaking changes**
~~~~~~~~~~~~~~~~~~~~
- Target PostgreSQL 13
- The ``pglast.parser`` module exposes all ``libpg_query`` entry points, even the new
``pg_query_deparse_protobuf()`` function that is basically equivalent to
``RawStream``\ -based printer
- The ``split()`` function is now based on the lower level ``pg_query_split_with_xxx()``
functions
- The ``parse_sql()`` function returns native Python objects, not a ``JSON`` string as before:
all PG *nodes* are now represented by subclasses of ``pglast.ast.Node``, without exception,
even ``Expr`` and ``Value`` are there. The latter impacts on ``pglast.node.Scalar``: for
example it now may contains a ``ast.Integer`` instance instead of a Python ``int``
- The ``pgpp --parse-tree`` output is a `pprint`__ represention of the ``AST``, not a ``JSON``
string as before
__ https://docs.python.org/3.9/library/pprint.html#pprint.pprint
- The ``ParseError`` exception does not expose the ``location`` as an instance member anymore,
although its still there, as the second argument (ie ``.args[1]``); furthermore, its value
now corresponds to the index in the original Unicode string, instead of the offset in the
``UTF-8`` representation passed to the underlying C function
Version 2
#########
2.0.dev3 (2021-02-20)
~~~~~~~~~~~~~~~~~~~~~
- Handle ``INCLUDE`` clause in ``IndexStmt`` (`PR #67`__), thanks to Ronan Dunklau
__ https://github.com/lelit/pglast/pull/67
2.0.dev2 (2020-10-24)
~~~~~~~~~~~~~~~~~~~~~
- Merge new ``fingerprint`` functionality from ``v1`` (i.e. ``master``) branch
2.0.dev1 (2020-09-26)
~~~~~~~~~~~~~~~~~~~~~
- Require Python 3.6 or greater
- Handle ``ALTER TYPE .. RENAME VALUE`` in ``AlterEnumStmt`` (`PR #52`__), thanks to Ronan
Dunklau
__ https://github.com/lelit/pglast/pull/52
- Add support for Create / Alter / Drop PROCEDURE (`PR #48`__), thanks to Ronan Dunklau
__ https://github.com/lelit/pglast/pull/48
- Use Ronan's fork__ of libpg_query, targeting PostgreSQL 12.1 (`PR #36`__)
__ https://github.com/rdunklau/libpg_query
__ https://github.com/lelit/pglast/pull/36
- Change get_postgresql_version() to return a ``(major, minor)`` tuple (`issue #38`__)
__ https://github.com/lelit/pglast/issues/38
- Handle ``ALTER TABLE ... ALTER COLUMN ... SET STORAGE ...``
- Handle PG12 materialized CTEs (`issue #57`)
- Support column numbers in ``ALTER INDEX`` (`PR #58`__), thanks to Ronan Dunklau
__ https://github.com/lelit/pglast/pull/58
- Handle ``SET LOGGED`` and ``SET UNLOGGED`` in ``ALTER TABLE`` (`PR #59`__), thanks to Ronan
Dunklau
__ https://github.com/lelit/pglast/pull/59
- Handle ``ALTER TYPE ... RENAME`` (`PR #62`__), , thanks to Ronan
Dunklau
__ https://github.com/lelit/pglast/pull/62
Version 1
#########
1.18 (2021-06-01)
~~~~~~~~~~~~~~~~~
- Fix exclusion constraint printer (`issue #81`__)
__ https://github.com/lelit/pglast/issues/81
1.17 (2021-02-20)
~~~~~~~~~~~~~~~~~
- Fix the generic case in the ``RenameStmt`` printer
1.16 (2021-02-20)
~~~~~~~~~~~~~~~~~
- Promote to the *stable* state
- Move the job of building and uploading binary wheels from TravisCI to GitHub Actions
1.15 (2021-02-19)
~~~~~~~~~~~~~~~~~
- Fix ``IF EXISTS`` variant of ``RenameStmt`` printer (`PR #70`__), thanks to Jonathan
Mortensen
__ https://github.com/lelit/pglast/pull/70
- Update libpg_query to 10-1.0.5
1.14 (2020-10-24)
~~~~~~~~~~~~~~~~~
- Produce Python 3.9 wheels, thanks to ``cibuildwheel`` 1.6.3
- Expose the ``libpg_query``'s `fingerprint`__ functionality (`PR #64`__), thanks to Yiming
Wang
__ https://github.com/lfittl/libpg_query/wiki/Fingerprinting
__ https://github.com/lelit/pglast/pull/64
1.13 (2020-09-26)
~~~~~~~~~~~~~~~~~
- Handle ``SELECT FROM foo``
1.12 (2020-06-08)
~~~~~~~~~~~~~~~~~
- Double quote column names in the ``TYPE_FUNC_NAME_KEYWORDS`` set (`issue #55`__)
__ https://github.com/lelit/pglast/issues/55
- Possibly wrap ``SELECT`` in ``UNION``/``INTERSECT`` between parens, when needed
(`issue #55`__)
__ https://github.com/lelit/pglast/issues/55
1.11 (2020-05-08)
~~~~~~~~~~~~~~~~~
- Fix ``A_Expr`` printer, when ``lexpr`` is missing (`PR #54`__), thanks to Aiham
__ https://github.com/lelit/pglast/pull/54
- Support ``DISABLE ROW LEVEL SECURITY`` in ``AlterTableCmd`` (`PR #49`__), thanks to Ronan
Dunklau
__ https://github.com/lelit/pglast/pull/49
- Implement ``CreateOpClassStmt`` printer (`PR #47`__), thanks to Ronan Dunklau
__ https://github.com/lelit/pglast/pull/47
1.10 (2020-01-25)
~~~~~~~~~~~~~~~~~
- Fix collation name printer (`PR #44`__), thanks to Ronan Dunklau
__ https://github.com/lelit/pglast/pull/44
- Implement ``CreatePLangStmt`` printer (`PR #42`__), thanks to Bennie Swart
__ https://github.com/lelit/pglast/pull/42
- Fix privileges printer (`PR #41`__), thanks to Bennie Swart
__ https://github.com/lelit/pglast/pull/41
- Handle ``TRUNCATE`` event in ``CreateTrigStmt`` printer (`PR #40`__), thanks to Bennie Swart
__ https://github.com/lelit/pglast/pull/40
- Fix function body dollar quoting (`PR #39`__), thanks to Bennie Swart
__ https://github.com/lelit/pglast/pull/39
1.9 (2019-12-20)
~~~~~~~~~~~~~~~~
- Prettier ``INSERT`` representation
1.8 (2019-12-07)
~~~~~~~~~~~~~~~~
- Prettier ``CASE`` representation
- New option to emit a semicolon after the last statement (`issue #24`__)
__ https://github.com/lelit/pglast/issues/24
1.7 (2019-12-01)
~~~~~~~~~~~~~~~~
- Implement ``NotifyStmt`` printer
- Implement ``RuleStmt`` printer, thanks to Gavin M. Roy for his `PR #28`__
__ https://github.com/lelit/pglast/pull/28
- Fix ``RenameStmt``, properly handling object name
- Produce Python 3.8 wheels, thanks to `cibuildwheel`__ 1.0.0
__ https://github.com/joerick/cibuildwheel
- Support ``ALTER TABLE RENAME CONSTRAINT`` (`PR #35`__), thanks to Ronan Dunklau
__ https://github.com/lelit/pglast/pull/35
1.6 (2019-09-04)
~~~~~~~~~~~~~~~~
- Fix issue with boolean expressions precedence (`issue #29`__)
__ https://github.com/lelit/pglast/issues/29
- Implement ``BitString`` printer
- Support ``LEAKPROOF`` option (`PR #31`__), thanks to Ronan Dunklau
__ https://github.com/lelit/pglast/pull/31
- Support ``DEFERRABLE INITIALLY DEFERRED`` option (`PR #32`__), thanks to Ronan Dunklau
__ https://github.com/lelit/pglast/pull/32
1.5 (2019-06-04)
~~~~~~~~~~~~~~~~
- Fix issue with ``RETURNS SETOF`` functions, a more general solution than the one proposed by
Ronan Dunklau (`PR #22`__)
__ https://github.com/lelit/pglast/pull/22
- Allow more than one empty line between statements (`PR #26`__), thanks to apnewberry
__ https://github.com/lelit/pglast/pull/26
1.4 (2019-04-06)
~~~~~~~~~~~~~~~~
- Fix wrap of trigger's WHEN expression (`issue #18`__)
__ https://github.com/lelit/pglast/issues/18
- Support for variadic functions (`PR #19`__), thanks to Ronan Dunklau
__ https://github.com/lelit/pglast/pull/19
- Support ORDER / LIMIT / OFFSET for set operations (`PR #20`__), thanks to Ronan Dunklau
__ https://github.com/lelit/pglast/pull/20
- Implement ``ConstraintsSetStmt`` and improve ``VariableSetStmt`` printers
1.3 (2019-03-28)
~~~~~~~~~~~~~~~~
- Support ``CROSS JOIN`` and timezone modifiers on time and timestamp datatypes (`PR #15`__),
thanks to Ronan Dunklau
__ https://github.com/lelit/pglast/pull/15
- Many new printers and several enhancements (`PR #14`__), thanks to Ronan Dunklau
__ https://github.com/lelit/pglast/pull/14
- Expose the package version as pglast.__version__ (`issue #12`__)
__ https://github.com/lelit/pglast/issues/12
1.2 (2019-02-13)
~~~~~~~~~~~~~~~~
- Implement new `split()` function (see `PR #10`__)
__ https://github.com/lelit/pglast/pull/10
- Implement ``BooleanTest`` printer (`issue #11`__)
__ https://github.com/lelit/pglast/issues/11
1.1 (2018-07-20)
~~~~~~~~~~~~~~~~
- No visible changes, but now PyPI carries binary wheels for Python 3.7.
1.0 (2018-06-16)
~~~~~~~~~~~~~~~~
.. important:: The name of the package has been changed from ``pg_query`` to ``pglast``, to
satisfy the request made by the author of ``libpg_query`` in `issue #9`__.
This affects both the main repository on GitHub, that from now on is
``https://github.com/lelit/pglast``, and the ReadTheDocs project that hosts the
documentation, ``http://pglast.readthedocs.io/en/latest/``.
I'm sorry for any inconvenience this may cause.
__ https://github.com/lelit/pglast/issues/9
0.28 (2018-06-06)
~~~~~~~~~~~~~~~~~
- Update libpg_query to 10-1.0.2
- Support the '?'-style parameter placeholder variant allowed by libpg_query (details__)
__ https://github.com/lfittl/libpg_query/issues/45
0.27 (2018-04-15)
~~~~~~~~~~~~~~~~~
- Prettier JOINs representation, aligning them with the starting relation
0.26 (2018-04-03)
~~~~~~~~~~~~~~~~~
- Fix cosmetic issue with ANY() and ALL()
0.25 (2018-03-31)
~~~~~~~~~~~~~~~~~
- Fix issue in the safety belt check performed by ``pgpp`` (`issue #4`__)
__ https://github.com/lelit/pglast/issues/4
0.24 (2018-03-02)
~~~~~~~~~~~~~~~~~
- Implement ``Null`` printer
0.23 (2017-12-28)
~~~~~~~~~~~~~~~~~
- Implement some other DDL statements printers
- New alternative style to print *comma-separated-values* lists, activated by a new
``--comma-at-eoln`` option on ``pgpp``
0.22 (2017-12-03)
~~~~~~~~~~~~~~~~~
- Implement ``TransactionStmt`` and almost all ``DROP xxx`` printers
0.21 (2017-11-22)
~~~~~~~~~~~~~~~~~
- Implement ``NamedArgExpr`` printer
- New alternative printers for a set of *special functions*, activated by a new
``--special-functions`` option on ``pgpp`` (`issue #2`__)
__ https://github.com/lelit/pglast/issues/2
0.20 (2017-11-21)
~~~~~~~~~~~~~~~~~
- Handle special de-reference (``A_Indirection``) cases
0.19 (2017-11-16)
~~~~~~~~~~~~~~~~~
- Fix serialization of column labels containing double quotes
- Fix corner issues surfaced implementing some more DDL statement printers
0.18 (2017-11-14)
~~~~~~~~~~~~~~~~~
- Fix endless loop due to sloppy conversion of command line option
- Install the command line tool as ``pgpp``
0.17 (2017-11-12)
~~~~~~~~~~~~~~~~~
- Rename printers.sql to printers.dml (**backward incompatibility**)
- List printer functions in the documentation, referencing the definition of related node type
- Fix inconsistent spacing in JOIN condition inside a nested expression
- Fix representation of unbound arrays
- Fix representation of ``interval`` data type
- Initial support for DDL statements
- Fix representation of string literals containing single quotes
0.16 (2017-10-31)
~~~~~~~~~~~~~~~~~
- Update libpg_query to 10-1.0.0
0.15 (2017-10-12)
~~~~~~~~~~~~~~~~~
- Fix indentation of boolean expressions in SELECT's targets (`issue #3`__)
__ https://github.com/lelit/pglast/issues/3
0.14 (2017-10-09)
~~~~~~~~~~~~~~~~~
- Update to latest libpg_query's 10-latest branch, targeting PostgreSQL 10.0 final
0.13 (2017-09-17)
~~~~~~~~~~~~~~~~~
- Fix representation of subselects requiring surrounding parens
0.12 (2017-08-22)
~~~~~~~~~~~~~~~~~
- New option ``--version`` on the command line tool
- Better enums documentation
- Release the GIL while calling libpg_query functions
0.11 (2017-08-11)
~~~~~~~~~~~~~~~~~
- Nicer indentation for JOINs, making OUTER JOINs stand out
- Minor tweaks to lists rendering, with less spurious whitespaces
- New option ``--no-location`` on the command line tool
0.10 (2017-08-11)
~~~~~~~~~~~~~~~~~
- Support Python 3.4 and Python 3.5 as well as Python 3.6
0.9 (2017-08-10)
~~~~~~~~~~~~~~~~
- Fix spacing before the $ character
- Handle type modifiers
- New option ``--plpgsql`` on the command line tool, just for fun
0.8 (2017-08-10)
~~~~~~~~~~~~~~~~
- Add enums subpackages to the documentation with references to their related headers
- New ``compact_lists_margin`` option to produce a more compact representation when possible
(see `issue #1`__)
__ https://github.com/lelit/pglast/issues/1
0.7 (2017-08-10)
~~~~~~~~~~~~~~~~
- Fix sdist including the Sphinx documentation
0.6 (2017-08-10)
~~~~~~~~~~~~~~~~
- New option ``--parse-tree`` on the command line tool to show just the parse tree
- Sphinx documentation, available online
0.5 (2017-08-09)
~~~~~~~~~~~~~~~~
- Handle some more cases when a name must be double-quoted
- Complete the serialization of the WindowDef node, handling its frame options
0.4 (2017-08-09)
~~~~~~~~~~~~~~~~
- Expose the actual PostgreSQL version the underlying libpg_query libray is built on thru a new
``get_postgresql_version()`` function
- New option `safety_belt` for the ``prettify()`` function, to protect the innocents
- Handle serialization of ``CoalesceExpr`` and ``MinMaxExpr``
0.3 (2017-08-07)
~~~~~~~~~~~~~~~~
- Handle serialization of ``ParamRef`` nodes
- Expose a ``prettify()`` helper function
0.2 (2017-08-07)
~~~~~~~~~~~~~~~~
- Test coverage at 99%
- First attempt at automatic wheel upload to PyPI, let's see...
0.1 (2017-08-07)
~~~~~~~~~~~~~~~~
- First release ("Hi daddy!", as my soul would tag it)
Raw data
{
"_id": null,
"home_page": "https://github.com/lelit/pglast",
"name": "pglast",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "postgresql parser sql prettifier",
"author": "Lele Gaifax",
"author_email": "lele@metapensiero.it",
"download_url": "https://files.pythonhosted.org/packages/db/76/7caada7d15e36de2dd294b7f61848b0c802e81781e330e81cb5a0321f882/pglast-7.10.tar.gz",
"platform": null,
"description": ".. -*- coding: utf-8 -*-\n.. :Project: pglast \u2014 PostgreSQL Languages AST\n.. :Created: mer 02 ago 2017 14:49:24 CEST\n.. :Author: Lele Gaifax <lele@metapensiero.it>\n.. :License: GNU General Public License version 3 or later\n.. :Copyright: \u00a9 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Lele Gaifax\n..\n\n========\n pglast\n========\n\nPostgreSQL Languages AST and statements prettifier\n==================================================\n\n:Author: Lele Gaifax\n:Contact: lele@metapensiero.it\n:License: `GNU General Public License version 3 or later`__\n:Status: |build| |doc| |codecov|\n:Version: `7`__\n\n__ https://www.gnu.org/licenses/gpl.html\n__ https://pglast.readthedocs.io/en/v7/development.html#history\n\n.. |build| image:: https://github.com/lelit/pglast/actions/workflows/ci.yml/badge.svg?branch=v7\n :target: https://github.com/lelit/pglast/actions/workflows/ci.yml\n :alt: Build status\n.. |doc| image:: https://readthedocs.org/projects/pglast/badge/?version=v7\n :target: https://readthedocs.org/projects/pglast/builds/\n :alt: Documentation status\n.. |codecov| image:: https://codecov.io/gh/lelit/pglast/branch/v3/graph/badge.svg?token=A90D8tWnft\n :target: https://codecov.io/gh/lelit/pglast\n :alt: Test coverage status\n\nThis is a Python 3 module that exposes the *parse tree* of a PostgreSQL__ statement (extracted\nby the almost standard PG parser repackaged as a standalone static library by `libpg_query`__)\nas set of interconnected *nodes*, usually called an *abstract syntax tree*.\n\n__ https://www.postgresql.org/\n__ https://github.com/pganalyze/libpg_query\n\nSee a `more detailed introduction`__ in the documentation_.\n\n__ https://pglast.readthedocs.io/en/v7/introduction.html\n\n\nInstallation\n------------\n\nAs usual, the easiest way is with pip::\n\n $ pip install pglast\n\nAlternatively you can clone the repository::\n\n $ git clone https://github.com/lelit/pglast.git --recursive\n\nand install from there::\n\n $ pip install ./pglast\n\n\nDevelopment\n-----------\n\nThere is a set of *makefiles* implementing the most common operations, a ``make help`` will\nshow a brief table of contents. A comprehensive test suite, based on pytest__, covers__ nearly\n99% of the source lines.\n\n__ https://docs.pytest.org/en/latest/\n__ https://codecov.io/gh/lelit/pglast/branch/v7/\n\n\nDocumentation\n-------------\n\nLatest documentation is hosted by `Read the Docs`__ at https://pglast.readthedocs.io/en/v7\n\n__ https://readthedocs.org/\n\n\n.. -*- coding: utf-8 -*-\n\n.. _changes:\n\nChanges\n-------\n\nVersion 7\n#########\n\n7.10 (2025-10-26)\n~~~~~~~~~~~~~~~~~\n\n- Fix ``AlterTableCmd`` printer, to handle ``ALTER TABLE a ALTER b SET STATISTICS DEFAULT``\n\n- Use `Cython 3.1.6`__\n\n __ https://github.com/cython/cython/blob/master/CHANGES.rst#316-2025-10-23\n\n\n7.9 (2025-10-22)\n~~~~~~~~~~~~~~~~\n\n- Add an empty line between a ``SELECT foo UNION SELECT bar`` and its ``ORDER\n BY``/``LIMIT``/``OFFSET`` clause, to emphasize the fact that it applies to the whole\n statement, not to the \"right\" subquery.\n\n\n7.8 (2025-10-19)\n~~~~~~~~~~~~~~~~\n\n- Fix prettification of single keyword statements (`PR #173`__), thanks to Vlastimil Z\u00edma\n\n __ https://github.com/lelit/pglast/pull/173\n\n- Improve ``WithClause`` printer, when there is more than one *CTE*\n\n- Avoid spurious parenthesis around expression terms in some common cases like ``1 + 2 + 3 + 4``\n\n- Use macOS 14 to build arm 64 wheels and macOS 15 to build x86-64 wheels, given that GH is\n going to `drop macOS 13 runners`__ in a couple of months\n\n __ https://app.github.media/e/es?s=88570519&e=4325169&elq=c19630476abd40d0b7c6ff415b964f56\n\n- Generate Python 3.14 wheels, thanks to cibuildwheel `3.2.1`__\n\n __ https://cibuildwheel.pypa.io/en/stable/changelog/#v321\n\n\n7.7 (2025-04-04)\n~~~~~~~~~~~~~~~~\n\n- Nothing visible, fix GitHub Actions CI environment\n\n\n7.6 (2025-04-03)\n~~~~~~~~~~~~~~~~\n\n- Upgrade libpg_query to `17-6.1.0`__\n\n __ https://github.com/pganalyze/libpg_query/releases/tag/17-6.1.0\n\n\n7.5 (2025-03-17)\n~~~~~~~~~~~~~~~~\n\n- Merge with `Version 6`_\n\n\n7.4 (2025-03-17)\n~~~~~~~~~~~~~~~~\n\n- Merge with `Version 6`_\n\n\n7.3 (2025-02-09)\n~~~~~~~~~~~~~~~~\n\n- Handle the ``SET configuration_parameter FROM CURRENT`` case in the ``VariableSetStmt``\n printer (`PR #168`__), thanks to Bolaji Wahab\n\n __ https://github.com/lelit/pglast/pull/168\n\n\n7.2 (2024-12-21)\n~~~~~~~~~~~~~~~~\n\n- Merge with `Version 6`_\n\n- Handle ``timestamp AT LOCAL`` expression, new in PG17\n\n\n7.1 (2024-11-26)\n~~~~~~~~~~~~~~~~\n\n- Merge with `Version 6`_\n\n\n7.0 (2024-11-13)\n~~~~~~~~~~~~~~~~\n\n- No visible changes\n\n\n7.0.dev1 (2024-11-01)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Upgrade libpg_query to `17-6.0.0`__\n\n __ https://github.com/pganalyze/libpg_query/releases/tag/17-6.0.0\n\n\n7.0.dev0 (2024-10-31)\n~~~~~~~~~~~~~~~~~~~~~\n\n- No visible changes with respect to v6, apart from the support for new/revised syntaxes of\n `PostgreSQL 17`__\n\n __ https://www.postgresql.org/docs/17/release-17.html\n\n~~~~~~~~~~~~~~~~~~~~\n**Breaking changes**\n~~~~~~~~~~~~~~~~~~~~\n\n- Target PostgreSQL 17, thanks to libpg_query `17-latest-dev`__\n\n __ https://github.com/pganalyze/libpg_query/tree/17-latest-dev\n\n- Require Python >= 3.9\n\n\nVersion 6\n#########\n\n6.16 (2025-03-17)\n~~~~~~~~~~~~~~~~~\n\n- No visible changes, just a workaround to a strange CI Windows-only failure on a test\n introduced by v6.15\n\n\n6.15 (2025-03-17)\n~~~~~~~~~~~~~~~~~\n\n- Escape occurrences of C-style end markers in SQL-style comments, when changing comment style\n in the ``RawStream`` (issue `#170`__)\n\n __ https://github.com/lelit/pglast/issues/170\n\n\n6.14 (2025-02-09)\n~~~~~~~~~~~~~~~~~\n\n- Handle the ``SET configuration_parameter FROM CURRENT`` case in the ``VariableSetStmt``\n printer (backport of `PR #168`__)\n\n __ https://github.com/lelit/pglast/pull/168\n\n\n6.13 (2024-12-17)\n~~~~~~~~~~~~~~~~~\n\n- Better fix to the ``x AT TIME ZONE foo`` glitch, v6.12 solution was incomplete\n\n\n6.12 (2024-12-16)\n~~~~~~~~~~~~~~~~~\n\n- Properly wrap ``x AT TIME ZONE foo`` in parens when it is the argument of a ``DEFAULT``\n constraint\n\n\n6.11 (2024-11-26)\n~~~~~~~~~~~~~~~~~\n\n- Remove spurious trailing space in the ``ConstrTypePrinter.CONSTR_IDENTITY`` and the\n ``Constraint`` printers (issue `#165`__)\n\n __ https://github.com/lelit/pglast/issues/165\n\n\n6.10 (2024-11-01)\n~~~~~~~~~~~~~~~~~\n\n- Upgrade libpg_query to `16-5.2.0`__\n\n __ https://github.com/pganalyze/libpg_query/releases/tag/16-5.2.0\n\n\n6.9 (2024-10-31)\n~~~~~~~~~~~~~~~~\n\n- Fix regression introduced by recent modification to the ``CommonTableExpr`` printer that\n impacted on the ``RawStream`` renderer (issue `#163`__)\n\n __ https://github.com/lelit/pglast/issues/163\n\n- Expose the ``RawStream`` renderer in the CLI tool with a new ``--normalize`` option\n\n\n6.8 (2024-10-29)\n~~~~~~~~~~~~~~~~\n\n- Upgrade libpg_query to not-yet-publicly-released commit__, to solve an issue related to\n `plpgsql` (issue `#156`__)\n\n __ https://github.com/pganalyze/libpg_query/commit/06670290ad39e61805ecacbc6267df61f6ae3d91\n __ https://github.com/lelit/pglast/issues/156\n\n\n6.7 (2024-10-28)\n~~~~~~~~~~~~~~~~\n\n- Generate wheels on PyPI using Python 3.13.0 final release, thanks to cibuildwheel `2.21.3`__\n\n __ https://cibuildwheel.pypa.io/en/stable/changelog/#v2213\n\n- Improve ``CommonTableExpr`` printer, reducing horizontal space waste\n\n\n6.6 (2024-09-30)\n~~~~~~~~~~~~~~~~\n\n- Make recently introduced doctest related to issue #88 work on different Python versions\n\n\n6.5 (2024-09-29)\n~~~~~~~~~~~~~~~~\n\n- Fix glitch when using the ``--preserve-comments`` flag (issue `#159`__)\n\n __ https://github.com/lelit/pglast/issues/159\n\n- Finally add a note to ``parse_plpgsql()`` documentation mentioning how it differs from\n ``parse_sql()`` (issue `#88`__)\n\n __ https://github.com/lelit/pglast/issues/88\n\n\n6.4 (2024-09-28)\n~~~~~~~~~~~~~~~~\n\n- Fix issue with deserialization of deeply nested ASTs (issue `#153`__)\n\n __ https://github.com/lelit/pglast/issues/153\n\n- Upgrade libpg_query to not-yet-publicly-released commit__, to solve an issue related to\n `plpgsql` (issue `#154`__)\n\n __ https://github.com/pganalyze/libpg_query/commit/680f5ee67c6fdae497c8d1edfadd02b9b8eac74f\n __ https://github.com/lelit/pglast/issues/154\n\n\n6.3 (2024-08-06)\n~~~~~~~~~~~~~~~~\n\n- Fix ``SEQUENCE NAME`` in ``create_seq_stmt_def_elem`` (`PR #151`__), thanks to orages\n\n __ https://github.com/lelit/pglast/pull/151\n\n- Generate wheels on PyPI using Python 3.13.0rc1 release, thanks to cibuildwheel `2.20.0`__\n\n __ https://cibuildwheel.pypa.io/en/stable/changelog/#v2200\n\n- Use `Cython 3.0.11`__\n\n __ https://github.com/cython/cython/blob/master/CHANGES.rst#3011-2024-08-05\n\n\n6.2 (2024-02-01)\n~~~~~~~~~~~~~~~~\n\n- Almost no-op release to fix issue `144`__, producing correct wheels for macOS arm64\n\n __ https://github.com/lelit/pglast/issues/144\n\n6.1 (2024-01-22)\n~~~~~~~~~~~~~~~~\n\n- Inherit fix for issue `143`__ from `version 5`_\n\n __ https://github.com/lelit/pglast/issues/143\n\n\n6.0 (2024-01-22)\n~~~~~~~~~~~~~~~~\n\n- Produce wheels for macOS arm64\n\n\n6.0.dev2 (2024-01-21)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Enable compilation on Windows and produce related 32bit and 64bit wheels (issue `#7`__)\n\n __ https://github.com/lelit/pglast/issues/7\n\n\n6.0.dev1 (2024-01-11)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Re-enable Linux 32bit wheels, thanks to libpg_query to `16-5.1.0`__\n\n __ https://github.com/pganalyze/libpg_query/releases/tag/16-5.1.0\n\n\n6.0.dev0 (2023-12-29)\n~~~~~~~~~~~~~~~~~~~~~\n\n- No visible changes with respect to v5, apart from the support for new/revised syntaxes of\n `PostgreSQL 16`__\n\n __ https://www.postgresql.org/docs/16/release-16.html\n\n- Do not build binary wheels for Python 3.8\n\n- Skip compilation on Linux 32bit (see `this comment`__ for details)\n\n __ https://github.com/pganalyze/libpg_query/pull/225#issuecomment-1864145089\n\n~~~~~~~~~~~~~~~~~~~~\n**Breaking changes**\n~~~~~~~~~~~~~~~~~~~~\n\n- Target PostgreSQL 16, thanks to libpg_query `16-5.0.0`__\n\n __ https://github.com/pganalyze/libpg_query/releases/tag/16-5.0.0\n\n\nVersion 5\n#########\n\n5.9 (2024-01-22)\n~~~~~~~~~~~~~~~~\n\n- Fix issue `143`__, affecting ``AlterOwnerStmt`` and ``RenameStmt`` printers\n\n __ https://github.com/lelit/pglast/issues/143\n\n\n5.8 (2024-01-11)\n~~~~~~~~~~~~~~~~\n\n- Fix issue `#142`__, a glitch that affected 32-bit systems\n\n __ https://github.com/lelit/pglast/issues/142\n\n\n5.7 (2023-12-23)\n~~~~~~~~~~~~~~~~\n\n- Use `Cython 3.0.7`__\n\n __ https://github.com/cython/cython/blob/master/CHANGES.rst#307-2023-12-19\n\n- Update libpg_query to `15-4.2.4`__\n\n __ https://github.com/pganalyze/libpg_query/releases/tag/15-4.2.4\n\n\n5.6 (2023-12-07)\n~~~~~~~~~~~~~~~~\n\n- Fix issue `#138`__, a defect that hindered the creation of AST nodes that act as *markers*,\n (currently ``A_Star`` and ``CheckPointStmt``), that do not carry any other information\n\n __ https://github.com/lelit/pglast/issues/138\n\n- Use `Cython 3.0.6`__\n\n __ https://github.com/cython/cython/blob/master/CHANGES.rst#306-2023-11-26\n\n- Handle the ``ENABLE TRIGGER ALL`` in ``AlterTableCmd``\n\n- Fix issue `#136`__, a regression introduced by \u201cAvoid overly abundancy of parentheses in\n expressions\u201d\n\n __ https://github.com/lelit/pglast/issues/136\n\n\n5.5 (2023-10-07)\n~~~~~~~~~~~~~~~~\n\n- Use `Cython 3.0.3`__\n\n __ https://github.com/cython/cython/blob/master/CHANGES.rst#303-2023-10-05\n\n- Produce wheels using final Python 3.12 release, thanks to ``cibuildwheel`` `2.16.2`__\n\n __ https://cibuildwheel.readthedocs.io/en/stable/changelog/#v2162\n\n\n5.4 (2023-08-24)\n~~~~~~~~~~~~~~~~\n\n- Improve documentation, adding ``parser.Displacements``, ``parser.scan`` and ``parser.split``\n examples (`issue #128`__)\n\n __ https://github.com/lelit/pglast/issues/128\n\n- Fix issues `#129`__ and `#130`__ (merged from `version 4.4`__)\n\n __ https://github.com/lelit/pglast/issues/129\n __ https://github.com/lelit/pglast/issues/130\n __ `4.4 (2023-08-24)`_\n\n\n5.3 (2023-08-05)\n~~~~~~~~~~~~~~~~\n\n- Update libpg_query to `15-4.2.3`__\n\n __ https://github.com/pganalyze/libpg_query/releases/tag/15-4.2.3\n\n\n5.2 (2023-05-20)\n~~~~~~~~~~~~~~~~\n\n- Update libpg_query to `15-4.2.1`__\n\n __ https://github.com/pganalyze/libpg_query/releases/tag/15-4.2.1\n\n\n5.1 (2023-02-28)\n~~~~~~~~~~~~~~~~\n\n- Merge `version 4.2`__ changes\n\n __ `4.2 (2023-02-27)`_\n\n\n5.0 (2023-02-19)\n~~~~~~~~~~~~~~~~\n\n- No changes\n\n\n5.0.dev1 (2023-02-11)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Update libpg_query to `15-4.2.0`__\n\n __ https://github.com/pganalyze/libpg_query/releases/tag/15-4.2.0\n\n~~~~~~~~~~~~~~~~~~~~\n**Breaking changes**\n~~~~~~~~~~~~~~~~~~~~\n\n- Change the type of the ``ast.Float`` value from ``Decimal`` to ``str``\n\n Using a ``Decimal`` implies potential differences in the representation of floating numbers,\n and already caused issues (`#91`__ and `#100`__) in the past, making it impossible to render,\n say, ``SELECT 0.0e1``, due to the fact that ``Decimal('0.0e1')`` resolves to\n ``Decimal('0')``.\n\n __ https://github.com/lelit/pglast/issues/91\n __ https://github.com/lelit/pglast/issues/100\n\n\n5.0.dev0 (2022-12-19)\n~~~~~~~~~~~~~~~~~~~~~\n\n- No visible changes with respect to v4, apart from the support for new/revised syntaxes of\n `PostgreSQL 15`__\n\n __ https://www.postgresql.org/docs/15/release-15.html\n\n~~~~~~~~~~~~~~~~~~~~\n**Breaking changes**\n~~~~~~~~~~~~~~~~~~~~\n\n- Target PostgreSQL 15, thanks to libpg_query `15-4.0.0`__\n\n __ https://github.com/pganalyze/libpg_query/releases/tag/15-4.0.0\n\n\nVersion 4\n#########\n\n4.5 (unreleased)\n~~~~~~~~~~~~~~~~\n\n- Use `Cython 3.0.2`__\n\n __ https://github.com/cython/cython/blob/master/CHANGES.rst#302-2023-08-27\n\n\n4.4 (2023-08-24)\n~~~~~~~~~~~~~~~~\n\n- Fix issues `#129`__ and `#130`__ (merged from `version 3.18`__)\n\n __ https://github.com/lelit/pglast/issues/129\n __ https://github.com/lelit/pglast/issues/130\n __ `3.18 (2023-08-24)`_\n\n\n4.3 (2023-04-27)\n~~~~~~~~~~~~~~~~\n\n- Fix `serialization issue`__ when column's ``DEFAULT`` value is an expression\n\n __ https://github.com/pganalyze/libpg_query/issues/188\n\n\n4.2 (2023-02-27)\n~~~~~~~~~~~~~~~~\n\n- Handle special syntax required by ``SET TIME ZONE INTERVAL '-08:00' hour to minute``\n\n- Fix mistype mapping of raw C \"long\" and \"double\" attributes, that were decorated with the\n wrong Python type\n\n\n4.1 (2022-12-19)\n~~~~~~~~~~~~~~~~\n\n- Fix serialization glitches introduced by \u201cAvoid overly abundancy of parentheses in\n expressions\u201d (to be precise, by this__ commit)\n\n __ https://github.com/lelit/pglast/commit/6cfe75eea80f9c9bec4ba467e7ec1ec0796020de\n\n\n4.0 (2022-12-12)\n~~~~~~~~~~~~~~~~\n\n- Update libpg_query to final `14-3.0.0`__\n\n __ https://github.com/pganalyze/libpg_query/releases/tag/14-3.0.0\n\n\n4.0.dev0 (2022-11-24)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Update libpg_query to `14-3.0.0`__\n\n __ https://github.com/pganalyze/libpg_query/blob/14-latest/CHANGELOG.md#14-300---2022-11-17\n\n- Avoid overly abundancy of parentheses in expressions\n\n- Prefer ``SELECT a FROM b LIMIT ALL`` to ``... LIMIT NONE``\n\n~~~~~~~~~~~~~~~~~~~~\n**Breaking changes**\n~~~~~~~~~~~~~~~~~~~~\n\n- Target PostgreSQL 14\n\n- The wrapper classes used in previous versions, implemented in ``pglast.node``, are gone: now\n everything works on top of the ``AST`` classes (`issue #80`__)\n\n __ https://github.com/lelit/pglast/issues/80\n\n- The ``Ancestor`` class is not iterable anymore: it was an internal implementation facility,\n now moved to a ``_iter_members()`` method\n\n\nVersion 3\n#########\n\n3.18 (2023-08-24)\n~~~~~~~~~~~~~~~~~\n\n- Fix ``BooleanTest`` printer, enclosing expression within parens in more cases (`issue\n #129`__)\n\n __ https://github.com/lelit/pglast/issues/129\n\n- Fix ``Constraint`` printer, avoiding repetition of \"DEFERRABLE INITIALLY DEFERRED\" on some\n kind of constraints (`issue #130`__)\n\n __ https://github.com/lelit/pglast/issues/130\n\n\n3.17 (2022-11-04)\n~~~~~~~~~~~~~~~~~\n\n- Fix ``AlterSubscriptionStmt`` printer, handling \"SET PUBLICATION\" without options\n\n\n3.16 (2022-11-03)\n~~~~~~~~~~~~~~~~~\n\n- Update libpg_query to `13-2.2.0`__\n\n __ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-220---2022-11-02\n\n\n3.15 (2022-10-17)\n~~~~~~~~~~~~~~~~~\n\n- Produce Python 3.11 wheels (`PR #108`__), thanks to ``cibuildwheel`` 2.11.1__ and to Bastien\n Gandouet\n\n __ https://github.com/lelit/pglast/pull/108\n __ https://cibuildwheel.readthedocs.io/en/stable/changelog/#v2111\n\n\n3.14 (2022-08-08)\n~~~~~~~~~~~~~~~~~\n\n- Harden the way ``Visitor`` handle modifications to the AST (`issue #107`__)\n\n __ https://github.com/lelit/pglast/issues/107\n\n\n3.13 (2022-06-29)\n~~~~~~~~~~~~~~~~~\n\n- Update libpg_query to `13-2.1.2`__\n\n __ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-212---2022-06-28\n\n\n3.12 (2022-06-19)\n~~~~~~~~~~~~~~~~~\n\n- Rewrite the implementation of the ``referenced_relations()`` function, that was flawed with\n regard to CTEs handling (`issue #106`__), thanks to Michal Charemza for providing his own\n version\n\n __ https://github.com/lelit/pglast/issues/106\n\n- Improve ``WithClause`` printer indentation\n\n- Fix minor whitespace related issues in a few printer functions\n\n\n3.11 (2022-05-29)\n~~~~~~~~~~~~~~~~~\n\n- Fix the ``Visitor`` class, it was ignoring nodes nested in sub-lists\n\n- Reduce the size of the generated parser by factoring out common code into helper functions\n\n\n3.10 (2022-05-11)\n~~~~~~~~~~~~~~~~~\n\n- Update libpg_query to `13-2.1.1`__ (`PR #102`__), thanks to James Guthrie\n\n __ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-211---2022-05-03\n __ https://github.com/lelit/pglast/pull/102\n\n- Produce `musllinux`__ wheels, thanks to ``cibuildwheel`` `2.5.0`__ (:PEP:`656` was actually\n introduced in `2.2.0`__)\n\n __ https://peps.python.org/pep-0656/\n __ https://cibuildwheel.readthedocs.io/en/stable/changelog/#v250\n __ https://cibuildwheel.readthedocs.io/en/stable/changelog/#v220\n\n\n3.9 (2022-02-24)\n~~~~~~~~~~~~~~~~\n\n- Fix bug handling node containing a ``location`` field, e.g. ``CreateTableSpaceStmt`` (`issue\n #98`__)\n\n __ https://github.com/lelit/pglast/issues/98\n\n- Properly handle dereferenced array expression (`issue #99`__)\n\n __ https://github.com/lelit/pglast/issues/99\n\n- Avoid improper \"floatification\" of literal integers (`issue #100`__)\n\n __ https://github.com/lelit/pglast/issues/100\n\n\n3.8 (2021-12-28)\n~~~~~~~~~~~~~~~~\n\n- Fix glitch in the AST extractor tool (`issue #97`__)\n\n __ https://github.com/lelit/pglast/issues/97\n\n- Add Linux AArch64 wheel build support (`PR #95`__), thanks to odidev\n\n __ https://github.com/lelit/pglast/pull/95\n\n- Fix type mismatch when using ``--remove-pg_catalog-from-functions`` (`PR #93`__), thanks\n to Boris Zentner\n\n __ https://github.com/lelit/pglast/pull/93/\n\n\n3.7 (2021-10-13)\n~~~~~~~~~~~~~~~~\n\n- Update libpg_query to `13-2.1.0`__\n\n __ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-210---2021-10-12_\n\n\n3.6 (2021-10-09)\n~~~~~~~~~~~~~~~~\n\n- Use latest libpg_query, to fix an error parsing ``PLpgSQL`` statements (`issue #88`__)\n\n __ https://github.com/lelit/pglast/issues/88\n\n\n3.5 (2021-09-26)\n~~~~~~~~~~~~~~~~\n\n- Forward the ``special_functions`` option to substream, when concatenating items\n (`issue #89`__)\n\n __ https://github.com/lelit/pglast/issues/89\n\n- Fix representation of floating point numbers without decimal digits (`issue #91`__)\n\n __ https://github.com/lelit/pglast/issues/91\n\n- Produce Python 3.10 wheels, thanks to ``cibuildwheel`` 2.1.2\n\n- Update libpg_query to `13-2.0.7`__\n\n __ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-207---2021-07-16_\n\n- New option ``--remove-pg_catalog-from-functions`` on the command line tool (`PR #90`__), thanks\n to Boris Zentner\n\n __ https://github.com/lelit/pglast/pull/90/\n\n- Implement more *special functions* (`PR #92`__), thanks to Boris Zentner\n\n __ https://github.com/lelit/pglast/pull/92/\n\n\n3.4 (2021-08-21)\n~~~~~~~~~~~~~~~~\n\n- Fix another packaging issue, that prevented recompilation from the sdist ``.tar.gz`` (`issue\n #86`__), thanks to Christopher Brichford\n\n __ https://github.com/lelit/pglast/issues/82\n\n\n3.3 (2021-07-04)\n~~~~~~~~~~~~~~~~\n\n- Update libpg_query to `13-2.0.6`__\n\n __ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-206---2021-06-29_\n\n\n3.2 (2021-06-25)\n~~~~~~~~~~~~~~~~\n\n- Effectively include libpg_query's vendored sources (`issue #82`__)\n\n __ https://github.com/lelit/pglast/issues/82\n\n\n3.1 (2021-06-25)\n~~~~~~~~~~~~~~~~\n\n- Fix packaging glitch (`issue #82`__)\n\n __ https://github.com/lelit/pglast/issues/82\n\n- Build wheels also for macOS\n\n- Update libpg_query to `13-2.0.5`__\n\n __ https://github.com/pganalyze/libpg_query/blob/13-latest/CHANGELOG.md#13-205---2021-06-24_\n\n\n3.0 (2021-06-04)\n~~~~~~~~~~~~~~~~\n\n- Fix glitch in the ``RawStream``, avoiding spurious space after an open parenthesis\n\n- Improve the ``Visitor`` class, to make it easier altering the original tree\n\n- Properly handle nested lists in the serialization of AST Node\n\n\n3.0.dev2 (2021-05-22)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fix bug in ``CreateStmt`` printer (`issue #79`__)\n\n __ https://github.com/lelit/pglast/issues/79\n\n- Make it possible to pass also concrete ``ast.Node``\\ s to ``RawStream```\n\n~~~~~~~~~~~~~~~~~~~~\n**Breaking changes**\n~~~~~~~~~~~~~~~~~~~~\n\n- To reduce confusion, the ``printer`` module has been removed: print-specific stuff is now\n directly exposed by the ``printers`` subpackage while serialization classes are now in the\n new ``stream`` module\n\n- The default value for the ``safety_belt`` option of the ``printify()`` function is now\n ``False``\n\n\n3.0.dev1 (2021-05-16)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fix ``AT_SetIdentity``, ``AT_EnableReplicaTrig`` and ``AlterSubscriptionStmt`` printers\n\n- Improve ``AlterTSConfigType`` and ``IntoClause`` printers\n\n- New generic \"visitor pattern\" (`issue #51`__) exemplified by a new\n ``referenced_relations()`` function (`issue #66`__)\n\n __ https://github.com/lelit/pglast/issues/51\n __ https://github.com/lelit/pglast/issues/66\n\n- Refine printing of SQL comments\n\n- Implement ``AlterExtensionStmt`` printer\n\n\n3.0.dev0 (2021-05-03)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Expose the new ``pg_query_scan()`` function as ``parser.scan()``\n\n- Expose the ``pg_query_parse()`` function as ``parser.parse_sql_json()``\n\n- Expose the new ``pg_query_parse_protobuf()`` function as ``parser.parse_sql_protobuf()``\n\n- Expose the new ``pg_query_deparse_protobuf()`` function as ``parser.deparse_protobuf()``\n\n- Honor the ``catalogname`` of a ``RangeVar`` if present (`issue #71`__)\n\n __ https://github.com/lelit/pglast/issues/71\n\n- Cover almost all ``SQL`` statements, testing against the whole ``PostgreSQL`` `regression\n suite`__ (`issue #68`__, `PR #72`__ and `PR #77`__), thanks to Ronan Dunklau and Hong Cheng\n\n __ https://github.com/pganalyze/libpg_query/tree/13-latest/test/sql/postgres_regress_\n __ https://github.com/lelit/pglast/issues/68\n __ https://github.com/lelit/pglast/pull/72\n __ https://github.com/lelit/pglast/pull/77\n\n- New rudimentary support for the `preserve comments` feature (`issue #23`__)\n\n __ https://github.com/lelit/pglast/issues/23\n\n~~~~~~~~~~~~~~~~~~~~\n**Breaking changes**\n~~~~~~~~~~~~~~~~~~~~\n\n- Target PostgreSQL 13\n\n- The ``pglast.parser`` module exposes all ``libpg_query`` entry points, even the new\n ``pg_query_deparse_protobuf()`` function that is basically equivalent to\n ``RawStream``\\ -based printer\n\n- The ``split()`` function is now based on the lower level ``pg_query_split_with_xxx()``\n functions\n\n- The ``parse_sql()`` function returns native Python objects, not a ``JSON`` string as before:\n all PG *nodes* are now represented by subclasses of ``pglast.ast.Node``, without exception,\n even ``Expr`` and ``Value`` are there. The latter impacts on ``pglast.node.Scalar``: for\n example it now may contains a ``ast.Integer`` instance instead of a Python ``int``\n\n- The ``pgpp --parse-tree`` output is a `pprint`__ represention of the ``AST``, not a ``JSON``\n string as before\n\n __ https://docs.python.org/3.9/library/pprint.html#pprint.pprint\n\n- The ``ParseError`` exception does not expose the ``location`` as an instance member anymore,\n although its still there, as the second argument (ie ``.args[1]``); furthermore, its value\n now corresponds to the index in the original Unicode string, instead of the offset in the\n ``UTF-8`` representation passed to the underlying C function\n\n\nVersion 2\n#########\n\n2.0.dev3 (2021-02-20)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Handle ``INCLUDE`` clause in ``IndexStmt`` (`PR #67`__), thanks to Ronan Dunklau\n\n __ https://github.com/lelit/pglast/pull/67\n\n\n2.0.dev2 (2020-10-24)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Merge new ``fingerprint`` functionality from ``v1`` (i.e. ``master``) branch\n\n\n2.0.dev1 (2020-09-26)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Require Python 3.6 or greater\n\n- Handle ``ALTER TYPE .. RENAME VALUE`` in ``AlterEnumStmt`` (`PR #52`__), thanks to Ronan\n Dunklau\n\n __ https://github.com/lelit/pglast/pull/52\n\n- Add support for Create / Alter / Drop PROCEDURE (`PR #48`__), thanks to Ronan Dunklau\n\n __ https://github.com/lelit/pglast/pull/48\n\n- Use Ronan's fork__ of libpg_query, targeting PostgreSQL 12.1 (`PR #36`__)\n\n __ https://github.com/rdunklau/libpg_query\n __ https://github.com/lelit/pglast/pull/36\n\n- Change get_postgresql_version() to return a ``(major, minor)`` tuple (`issue #38`__)\n\n __ https://github.com/lelit/pglast/issues/38\n\n- Handle ``ALTER TABLE ... ALTER COLUMN ... SET STORAGE ...``\n\n- Handle PG12 materialized CTEs (`issue #57`)\n\n- Support column numbers in ``ALTER INDEX`` (`PR #58`__), thanks to Ronan Dunklau\n\n __ https://github.com/lelit/pglast/pull/58\n\n- Handle ``SET LOGGED`` and ``SET UNLOGGED`` in ``ALTER TABLE`` (`PR #59`__), thanks to Ronan\n Dunklau\n\n __ https://github.com/lelit/pglast/pull/59\n\n- Handle ``ALTER TYPE ... RENAME`` (`PR #62`__), , thanks to Ronan\n Dunklau\n\n __ https://github.com/lelit/pglast/pull/62\n\n\nVersion 1\n#########\n\n1.18 (2021-06-01)\n~~~~~~~~~~~~~~~~~\n\n- Fix exclusion constraint printer (`issue #81`__)\n\n __ https://github.com/lelit/pglast/issues/81\n\n\n1.17 (2021-02-20)\n~~~~~~~~~~~~~~~~~\n\n- Fix the generic case in the ``RenameStmt`` printer\n\n\n1.16 (2021-02-20)\n~~~~~~~~~~~~~~~~~\n\n- Promote to the *stable* state\n\n- Move the job of building and uploading binary wheels from TravisCI to GitHub Actions\n\n\n1.15 (2021-02-19)\n~~~~~~~~~~~~~~~~~\n\n- Fix ``IF EXISTS`` variant of ``RenameStmt`` printer (`PR #70`__), thanks to Jonathan\n Mortensen\n\n __ https://github.com/lelit/pglast/pull/70\n\n- Update libpg_query to 10-1.0.5\n\n\n1.14 (2020-10-24)\n~~~~~~~~~~~~~~~~~\n\n- Produce Python 3.9 wheels, thanks to ``cibuildwheel`` 1.6.3\n\n- Expose the ``libpg_query``'s `fingerprint`__ functionality (`PR #64`__), thanks to Yiming\n Wang\n\n __ https://github.com/lfittl/libpg_query/wiki/Fingerprinting\n __ https://github.com/lelit/pglast/pull/64\n\n\n1.13 (2020-09-26)\n~~~~~~~~~~~~~~~~~\n\n- Handle ``SELECT FROM foo``\n\n\n1.12 (2020-06-08)\n~~~~~~~~~~~~~~~~~\n\n- Double quote column names in the ``TYPE_FUNC_NAME_KEYWORDS`` set (`issue #55`__)\n\n __ https://github.com/lelit/pglast/issues/55\n\n- Possibly wrap ``SELECT`` in ``UNION``/``INTERSECT`` between parens, when needed\n (`issue #55`__)\n\n __ https://github.com/lelit/pglast/issues/55\n\n\n1.11 (2020-05-08)\n~~~~~~~~~~~~~~~~~\n\n- Fix ``A_Expr`` printer, when ``lexpr`` is missing (`PR #54`__), thanks to Aiham\n\n __ https://github.com/lelit/pglast/pull/54\n\n- Support ``DISABLE ROW LEVEL SECURITY`` in ``AlterTableCmd`` (`PR #49`__), thanks to Ronan\n Dunklau\n\n __ https://github.com/lelit/pglast/pull/49\n\n- Implement ``CreateOpClassStmt`` printer (`PR #47`__), thanks to Ronan Dunklau\n\n __ https://github.com/lelit/pglast/pull/47\n\n\n1.10 (2020-01-25)\n~~~~~~~~~~~~~~~~~\n\n- Fix collation name printer (`PR #44`__), thanks to Ronan Dunklau\n\n __ https://github.com/lelit/pglast/pull/44\n\n- Implement ``CreatePLangStmt`` printer (`PR #42`__), thanks to Bennie Swart\n\n __ https://github.com/lelit/pglast/pull/42\n\n- Fix privileges printer (`PR #41`__), thanks to Bennie Swart\n\n __ https://github.com/lelit/pglast/pull/41\n\n- Handle ``TRUNCATE`` event in ``CreateTrigStmt`` printer (`PR #40`__), thanks to Bennie Swart\n\n __ https://github.com/lelit/pglast/pull/40\n\n- Fix function body dollar quoting (`PR #39`__), thanks to Bennie Swart\n\n __ https://github.com/lelit/pglast/pull/39\n\n\n1.9 (2019-12-20)\n~~~~~~~~~~~~~~~~\n\n- Prettier ``INSERT`` representation\n\n\n1.8 (2019-12-07)\n~~~~~~~~~~~~~~~~\n\n- Prettier ``CASE`` representation\n\n- New option to emit a semicolon after the last statement (`issue #24`__)\n\n __ https://github.com/lelit/pglast/issues/24\n\n\n1.7 (2019-12-01)\n~~~~~~~~~~~~~~~~\n\n- Implement ``NotifyStmt`` printer\n\n- Implement ``RuleStmt`` printer, thanks to Gavin M. Roy for his `PR #28`__\n\n __ https://github.com/lelit/pglast/pull/28\n\n- Fix ``RenameStmt``, properly handling object name\n\n- Produce Python 3.8 wheels, thanks to `cibuildwheel`__ 1.0.0\n\n __ https://github.com/joerick/cibuildwheel\n\n- Support ``ALTER TABLE RENAME CONSTRAINT`` (`PR #35`__), thanks to Ronan Dunklau\n\n __ https://github.com/lelit/pglast/pull/35\n\n\n1.6 (2019-09-04)\n~~~~~~~~~~~~~~~~\n\n- Fix issue with boolean expressions precedence (`issue #29`__)\n\n __ https://github.com/lelit/pglast/issues/29\n\n- Implement ``BitString`` printer\n\n- Support ``LEAKPROOF`` option (`PR #31`__), thanks to Ronan Dunklau\n\n __ https://github.com/lelit/pglast/pull/31\n\n- Support ``DEFERRABLE INITIALLY DEFERRED`` option (`PR #32`__), thanks to Ronan Dunklau\n\n __ https://github.com/lelit/pglast/pull/32\n\n\n1.5 (2019-06-04)\n~~~~~~~~~~~~~~~~\n\n- Fix issue with ``RETURNS SETOF`` functions, a more general solution than the one proposed by\n Ronan Dunklau (`PR #22`__)\n\n __ https://github.com/lelit/pglast/pull/22\n\n- Allow more than one empty line between statements (`PR #26`__), thanks to apnewberry\n\n __ https://github.com/lelit/pglast/pull/26\n\n\n1.4 (2019-04-06)\n~~~~~~~~~~~~~~~~\n\n- Fix wrap of trigger's WHEN expression (`issue #18`__)\n\n __ https://github.com/lelit/pglast/issues/18\n\n- Support for variadic functions (`PR #19`__), thanks to Ronan Dunklau\n\n __ https://github.com/lelit/pglast/pull/19\n\n- Support ORDER / LIMIT / OFFSET for set operations (`PR #20`__), thanks to Ronan Dunklau\n\n __ https://github.com/lelit/pglast/pull/20\n\n- Implement ``ConstraintsSetStmt`` and improve ``VariableSetStmt`` printers\n\n\n1.3 (2019-03-28)\n~~~~~~~~~~~~~~~~\n\n- Support ``CROSS JOIN`` and timezone modifiers on time and timestamp datatypes (`PR #15`__),\n thanks to Ronan Dunklau\n\n __ https://github.com/lelit/pglast/pull/15\n\n- Many new printers and several enhancements (`PR #14`__), thanks to Ronan Dunklau\n\n __ https://github.com/lelit/pglast/pull/14\n\n- Expose the package version as pglast.__version__ (`issue #12`__)\n\n __ https://github.com/lelit/pglast/issues/12\n\n\n1.2 (2019-02-13)\n~~~~~~~~~~~~~~~~\n\n- Implement new `split()` function (see `PR #10`__)\n\n __ https://github.com/lelit/pglast/pull/10\n\n- Implement ``BooleanTest`` printer (`issue #11`__)\n\n __ https://github.com/lelit/pglast/issues/11\n\n\n1.1 (2018-07-20)\n~~~~~~~~~~~~~~~~\n\n- No visible changes, but now PyPI carries binary wheels for Python 3.7.\n\n\n1.0 (2018-06-16)\n~~~~~~~~~~~~~~~~\n\n.. important:: The name of the package has been changed from ``pg_query`` to ``pglast``, to\n satisfy the request made by the author of ``libpg_query`` in `issue #9`__.\n\n This affects both the main repository on GitHub, that from now on is\n ``https://github.com/lelit/pglast``, and the ReadTheDocs project that hosts the\n documentation, ``http://pglast.readthedocs.io/en/latest/``.\n\n I'm sorry for any inconvenience this may cause.\n\n__ https://github.com/lelit/pglast/issues/9\n\n\n0.28 (2018-06-06)\n~~~~~~~~~~~~~~~~~\n\n- Update libpg_query to 10-1.0.2\n\n- Support the '?'-style parameter placeholder variant allowed by libpg_query (details__)\n\n__ https://github.com/lfittl/libpg_query/issues/45\n\n\n0.27 (2018-04-15)\n~~~~~~~~~~~~~~~~~\n\n- Prettier JOINs representation, aligning them with the starting relation\n\n\n0.26 (2018-04-03)\n~~~~~~~~~~~~~~~~~\n\n- Fix cosmetic issue with ANY() and ALL()\n\n\n0.25 (2018-03-31)\n~~~~~~~~~~~~~~~~~\n\n- Fix issue in the safety belt check performed by ``pgpp`` (`issue #4`__)\n\n__ https://github.com/lelit/pglast/issues/4\n\n\n0.24 (2018-03-02)\n~~~~~~~~~~~~~~~~~\n\n- Implement ``Null`` printer\n\n\n0.23 (2017-12-28)\n~~~~~~~~~~~~~~~~~\n\n- Implement some other DDL statements printers\n\n- New alternative style to print *comma-separated-values* lists, activated by a new\n ``--comma-at-eoln`` option on ``pgpp``\n\n\n0.22 (2017-12-03)\n~~~~~~~~~~~~~~~~~\n\n- Implement ``TransactionStmt`` and almost all ``DROP xxx`` printers\n\n\n0.21 (2017-11-22)\n~~~~~~~~~~~~~~~~~\n\n- Implement ``NamedArgExpr`` printer\n\n- New alternative printers for a set of *special functions*, activated by a new\n ``--special-functions`` option on ``pgpp`` (`issue #2`__)\n\n__ https://github.com/lelit/pglast/issues/2\n\n\n0.20 (2017-11-21)\n~~~~~~~~~~~~~~~~~\n\n- Handle special de-reference (``A_Indirection``) cases\n\n\n0.19 (2017-11-16)\n~~~~~~~~~~~~~~~~~\n\n- Fix serialization of column labels containing double quotes\n\n- Fix corner issues surfaced implementing some more DDL statement printers\n\n\n0.18 (2017-11-14)\n~~~~~~~~~~~~~~~~~\n\n- Fix endless loop due to sloppy conversion of command line option\n\n- Install the command line tool as ``pgpp``\n\n\n0.17 (2017-11-12)\n~~~~~~~~~~~~~~~~~\n\n- Rename printers.sql to printers.dml (**backward incompatibility**)\n\n- List printer functions in the documentation, referencing the definition of related node type\n\n- Fix inconsistent spacing in JOIN condition inside a nested expression\n\n- Fix representation of unbound arrays\n\n- Fix representation of ``interval`` data type\n\n- Initial support for DDL statements\n\n- Fix representation of string literals containing single quotes\n\n\n0.16 (2017-10-31)\n~~~~~~~~~~~~~~~~~\n\n- Update libpg_query to 10-1.0.0\n\n\n0.15 (2017-10-12)\n~~~~~~~~~~~~~~~~~\n\n- Fix indentation of boolean expressions in SELECT's targets (`issue #3`__)\n\n__ https://github.com/lelit/pglast/issues/3\n\n\n0.14 (2017-10-09)\n~~~~~~~~~~~~~~~~~\n\n- Update to latest libpg_query's 10-latest branch, targeting PostgreSQL 10.0 final\n\n\n0.13 (2017-09-17)\n~~~~~~~~~~~~~~~~~\n\n- Fix representation of subselects requiring surrounding parens\n\n\n0.12 (2017-08-22)\n~~~~~~~~~~~~~~~~~\n\n- New option ``--version`` on the command line tool\n\n- Better enums documentation\n\n- Release the GIL while calling libpg_query functions\n\n\n0.11 (2017-08-11)\n~~~~~~~~~~~~~~~~~\n\n- Nicer indentation for JOINs, making OUTER JOINs stand out\n\n- Minor tweaks to lists rendering, with less spurious whitespaces\n\n- New option ``--no-location`` on the command line tool\n\n\n0.10 (2017-08-11)\n~~~~~~~~~~~~~~~~~\n\n- Support Python 3.4 and Python 3.5 as well as Python 3.6\n\n\n0.9 (2017-08-10)\n~~~~~~~~~~~~~~~~\n\n- Fix spacing before the $ character\n\n- Handle type modifiers\n\n- New option ``--plpgsql`` on the command line tool, just for fun\n\n\n0.8 (2017-08-10)\n~~~~~~~~~~~~~~~~\n\n- Add enums subpackages to the documentation with references to their related headers\n\n- New ``compact_lists_margin`` option to produce a more compact representation when possible\n (see `issue #1`__)\n\n__ https://github.com/lelit/pglast/issues/1\n\n\n0.7 (2017-08-10)\n~~~~~~~~~~~~~~~~\n\n- Fix sdist including the Sphinx documentation\n\n\n0.6 (2017-08-10)\n~~~~~~~~~~~~~~~~\n\n- New option ``--parse-tree`` on the command line tool to show just the parse tree\n\n- Sphinx documentation, available online\n\n\n0.5 (2017-08-09)\n~~~~~~~~~~~~~~~~\n\n- Handle some more cases when a name must be double-quoted\n\n- Complete the serialization of the WindowDef node, handling its frame options\n\n\n0.4 (2017-08-09)\n~~~~~~~~~~~~~~~~\n\n- Expose the actual PostgreSQL version the underlying libpg_query libray is built on thru a new\n ``get_postgresql_version()`` function\n\n- New option `safety_belt` for the ``prettify()`` function, to protect the innocents\n\n- Handle serialization of ``CoalesceExpr`` and ``MinMaxExpr``\n\n\n0.3 (2017-08-07)\n~~~~~~~~~~~~~~~~\n\n- Handle serialization of ``ParamRef`` nodes\n\n- Expose a ``prettify()`` helper function\n\n\n0.2 (2017-08-07)\n~~~~~~~~~~~~~~~~\n\n- Test coverage at 99%\n\n- First attempt at automatic wheel upload to PyPI, let's see...\n\n\n0.1 (2017-08-07)\n~~~~~~~~~~~~~~~~\n\n- First release (\"Hi daddy!\", as my soul would tag it)\n",
"bugtrack_url": null,
"license": "GPL-3.0-or-later",
"summary": "PostgreSQL Languages AST and statements prettifier",
"version": "7.10",
"project_urls": {
"Homepage": "https://github.com/lelit/pglast"
},
"split_keywords": [
"postgresql",
"parser",
"sql",
"prettifier"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "b008389167382d7708e20f73258a8c0e3ed4db83f1f4fa50e85b61f8ccd08fbf",
"md5": "162e3a4e0b7e4b5013bc7bf5ddb10692",
"sha256": "9090661a71cec3b999744026049203c16beacc81c28687e4a1f846fc10b9261d"
},
"downloads": -1,
"filename": "pglast-7.10-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "162e3a4e0b7e4b5013bc7bf5ddb10692",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1136219,
"upload_time": "2025-10-26T10:30:55",
"upload_time_iso_8601": "2025-10-26T10:30:55.655611Z",
"url": "https://files.pythonhosted.org/packages/b0/08/389167382d7708e20f73258a8c0e3ed4db83f1f4fa50e85b61f8ccd08fbf/pglast-7.10-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ce9f1633fbaadd034e538f40866494cf1556fca840e62a475f79b5eb13822a5",
"md5": "93eb07e9c974e5ddb2352b5089356c5a",
"sha256": "547220448073552fac951566762f10b77d6280f8bb38e9c223813d51a10f5e4f"
},
"downloads": -1,
"filename": "pglast-7.10-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "93eb07e9c974e5ddb2352b5089356c5a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1056589,
"upload_time": "2025-10-26T10:30:57",
"upload_time_iso_8601": "2025-10-26T10:30:57.919981Z",
"url": "https://files.pythonhosted.org/packages/8c/e9/f1633fbaadd034e538f40866494cf1556fca840e62a475f79b5eb13822a5/pglast-7.10-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "68e68a17ee36110db9b270b15364464370adcddbad699dc312553d5b560604e6",
"md5": "0f4a6162828604ce721462e73ea968df",
"sha256": "1beeca1bfb10b87e59e0f41bc93da99092463469d58d8299e4d37d2b0a47d0b4"
},
"downloads": -1,
"filename": "pglast-7.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "0f4a6162828604ce721462e73ea968df",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 5460437,
"upload_time": "2025-10-26T10:30:59",
"upload_time_iso_8601": "2025-10-26T10:30:59.357248Z",
"url": "https://files.pythonhosted.org/packages/68/e6/8a17ee36110db9b270b15364464370adcddbad699dc312553d5b560604e6/pglast-7.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d8d8d6288832cc2b435262e5699e9b1298c4cbeb0a49b5a18aa9169fbc6d476",
"md5": "f7d9f852a598973753f06f1b9f76dc9e",
"sha256": "0fe93fd213b07ac33a9a4aa46ab11ba6e161488370b31451d7c2069581be95a0"
},
"downloads": -1,
"filename": "pglast-7.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "f7d9f852a598973753f06f1b9f76dc9e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 5526685,
"upload_time": "2025-10-26T10:31:01",
"upload_time_iso_8601": "2025-10-26T10:31:01.077773Z",
"url": "https://files.pythonhosted.org/packages/4d/8d/8d6288832cc2b435262e5699e9b1298c4cbeb0a49b5a18aa9169fbc6d476/pglast-7.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b8d1ae3e991f5b65fe7f64a2076677340445405c90bd15ab1926461476cab426",
"md5": "5098c10c95b8850d5a76f732fc8b5800",
"sha256": "b596e199c90f670f8a3df2190cd8b62c72f66d4fedd696a0e0851a1e4c773490"
},
"downloads": -1,
"filename": "pglast-7.10-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5098c10c95b8850d5a76f732fc8b5800",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 5322842,
"upload_time": "2025-10-26T10:31:02",
"upload_time_iso_8601": "2025-10-26T10:31:02.708252Z",
"url": "https://files.pythonhosted.org/packages/b8/d1/ae3e991f5b65fe7f64a2076677340445405c90bd15ab1926461476cab426/pglast-7.10-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c816e3851d0bcc633cba31d0323796a35546df710b232995a2edcdbbad919497",
"md5": "06e4c0e910270c3241c65b9ae3250cbf",
"sha256": "96e5816c3bd50308da01b18e6f4aff60302fbe4a5ffe59239052765f34be456a"
},
"downloads": -1,
"filename": "pglast-7.10-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "06e4c0e910270c3241c65b9ae3250cbf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 5399814,
"upload_time": "2025-10-26T10:31:04",
"upload_time_iso_8601": "2025-10-26T10:31:04.546390Z",
"url": "https://files.pythonhosted.org/packages/c8/16/e3851d0bcc633cba31d0323796a35546df710b232995a2edcdbbad919497/pglast-7.10-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd389563c2e6578cd69af334921d6c842ddff28260142aea333091c8fa1bdc06",
"md5": "d2518488206959595274bcfffa6fc264",
"sha256": "c1a72e0803285e53c518fa23a2ac10cfa74c8625dcf7bfb07b486d4b27e1a20e"
},
"downloads": -1,
"filename": "pglast-7.10-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "d2518488206959595274bcfffa6fc264",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 982300,
"upload_time": "2025-10-26T10:31:06",
"upload_time_iso_8601": "2025-10-26T10:31:06.572245Z",
"url": "https://files.pythonhosted.org/packages/dd/38/9563c2e6578cd69af334921d6c842ddff28260142aea333091c8fa1bdc06/pglast-7.10-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f195d12e0c7b30f482e2dc6f12b70015cb3fb5047f5bf0e0ae593d77a20797d1",
"md5": "b1eeea40da0b91cb2968250d172dce0b",
"sha256": "4d1530fc38daa575e6a4ac11f31ef1b8302685d4c90133439035a4c965bc0718"
},
"downloads": -1,
"filename": "pglast-7.10-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "b1eeea40da0b91cb2968250d172dce0b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1057697,
"upload_time": "2025-10-26T10:31:08",
"upload_time_iso_8601": "2025-10-26T10:31:08.149098Z",
"url": "https://files.pythonhosted.org/packages/f1/95/d12e0c7b30f482e2dc6f12b70015cb3fb5047f5bf0e0ae593d77a20797d1/pglast-7.10-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cbbff63b9d66ad4b0930f2e6af38539b2d62b88584b623a6bcc10fa51974ff58",
"md5": "790d316cbecbeceece5863b0b388c0d0",
"sha256": "01fe3c75ed81a1963ae3791b98d60132a89438211f501c8851c336d104daa317"
},
"downloads": -1,
"filename": "pglast-7.10-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "790d316cbecbeceece5863b0b388c0d0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1137375,
"upload_time": "2025-10-26T10:31:09",
"upload_time_iso_8601": "2025-10-26T10:31:09.731836Z",
"url": "https://files.pythonhosted.org/packages/cb/bf/f63b9d66ad4b0930f2e6af38539b2d62b88584b623a6bcc10fa51974ff58/pglast-7.10-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e42d86202e425e1c98406f3d67fc3e97ab44d4a105ec85be6a1714fa029ae741",
"md5": "10ac8767a364979c6f217db2ab58d386",
"sha256": "5a2f90dec5f176d2dd4124af7d03bf42eca29da2b4b053f4edf3129fd5eeee2f"
},
"downloads": -1,
"filename": "pglast-7.10-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "10ac8767a364979c6f217db2ab58d386",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1057420,
"upload_time": "2025-10-26T10:31:11",
"upload_time_iso_8601": "2025-10-26T10:31:11.593819Z",
"url": "https://files.pythonhosted.org/packages/e4/2d/86202e425e1c98406f3d67fc3e97ab44d4a105ec85be6a1714fa029ae741/pglast-7.10-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "45270bb0320d862205104e6d0b8d8097c02629c3f7164dd58f7a7e8b0470b093",
"md5": "941e08e3e7523dcce4bd5fac119e04d7",
"sha256": "7dbccf08c9e3f3cd716960e94b54868fb4d137a773754fe8ba11fae717af0e4e"
},
"downloads": -1,
"filename": "pglast-7.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "941e08e3e7523dcce4bd5fac119e04d7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 5510513,
"upload_time": "2025-10-26T10:31:12",
"upload_time_iso_8601": "2025-10-26T10:31:12.848602Z",
"url": "https://files.pythonhosted.org/packages/45/27/0bb0320d862205104e6d0b8d8097c02629c3f7164dd58f7a7e8b0470b093/pglast-7.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b55a1309b9af90a582e2490cf8ddbfac225cceb855f83bad8adab4c5f180fd0",
"md5": "49438ce024754a06515ecffdd859fe9a",
"sha256": "0067c2a24ba21d2d5a6661662bf0ba23e2dce79b37df2a3838f3cb9b3a12426b"
},
"downloads": -1,
"filename": "pglast-7.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "49438ce024754a06515ecffdd859fe9a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 5580896,
"upload_time": "2025-10-26T10:31:15",
"upload_time_iso_8601": "2025-10-26T10:31:15.288908Z",
"url": "https://files.pythonhosted.org/packages/5b/55/a1309b9af90a582e2490cf8ddbfac225cceb855f83bad8adab4c5f180fd0/pglast-7.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a028794f4391321e36812b5c6b0498dcd64ab1253dbf79f6b380b24b7056a590",
"md5": "5aaba51093f0372cf9eb933a9ea6e0d8",
"sha256": "fb013159a7e73c5edec0e51e662225e10d1b25b5d4f63804ea30ba6200a258a3"
},
"downloads": -1,
"filename": "pglast-7.10-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5aaba51093f0372cf9eb933a9ea6e0d8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 5377703,
"upload_time": "2025-10-26T10:31:17",
"upload_time_iso_8601": "2025-10-26T10:31:17.134422Z",
"url": "https://files.pythonhosted.org/packages/a0/28/794f4391321e36812b5c6b0498dcd64ab1253dbf79f6b380b24b7056a590/pglast-7.10-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "07f9009968a0af32c482a7de296083e1a9434523f759a4e92966b7563a7bb5f8",
"md5": "f3b41b6c0c2a09643857596a717896c7",
"sha256": "1211ae33284e81d4d1b8ddac6b2ea0577f44a969138653cddca0738214b1b307"
},
"downloads": -1,
"filename": "pglast-7.10-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f3b41b6c0c2a09643857596a717896c7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 5451669,
"upload_time": "2025-10-26T10:31:18",
"upload_time_iso_8601": "2025-10-26T10:31:18.901855Z",
"url": "https://files.pythonhosted.org/packages/07/f9/009968a0af32c482a7de296083e1a9434523f759a4e92966b7563a7bb5f8/pglast-7.10-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b56dce5d31fbbef18870463f35696af68ad9877a5b750b17fa4260a2b664986",
"md5": "d6947eea425fcb3f19581ac7162f9d66",
"sha256": "cbfcb12494cde68e186b6e40821c24f59cc459a492ef2fe2e6a299c4f3e2895b"
},
"downloads": -1,
"filename": "pglast-7.10-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "d6947eea425fcb3f19581ac7162f9d66",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 982264,
"upload_time": "2025-10-26T10:31:20",
"upload_time_iso_8601": "2025-10-26T10:31:20.274802Z",
"url": "https://files.pythonhosted.org/packages/0b/56/dce5d31fbbef18870463f35696af68ad9877a5b750b17fa4260a2b664986/pglast-7.10-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "16506501c882d7f620da4c0a84d0ae2095a411318d5fa8efd1a45ee3602c8b31",
"md5": "2afb7072a8b34596eb3c315305eff51d",
"sha256": "1c53c276424c21f82efa078eb6c2dee9839a5b941cf60c7eb2ee2854be406f49"
},
"downloads": -1,
"filename": "pglast-7.10-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "2afb7072a8b34596eb3c315305eff51d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1057829,
"upload_time": "2025-10-26T10:31:21",
"upload_time_iso_8601": "2025-10-26T10:31:21.728590Z",
"url": "https://files.pythonhosted.org/packages/16/50/6501c882d7f620da4c0a84d0ae2095a411318d5fa8efd1a45ee3602c8b31/pglast-7.10-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d28933bb691d1580bdda7ed056a3c211e4a6a682232d9fab25820125340565c5",
"md5": "ee8198e7dd323723bb099cc20bb98df9",
"sha256": "96087b93ed8c0b46dfec0aa5ff2fa4e20ebbb81e8d722af17bf4261823d2d2fb"
},
"downloads": -1,
"filename": "pglast-7.10-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "ee8198e7dd323723bb099cc20bb98df9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1133684,
"upload_time": "2025-10-26T10:31:23",
"upload_time_iso_8601": "2025-10-26T10:31:23.398568Z",
"url": "https://files.pythonhosted.org/packages/d2/89/33bb691d1580bdda7ed056a3c211e4a6a682232d9fab25820125340565c5/pglast-7.10-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "71e24782cb7706e83037193ed3c4b5210cc1363af15da05b733858b1316104e9",
"md5": "ff1b7e218a30a09f61e7d8a0dbbce492",
"sha256": "1967b67600f481eb818e786e3214cefcc1aa8d516508232302bf63f28754b8af"
},
"downloads": -1,
"filename": "pglast-7.10-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ff1b7e218a30a09f61e7d8a0dbbce492",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1060219,
"upload_time": "2025-10-26T10:31:25",
"upload_time_iso_8601": "2025-10-26T10:31:25.325584Z",
"url": "https://files.pythonhosted.org/packages/71/e2/4782cb7706e83037193ed3c4b5210cc1363af15da05b733858b1316104e9/pglast-7.10-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cf31ff50c65eb6562202f87ba6402e7be523abae813e23aa9e298a5c5da1d97a",
"md5": "376cc3ddf53a6782e5b1192c1ee97b94",
"sha256": "7c687a631e2429a6ca4c2f67f32e1f9ee742216cd3cf26297aafe302fbd8f6ed"
},
"downloads": -1,
"filename": "pglast-7.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "376cc3ddf53a6782e5b1192c1ee97b94",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 5527446,
"upload_time": "2025-10-26T10:31:27",
"upload_time_iso_8601": "2025-10-26T10:31:27.470825Z",
"url": "https://files.pythonhosted.org/packages/cf/31/ff50c65eb6562202f87ba6402e7be523abae813e23aa9e298a5c5da1d97a/pglast-7.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f3ba5a12273cff7cb39419aa4ecf57aa246702ab34094d0462dc72ef5dcf36d0",
"md5": "0bda0325e1e69dcbc20c08f8a1d453d0",
"sha256": "b89c6bf904b4043752431564ce5c6bacf5d54cb6d6bc487a175cab9a47f18436"
},
"downloads": -1,
"filename": "pglast-7.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0bda0325e1e69dcbc20c08f8a1d453d0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 5614016,
"upload_time": "2025-10-26T10:31:29",
"upload_time_iso_8601": "2025-10-26T10:31:29.156987Z",
"url": "https://files.pythonhosted.org/packages/f3/ba/5a12273cff7cb39419aa4ecf57aa246702ab34094d0462dc72ef5dcf36d0/pglast-7.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6299aed97acba1d383f8188dda8335c355781e14ceda065b1a48adc216b82ca9",
"md5": "1d8efa1f11aed0e340ceb2a4617ab0f6",
"sha256": "a8a524b893c6da7a07d7f819fec7e405b3661ca58b19557ab38cd0bde6ff004d"
},
"downloads": -1,
"filename": "pglast-7.10-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1d8efa1f11aed0e340ceb2a4617ab0f6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 5358916,
"upload_time": "2025-10-26T10:31:30",
"upload_time_iso_8601": "2025-10-26T10:31:30.972549Z",
"url": "https://files.pythonhosted.org/packages/62/99/aed97acba1d383f8188dda8335c355781e14ceda065b1a48adc216b82ca9/pglast-7.10-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d136f95de41e9781588c186861ee26d691898bb35f9e0cbe4b881aa1bcf147c0",
"md5": "5097282b66837d194c8681864a3cb7a9",
"sha256": "fd8eb1f0c4b09e80ffb85b23ffaaba3ef14b896486c05edd87bf6924cc49ea3b"
},
"downloads": -1,
"filename": "pglast-7.10-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "5097282b66837d194c8681864a3cb7a9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 5436294,
"upload_time": "2025-10-26T10:31:32",
"upload_time_iso_8601": "2025-10-26T10:31:32.729464Z",
"url": "https://files.pythonhosted.org/packages/d1/36/f95de41e9781588c186861ee26d691898bb35f9e0cbe4b881aa1bcf147c0/pglast-7.10-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90b8a247f33d8b8932ed6fa0b9f120ccfba49ca6c4e9c85e2448cf60ea0b8238",
"md5": "226cb7823b4d75df04b303463a0c0693",
"sha256": "70a4f0d53919b8e159bda1bee679ef22f461d3097ab622767cc2a15c08e3d5ea"
},
"downloads": -1,
"filename": "pglast-7.10-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "226cb7823b4d75df04b303463a0c0693",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 969264,
"upload_time": "2025-10-26T10:31:34",
"upload_time_iso_8601": "2025-10-26T10:31:34.367041Z",
"url": "https://files.pythonhosted.org/packages/90/b8/a247f33d8b8932ed6fa0b9f120ccfba49ca6c4e9c85e2448cf60ea0b8238/pglast-7.10-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e6b466e76bb2ca7ffc2c27176844d3830280e3f27bf100b648da4c340c9c5395",
"md5": "638e2f9275dbb22b8d069b2d11207fd3",
"sha256": "b29a66142eeb1c2756faa0cbe0a9d46246aea44ea6bfac9906ae5b1531219000"
},
"downloads": -1,
"filename": "pglast-7.10-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "638e2f9275dbb22b8d069b2d11207fd3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1036730,
"upload_time": "2025-10-26T10:31:35",
"upload_time_iso_8601": "2025-10-26T10:31:35.875109Z",
"url": "https://files.pythonhosted.org/packages/e6/b4/66e76bb2ca7ffc2c27176844d3830280e3f27bf100b648da4c340c9c5395/pglast-7.10-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "206094bf43d2015f293a046a353db7e0d1c035cfe4d62a37068a788667817f32",
"md5": "27cc1fbe086d36bcde10ae06598f0548",
"sha256": "13266748b72225d3a070fb122ce3b17ca32b086478bf65f91e826c1266af143f"
},
"downloads": -1,
"filename": "pglast-7.10-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "27cc1fbe086d36bcde10ae06598f0548",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1132737,
"upload_time": "2025-10-26T10:31:37",
"upload_time_iso_8601": "2025-10-26T10:31:37.416856Z",
"url": "https://files.pythonhosted.org/packages/20/60/94bf43d2015f293a046a353db7e0d1c035cfe4d62a37068a788667817f32/pglast-7.10-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9217c1eae5319880da28fff8213663271658b2ab6a4613125d0983970232675e",
"md5": "e86ed72c735263028d738d97d32d2220",
"sha256": "c8ee853fdd21cf33e3d1a5847f5da4b63a5314d892e340e75352a1af3c242151"
},
"downloads": -1,
"filename": "pglast-7.10-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e86ed72c735263028d738d97d32d2220",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1059589,
"upload_time": "2025-10-26T10:31:38",
"upload_time_iso_8601": "2025-10-26T10:31:38.938293Z",
"url": "https://files.pythonhosted.org/packages/92/17/c1eae5319880da28fff8213663271658b2ab6a4613125d0983970232675e/pglast-7.10-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4acfdfd6851ee26aca42dd342c2d6963beddff224efa395628c15bfded931fe0",
"md5": "4eb0479f727e2dc277e5da3ea456e707",
"sha256": "562aecd7a779ff26f4ca2569f91fa8e83abcbd7153156f285a77050d85d231ad"
},
"downloads": -1,
"filename": "pglast-7.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "4eb0479f727e2dc277e5da3ea456e707",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 5543523,
"upload_time": "2025-10-26T10:31:40",
"upload_time_iso_8601": "2025-10-26T10:31:40.553366Z",
"url": "https://files.pythonhosted.org/packages/4a/cf/dfd6851ee26aca42dd342c2d6963beddff224efa395628c15bfded931fe0/pglast-7.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0cb00a7904dae9ca0a57008329fdc78d20fb6c7db8e497e0ec7a4432a3a38ba8",
"md5": "d03ce46fbef38d84f2c9795ea83594e2",
"sha256": "429c9979f87f52ab19200ac10b23ca732c87516543fc55f5b897f03a4b33e91d"
},
"downloads": -1,
"filename": "pglast-7.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "d03ce46fbef38d84f2c9795ea83594e2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 5639037,
"upload_time": "2025-10-26T10:31:42",
"upload_time_iso_8601": "2025-10-26T10:31:42.251869Z",
"url": "https://files.pythonhosted.org/packages/0c/b0/0a7904dae9ca0a57008329fdc78d20fb6c7db8e497e0ec7a4432a3a38ba8/pglast-7.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "35a88235294c5570ffb3a753f397241d51a07578fc19b4cc7c8c870423bdfe0b",
"md5": "9512d2837ee6d69940f11cb0ac4c1122",
"sha256": "7e1a307a4a6ad43c31903365cde5f1ec8d4e3ab028d7de192f556b3eccef1594"
},
"downloads": -1,
"filename": "pglast-7.10-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "9512d2837ee6d69940f11cb0ac4c1122",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 5382354,
"upload_time": "2025-10-26T10:31:43",
"upload_time_iso_8601": "2025-10-26T10:31:43.640825Z",
"url": "https://files.pythonhosted.org/packages/35/a8/8235294c5570ffb3a753f397241d51a07578fc19b4cc7c8c870423bdfe0b/pglast-7.10-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06dfa8a2bcc322d8b730671b153049ffa929b800493b01fa48f3e5153785259e",
"md5": "d0133765b19c392e78c3f8adf9173bfa",
"sha256": "1812860acf3a9ac035c16e60f7d11bb667b8619dd4047e171c2531c254efb4ca"
},
"downloads": -1,
"filename": "pglast-7.10-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d0133765b19c392e78c3f8adf9173bfa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 5466850,
"upload_time": "2025-10-26T10:31:45",
"upload_time_iso_8601": "2025-10-26T10:31:45.096988Z",
"url": "https://files.pythonhosted.org/packages/06/df/a8a2bcc322d8b730671b153049ffa929b800493b01fa48f3e5153785259e/pglast-7.10-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0cb8da4c5b580b20e0d6307df407a47f1ffc5158323e9e9eb865283ddb18fac7",
"md5": "e296804c2987f49cf514c0c4fa7b9d57",
"sha256": "021c248368b975dd536f25e91f5b35f33084c9529b2840f6cfb12fcba90c6680"
},
"downloads": -1,
"filename": "pglast-7.10-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "e296804c2987f49cf514c0c4fa7b9d57",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 968517,
"upload_time": "2025-10-26T10:31:46",
"upload_time_iso_8601": "2025-10-26T10:31:46.728523Z",
"url": "https://files.pythonhosted.org/packages/0c/b8/da4c5b580b20e0d6307df407a47f1ffc5158323e9e9eb865283ddb18fac7/pglast-7.10-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "602eb15fd8b07cfd6158aa9934261c30bee12c095a86dd8b9dde3e45b44ad49e",
"md5": "9a77385ee1fbf0d69a5544e50a18eedb",
"sha256": "9671797522ba10ced7f73c7cda5faee6cc9f1d063abf32b4e63463f256dc0fe4"
},
"downloads": -1,
"filename": "pglast-7.10-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "9a77385ee1fbf0d69a5544e50a18eedb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 1039055,
"upload_time": "2025-10-26T10:31:48",
"upload_time_iso_8601": "2025-10-26T10:31:48.181244Z",
"url": "https://files.pythonhosted.org/packages/60/2e/b15fd8b07cfd6158aa9934261c30bee12c095a86dd8b9dde3e45b44ad49e/pglast-7.10-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b250366d4b23b4f5a037a219eac4f445e717465dd13480609cd689552a0454d",
"md5": "66cb269bd1f619bd80f8f67c64cba174",
"sha256": "0e240aaaa75a8eefb29dc4ac0eda239d9294da7f10fa8b8021d8f942ec6023bd"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "66cb269bd1f619bd80f8f67c64cba174",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 1133057,
"upload_time": "2025-10-26T10:31:49",
"upload_time_iso_8601": "2025-10-26T10:31:49.681754Z",
"url": "https://files.pythonhosted.org/packages/1b/25/0366d4b23b4f5a037a219eac4f445e717465dd13480609cd689552a0454d/pglast-7.10-cp314-cp314-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3837be0692cc842652cc0dd5c4fb936bffdd6aa0e781de0da3d7ffe9c53aa1aa",
"md5": "267fdf71bb33b854d4bd0c11178a5a77",
"sha256": "6a1b3e8a42e346f1265f78910fe84a1dbedd37d575d3b07f0b5a8b4cd1540088"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "267fdf71bb33b854d4bd0c11178a5a77",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 1061798,
"upload_time": "2025-10-26T10:31:51",
"upload_time_iso_8601": "2025-10-26T10:31:51.373208Z",
"url": "https://files.pythonhosted.org/packages/38/37/be0692cc842652cc0dd5c4fb936bffdd6aa0e781de0da3d7ffe9c53aa1aa/pglast-7.10-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d4691e8783a6f249b5b03cbc9f06f3c42f30f6978be9e76334c06519a046c1ed",
"md5": "d4b9feafdeb7f5e8e8662d06eefc2359",
"sha256": "da368072791c34dddf798f3be2839565f92bc2d8ac05ab2be94f1a7978b7e524"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "d4b9feafdeb7f5e8e8662d06eefc2359",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 5528992,
"upload_time": "2025-10-26T10:31:52",
"upload_time_iso_8601": "2025-10-26T10:31:52.638397Z",
"url": "https://files.pythonhosted.org/packages/d4/69/1e8783a6f249b5b03cbc9f06f3c42f30f6978be9e76334c06519a046c1ed/pglast-7.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "75df9eb5efc652056b251b64ddb7261f4ea0b2d22231b70fdb589f2892b05597",
"md5": "347646080e49f0742348e75e49aa486c",
"sha256": "356722ec7ff12f1d6dd7ef2f5bf7ae9d943935320b0d4e3587ab8b13d4420d39"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "347646080e49f0742348e75e49aa486c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 5602192,
"upload_time": "2025-10-26T10:31:54",
"upload_time_iso_8601": "2025-10-26T10:31:54.321749Z",
"url": "https://files.pythonhosted.org/packages/75/df/9eb5efc652056b251b64ddb7261f4ea0b2d22231b70fdb589f2892b05597/pglast-7.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "366a9bf1bc3eeb1cedeeda425f7f91164ac03fdb2b02dabb4396dd5364354342",
"md5": "7a9a0b4a6ba75a4bc17aa56b48c8a025",
"sha256": "83e3c0c9835b1b1b85efdafbd2f16eaf5057e6806cbb5831e9d3b38104229acb"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7a9a0b4a6ba75a4bc17aa56b48c8a025",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 5375833,
"upload_time": "2025-10-26T10:31:55",
"upload_time_iso_8601": "2025-10-26T10:31:55.819447Z",
"url": "https://files.pythonhosted.org/packages/36/6a/9bf1bc3eeb1cedeeda425f7f91164ac03fdb2b02dabb4396dd5364354342/pglast-7.10-cp314-cp314-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "17a2a75503ef92cfc32d528738a200d5033c23a957f4ba39a29a1a8ce628edb0",
"md5": "4745f983b70a8b03d96efea8cb622f2c",
"sha256": "fa8abc59660ec76637def99675fc46eeb4a4dfd1c26d3f930c1e469b0b711670"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "4745f983b70a8b03d96efea8cb622f2c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 5441063,
"upload_time": "2025-10-26T10:31:57",
"upload_time_iso_8601": "2025-10-26T10:31:57.158871Z",
"url": "https://files.pythonhosted.org/packages/17/a2/a75503ef92cfc32d528738a200d5033c23a957f4ba39a29a1a8ce628edb0/pglast-7.10-cp314-cp314-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c7c302912d81ab49fb35291a22ddfd3f3753613eabad85238f6d7d1858dcfe66",
"md5": "6fb066160ab96ac66c502eaa7739c37f",
"sha256": "d0ead3a4d2934675fc78405b97ebd37b7c2dace86cb6d3274138d5fbfdf75b5b"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314t-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "6fb066160ab96ac66c502eaa7739c37f",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 1194942,
"upload_time": "2025-10-26T10:32:02",
"upload_time_iso_8601": "2025-10-26T10:32:02.104371Z",
"url": "https://files.pythonhosted.org/packages/c7/c3/02912d81ab49fb35291a22ddfd3f3753613eabad85238f6d7d1858dcfe66/pglast-7.10-cp314-cp314t-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00ea2a2490362a3059c1204cf2cb7ecd0385c8da8702b59366d01d71734490cb",
"md5": "02bf7d609255b1f9440f760d68347ae5",
"sha256": "362032bcfe6994c7129e91b77c0621a382f0612c4ac80a4d414a04493985a74a"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "02bf7d609255b1f9440f760d68347ae5",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 1103911,
"upload_time": "2025-10-26T10:32:03",
"upload_time_iso_8601": "2025-10-26T10:32:03.339047Z",
"url": "https://files.pythonhosted.org/packages/00/ea/2a2490362a3059c1204cf2cb7ecd0385c8da8702b59366d01d71734490cb/pglast-7.10-cp314-cp314t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f77e5ae718bd54ac7f3e821f5f977eef01ae6fc2c10a1970daad2324dc9e28c",
"md5": "93c813265ee1409167379519de77f346",
"sha256": "5adcb61b303636b37b90c5c9112c5a88e774c1be302e1d060e661714acaa9340"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "93c813265ee1409167379519de77f346",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 5916844,
"upload_time": "2025-10-26T10:32:04",
"upload_time_iso_8601": "2025-10-26T10:32:04.684367Z",
"url": "https://files.pythonhosted.org/packages/0f/77/e5ae718bd54ac7f3e821f5f977eef01ae6fc2c10a1970daad2324dc9e28c/pglast-7.10-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e667690d4cb69f364cd4f5097322c9b8612feeba965208fc5be46e744e63958e",
"md5": "e6f8f5e963d821cd511ec7991c456734",
"sha256": "9787c0eb6e10370deaf7ed18a369729394137e61efec36ff37f8a8848aec1475"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "e6f8f5e963d821cd511ec7991c456734",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 5923046,
"upload_time": "2025-10-26T10:32:06",
"upload_time_iso_8601": "2025-10-26T10:32:06.420821Z",
"url": "https://files.pythonhosted.org/packages/e6/67/690d4cb69f364cd4f5097322c9b8612feeba965208fc5be46e744e63958e/pglast-7.10-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cfd7c86001f963bb549a73407ff074ebf0e3a0faee4e665118afbacec602191a",
"md5": "627e0b5df18bb427293aeb91790a80ad",
"sha256": "e2f69203b85445513584021acb69d68dd55771e5852b3b63a0640d8b8f65d579"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "627e0b5df18bb427293aeb91790a80ad",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 5684551,
"upload_time": "2025-10-26T10:32:08",
"upload_time_iso_8601": "2025-10-26T10:32:08.104630Z",
"url": "https://files.pythonhosted.org/packages/cf/d7/c86001f963bb549a73407ff074ebf0e3a0faee4e665118afbacec602191a/pglast-7.10-cp314-cp314t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5a691f0f10deb69d9db1f1e84a15ae50a144c1f1b1d9fd621971bf63807f850",
"md5": "beff562a497177c4abbc7d2e414a8180",
"sha256": "322600e313482db638c6464888718fb111a4d2d0af294afad2651e6b06612c5c"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "beff562a497177c4abbc7d2e414a8180",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 5720117,
"upload_time": "2025-10-26T10:32:10",
"upload_time_iso_8601": "2025-10-26T10:32:10.100083Z",
"url": "https://files.pythonhosted.org/packages/c5/a6/91f0f10deb69d9db1f1e84a15ae50a144c1f1b1d9fd621971bf63807f850/pglast-7.10-cp314-cp314t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d761b41b12d0e02a05277c03ff2dd29a95bb62557c9171a51665e4e3413d2ab1",
"md5": "c84bd2446652ea1930ceedb2081666ae",
"sha256": "517a2b7cfce5ed93faed81a421bb18628940b03959f3d9a47bd348ce34ff7e44"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314t-win32.whl",
"has_sig": false,
"md5_digest": "c84bd2446652ea1930ceedb2081666ae",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 1056472,
"upload_time": "2025-10-26T10:32:11",
"upload_time_iso_8601": "2025-10-26T10:32:11.788317Z",
"url": "https://files.pythonhosted.org/packages/d7/61/b41b12d0e02a05277c03ff2dd29a95bb62557c9171a51665e4e3413d2ab1/pglast-7.10-cp314-cp314t-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "faed912057182efcf9938af04e31bbfd2cb695dcdc7b6f899c14a856a1616b4d",
"md5": "15f97539f8a732e4a23cb8f97e61313b",
"sha256": "7fbf3b471af2b2a151c4592ec5d0ff767f5ff5405055b5a1bfbdd768a0b78b2a"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314t-win_amd64.whl",
"has_sig": false,
"md5_digest": "15f97539f8a732e4a23cb8f97e61313b",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 1147639,
"upload_time": "2025-10-26T10:32:13",
"upload_time_iso_8601": "2025-10-26T10:32:13.370076Z",
"url": "https://files.pythonhosted.org/packages/fa/ed/912057182efcf9938af04e31bbfd2cb695dcdc7b6f899c14a856a1616b4d/pglast-7.10-cp314-cp314t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "76c250eb78db27610d12393a9f9c2448fec5b26502fc4cc184f5cfa262d4f1e1",
"md5": "1ec3c512990abe57bcf83bc056735c94",
"sha256": "83adec94ce57ca33429a1c404de67ff6f332f590579fca5c38bf8a9ccfaf1f80"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314-win32.whl",
"has_sig": false,
"md5_digest": "1ec3c512990abe57bcf83bc056735c94",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 989164,
"upload_time": "2025-10-26T10:31:58",
"upload_time_iso_8601": "2025-10-26T10:31:58.923089Z",
"url": "https://files.pythonhosted.org/packages/76/c2/50eb78db27610d12393a9f9c2448fec5b26502fc4cc184f5cfa262d4f1e1/pglast-7.10-cp314-cp314-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8281cc3c2ce69a7a0c78334f5b3e2387ff94f548b640d69ed6b197dfa116727",
"md5": "30e878a5676f601e192e98dba64bb066",
"sha256": "46d5b08982e93d1bec40780765f2a2a4488632629acab74210b71c4d0b0d79c4"
},
"downloads": -1,
"filename": "pglast-7.10-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "30e878a5676f601e192e98dba64bb066",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 1067941,
"upload_time": "2025-10-26T10:32:00",
"upload_time_iso_8601": "2025-10-26T10:32:00.557204Z",
"url": "https://files.pythonhosted.org/packages/f8/28/1cc3c2ce69a7a0c78334f5b3e2387ff94f548b640d69ed6b197dfa116727/pglast-7.10-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0e8f1606758e64e814ed58b0f7101b6be1ffc1635ee3de4bfdc6f7dabd506db9",
"md5": "b445b84925b47a8d61f6171d9a495ca3",
"sha256": "0e4fdf1c0815108cf4424b50563c89f08e551fa6d2cd669c574c4e40de025249"
},
"downloads": -1,
"filename": "pglast-7.10-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b445b84925b47a8d61f6171d9a495ca3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1136458,
"upload_time": "2025-10-26T10:32:14",
"upload_time_iso_8601": "2025-10-26T10:32:14.618761Z",
"url": "https://files.pythonhosted.org/packages/0e/8f/1606758e64e814ed58b0f7101b6be1ffc1635ee3de4bfdc6f7dabd506db9/pglast-7.10-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8dbfca7cb1191db48b511b38263dfc3f5bbbc874dc0dddb955573ebf7f2da6c1",
"md5": "bb679153635eee990cfbaa9a1bfec273",
"sha256": "d903f74f0c4f95a0ba1e35cca24d73774af155f09e94367ebb249570dc8db68f"
},
"downloads": -1,
"filename": "pglast-7.10-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bb679153635eee990cfbaa9a1bfec273",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1056585,
"upload_time": "2025-10-26T10:32:16",
"upload_time_iso_8601": "2025-10-26T10:32:16.195858Z",
"url": "https://files.pythonhosted.org/packages/8d/bf/ca7cb1191db48b511b38263dfc3f5bbbc874dc0dddb955573ebf7f2da6c1/pglast-7.10-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f5c9baae97ffcd731b57aec8775b439822cb676071ddb98ce63eb0ec4983da7",
"md5": "2a5f3b089afd23361780f391119fbfe7",
"sha256": "8adfc5746fd72d73df449a99b00b36732f270cadad78b401d51bda95b9ec876d"
},
"downloads": -1,
"filename": "pglast-7.10-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "2a5f3b089afd23361780f391119fbfe7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 5444769,
"upload_time": "2025-10-26T10:32:17",
"upload_time_iso_8601": "2025-10-26T10:32:17.795889Z",
"url": "https://files.pythonhosted.org/packages/9f/5c/9baae97ffcd731b57aec8775b439822cb676071ddb98ce63eb0ec4983da7/pglast-7.10-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5a7fbc8cf199bb30776097848857b43d832b02c6513f7c9802d2662255d3b601",
"md5": "fb7ae2e3680074009e614ed3b59c4683",
"sha256": "c5a988e86f46f57a4a7a7eb16d62e9851dd0bb0c0083b3475ccadc7c3fccc75d"
},
"downloads": -1,
"filename": "pglast-7.10-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "fb7ae2e3680074009e614ed3b59c4683",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 5511154,
"upload_time": "2025-10-26T10:32:19",
"upload_time_iso_8601": "2025-10-26T10:32:19.180322Z",
"url": "https://files.pythonhosted.org/packages/5a/7f/bc8cf199bb30776097848857b43d832b02c6513f7c9802d2662255d3b601/pglast-7.10-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff6bf54cf48a1af762df75352d195aa70c15e812d8c972872cfb45c5b560879e",
"md5": "ce1b70985d2ba61c9004829db0ae30c8",
"sha256": "ff9e9b39683ca00eb594e1cb4b209628b22e4a6c2305eef31af777d30cc8e7b6"
},
"downloads": -1,
"filename": "pglast-7.10-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ce1b70985d2ba61c9004829db0ae30c8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 5309464,
"upload_time": "2025-10-26T10:32:20",
"upload_time_iso_8601": "2025-10-26T10:32:20.741097Z",
"url": "https://files.pythonhosted.org/packages/ff/6b/f54cf48a1af762df75352d195aa70c15e812d8c972872cfb45c5b560879e/pglast-7.10-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ea8172e504674e2c93108d6a3a03b6abf07885c874417d108f2f8a2faf6ddc01",
"md5": "bbfd0e7e8f601f3c3da3b0928654c9a8",
"sha256": "51a3165e926ace8dc21b1eb773e240a50f15f678bc0f8ad83ac0a8ef93df9565"
},
"downloads": -1,
"filename": "pglast-7.10-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "bbfd0e7e8f601f3c3da3b0928654c9a8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 5384055,
"upload_time": "2025-10-26T10:32:22",
"upload_time_iso_8601": "2025-10-26T10:32:22.784494Z",
"url": "https://files.pythonhosted.org/packages/ea/81/72e504674e2c93108d6a3a03b6abf07885c874417d108f2f8a2faf6ddc01/pglast-7.10-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f22293260fed75ae79039b8ec5272a13a74a8a0e507c12659c081ae64d67771",
"md5": "d4e3e495147e613d960355121cc1f12e",
"sha256": "3de7453869be8108f4fbb40fa3f11426855693910feec3f198a3854cd248bb8d"
},
"downloads": -1,
"filename": "pglast-7.10-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "d4e3e495147e613d960355121cc1f12e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 982599,
"upload_time": "2025-10-26T10:32:24",
"upload_time_iso_8601": "2025-10-26T10:32:24.180182Z",
"url": "https://files.pythonhosted.org/packages/1f/22/293260fed75ae79039b8ec5272a13a74a8a0e507c12659c081ae64d67771/pglast-7.10-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "81c54ae52295a223774ca1d520b06611818109f28d129bd074e85386bfcc4a4e",
"md5": "a655b96a95a7f0ec7cef85a8448abb8f",
"sha256": "41b15b34be61ccb9978d2be23d4d5a578a01f6c8a7e892cffb0b069996b0b9e2"
},
"downloads": -1,
"filename": "pglast-7.10-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "a655b96a95a7f0ec7cef85a8448abb8f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1057817,
"upload_time": "2025-10-26T10:32:25",
"upload_time_iso_8601": "2025-10-26T10:32:25.758532Z",
"url": "https://files.pythonhosted.org/packages/81/c5/4ae52295a223774ca1d520b06611818109f28d129bd074e85386bfcc4a4e/pglast-7.10-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db767caada7d15e36de2dd294b7f61848b0c802e81781e330e81cb5a0321f882",
"md5": "e674e7d4a54c0927e6167da3d3f412ee",
"sha256": "00725ab8fedd7343047e12bc6629941ca13957f4c2f2df3c5d2ae2da052796c9"
},
"downloads": -1,
"filename": "pglast-7.10.tar.gz",
"has_sig": false,
"md5_digest": "e674e7d4a54c0927e6167da3d3f412ee",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3381921,
"upload_time": "2025-10-26T10:08:20",
"upload_time_iso_8601": "2025-10-26T10:08:20.009437Z",
"url": "https://files.pythonhosted.org/packages/db/76/7caada7d15e36de2dd294b7f61848b0c802e81781e330e81cb5a0321f882/pglast-7.10.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-26 10:08:20",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "lelit",
"github_project": "pglast",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "pglast"
}