Optical Character Recognition for Mon (mnw) text.
pip install monocr | uv add monocrfrom monocr import read_text, read_folder
# Read text from a single image
text = read_text("image.png")
print(text)
# Read all images in a folder
results = read_folder("images/")
for filename, text in results.items():
    print(f"{filename}: {text}")# Read single image
monocr read image.png
# Process folder
monocr batch images/ --output results.jsongit clone git@github.com:janakhpon/monocr.git
cd monocr
uv sync --dev
# Release workflow
uv version --bump patch
git add .
git commit -m "bump version"
git tag v0.1.5
git push origin main --tagsMIT - do whatever you want with it.