Metadata-Version: 2.1
Name: hogql-parser
Version: 0.1.4
Summary: HogQL parser for internal PostHog use
Home-page: https://github.com/PostHog/posthog/tree/master/hogql_parser
Author: PostHog Inc.
Author-email: hey@posthog.com
Maintainer: PostHog Inc.
Maintainer-email: hey@posthog.com
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# HogQL Parser

## Developing locally on macOS

1. Install libraries:

    ```bash
    brew install boost antlr
    ```

1. Install `hogql_parser` from local sources:

    ```bash
    pip install ./hogql_parser
    ```

1. If you now run tests, the locally-built version of `hogql_parser` will be used:

    ```bash
    pytest posthog/hogql/
    ```
