Metadata-Version: 2.4
Name: vibe-ocr
Version: 0.1.1
Summary: A decoupled OCR helper library using PaddleOCR (via remote server) and SQLite caching.
Project-URL: Homepage, https://github.com/example/ocrhelper
Project-URL: Bug Tracker, https://github.com/example/ocrhelper/issues
Author-email: Wei Wang <weiwang@example.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: imagehash
Requires-Dist: numpy
Requires-Dist: opencv-python
Requires-Dist: pillow
Requires-Dist: python-dotenv
Requires-Dist: requests
Description-Content-Type: text/markdown

# Vibe-OCR

A decoupled OCR helper library using PaddleOCR (via remote server) and SQLite caching.

## Installation

```bash
pip install vibe-ocr
```

## Usage

```python
from vibe_ocr import OCRHelper

ocr = OCRHelper()
result = ocr.find_text_in_image("screenshot.png", "Target Text")
print(result)
```

## Configuration

Set `OCR_SERVER_URL` environment variable to point to your PaddleOCR server. Default is `http://localhost:8080/ocr`.
