Metadata-Version: 2.1
Name: pycntrparser
Version: 0.1.1
Summary: Parse CNTR transcriptions using ANTLR4
License: MIT
Author: Ivan Dustin Bilon
Author-email: ivan22.dust@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: antlr4-python3-runtime (>=4.13.1,<5.0.0)
Description-Content-Type: text/markdown

# pycntrparser

## Description

`pycntrparser` is a syntax checker designed for [CNTR transcriptions](https://github.com/Center-for-New-Testament-Restoration/transcriptions), utilizing ANTLR4 for parsing and validation.

## Installation

You can easily install `pycntrparser` using pip:

```bash
pip install pycntrparser
```

## Usage

To check for syntax errors in CNTR transcriptions, use the following command:

```bash
cntr-check "transcriptions/class 1" "transcriptions/class 2"
```

Replace the paths within quotes with the actual paths to the CNTR transcriptions you want to check. The tool will then validate the syntax and report any errors it finds.

## Upgrade

To upgrade to the latest version of `pycntrparser`, use the following command:

```bash
pip install --upgrade pycntrparser
```

This will ensure that you have the latest features and bug fixes.

