Skip to main content

A Python parser for Blacklab Corpus Query Language

Project description

A Python parser for Blacklab Corpus Query Language

Documentation codecov License

Installation

Not on PyPi yet so clone from Github first:

git clone https://github.com/BramVanroy/bcql_py.git --depth 1
cd bcql_py
uv sync

Notes

ANTLR to generate the needed tools

Blacklab uses ANTLR to generate the parser/lexer in Java based on a g4 file. We could similarly generate Python files. However, after trying it out, I find the files obfuscated and unclear and I'm not fond of requiring an extra external library. That is not a slight to ANTLR; I am simply not familiar with the tool - I am sure it is incredibly powerful and useful if you know how to use it. To keep a clearer view of this library I therefore strive to make a Python-native implementation that is true to spec. It's also just a fun project that I do not wish to "automate away" (though I might regret that later). At a later time (TODO) I might implement functionality to cross-validate our implementation with the generated ANTLR parser and lexer. For now I will be satisfied with high coverage testing. In case of doubt I have followed the Bcql.g4 file.

If you'd like to try the ANTLR route yourself, you can try it as follows:

  1. Install requirements (not included in our pyproject.toml file, you'll need to download these yourself!)
uv pip install requests antlr4-tools antlr4-python3-runtime
  1. Download the Black G4 definition from github. You can optionally specify a --branch or --tag, defaults to --branch dev.
uv run python scripts/get_bcql_g4.py
# Saved to parser/Bcql.g4
cd parser/
  1. Run ANTLR (you can update -v to the latest version if needed)
antlr4 -v 4.13.2 -Dlanguage=Python3 Bcql.g4

Design choices

Building a lexer is somewhat care-free with the exception of deciding which boundaries to use. As an example, I chose to tokenize the regex positive lookbehind (?<= as a single Token but I could have chosen to go deeper and re-use regular parens (, followed by a question mark (also used as quantifier) ?, followed by the single-token <=, also used as a mathematical operator. Such changes would make the "vocabulary" smaller but apart from that I did not see much benefit - though I am sure that there are more arguments to make both for and against a minimalist approach.

The parser, however, is a different beast entirely. be separated so we can re-use it and re-use <= as a single entity operator), building a parser

Pydantic models

Model rebuilding

In many of the models in models/*.py you will see that that we have to call model_rebuild after having set the discirminatory *ConstraintExpr union. This union is needed for typing - some of the constraint nodes have operands that can be any constraint nodes (union). Pydantic needs to know about the union after all the individual classes have been defined, so we call model_rebuild on all of them at the end of the file.

If we don't do this, we'll get a Pydantic error about the forward reference not being resolved when we try to create a NotConstraint or BoolConstraint

Acknowledegments

TODO

  • Update documentation and examples regarding the semantic validate option
  • Output AST as eBNF grammar?

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bcql_py-0.1.2.tar.gz (180.9 kB view details)

Uploaded Source

Built Distribution

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

bcql_py-0.1.2-py3-none-any.whl (55.6 kB view details)

Uploaded Python 3

File details

Details for the file bcql_py-0.1.2.tar.gz.

File metadata

  • Download URL: bcql_py-0.1.2.tar.gz
  • Upload date:
  • Size: 180.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bcql_py-0.1.2.tar.gz
Algorithm Hash digest
SHA256 25ee41a6af2e7ccd0bfafd3c62c0ab63300853b52eaf113ddef8c555855691cd
MD5 175fcc661173e973b1bd95db43690ab5
BLAKE2b-256 fb8301b6eb3174dc6e03e3befe087589fe867d2a7523dd5d5c06e5156881f5a9

See more details on using hashes here.

File details

Details for the file bcql_py-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: bcql_py-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 55.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bcql_py-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0409bcce98dba4a91fa9eac7e3016bb1bf5ab111edec2dcc6d6bdeb0afdccc1f
MD5 4368c2e050b79313891b031a4177dadd
BLAKE2b-256 9cdfc5ecfb955c592df4bdd0475a0a9f38df27db5c8c26d841975d40ae8be46c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page