Kaquel, pronounced /kækyɛl/, is a toolset for parsing and rendering query languages for ElasticSearch.
As described in Parsing queries, you can parse Kibana Query Language (KQL), Apache Lucene and ElasticSearch queries, and render them using the ElasticSearch Query DSL. For example, with KQL:
from kaquel.kql import parse_kql
query = parse_kql('identity: { first_name: "John" }')
print(query.render())
The project is present at the following locations: