Metadata-Version: 2.4
Name: amharic-corrector
Version: 1.0.3
Summary: High-performance Amharic phonetic query corrector
Author: Amharic Computing Team
License: MIT
Project-URL: Homepage, https://github.com/your-username/amharic-corrector
Project-URL: Bug Tracker, https://github.com/your-username/amharic-corrector/issues
Keywords: amharic,phonetic,spell-checker,geez,nlp
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Intended Audience :: Developers
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: pygtrie>=2.5.0
Requires-Dist: rapidfuzz>=3.0.0

# Amharic Corrector

High-performance phonetic query correction library for Amharic.

## Changelog
### 1.0.2
- Added instance-level caching to `AmharicQueryCorrector` to prevent shared state when multiple instances are used with different corpuses.
- Minor performance improvements in candidate lookup.

## Installation
```bash
pip install .
```

## Usage
```python
from amharic_corrector import AmharicQueryCorrector
c = AmharicQueryCorrector("path/to/corpus.json")
print(c.correct_phrase("mekanitu"))
```

## CLI
```bash
amharic-correct "Kuratie" --model path/to/corpus.json
```
