Skip to content

grihabor/trino-query-parser

Repository files navigation

trino-query-parser

PyPI PyPI - Python Version

The package provides a parser for trino queries.

Install

To install the package run:

pip install trino-query-parser

Example

>>> from trino_query_parser import parse_statement
>>> parse_statement('select * from x.y')
[['SELECT', '*', 'FROM', ['X', '.', 'Y']], '<EOF>']

Details

trino-query-parser uses trino antlr4 grammar to generate python parser code.

If you care about specific version of trino, install the corresponding version of trino-query-parser.

For example, for trino-405 run:

pip install trino-query-parser~=0.405.0

If there is no such version, feel free to open an issue.

Warning

Be careful, API is not stable, it might change in new versions

Development

To generate antlr4 parser code run:

make generate-code

To install development dependencies run:

pip install -e .[test]