Metadata-Version: 2.4
Name: Wviz
Version: 0.1.1
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: opencv-python<5.0.0,>=4.11.0
Requires-Dist: numpy<3.0.0,>=2.0.2
Requires-Dist: pandas<3.0.0,>=2.2.2
Requires-Dist: pytesseract<0.4.0,>=0.3.13
Requires-Dist: easyocr<2.0.0,>=1.7.0
Dynamic: requires-python

# Wviz - Computer Vision and OCR Toolkit

![Python Version](https://img.shields.io/badge/python-3.8%2B-blue)
![License](https://img.shields.io/badge/license-MIT-green)

A powerful package for computer vision and OCR tasks, built on OpenCV, Tesseract, and EasyOCR.

## Features

- 📷 Image processing with OpenCV
- 🔍 Text extraction using Tesseract OCR
- 🚀 EasyOCR integration for multilingual support
- 🛠️ Unified API for common computer vision tasks

## Installation

### Prerequisites

- Python 3.8+
- Tesseract OCR (v5.0+ recommended)

### 1. Install Python Package

```bash
pip install Wviz

```

## Usage

```python
import wviz

image_path = "path/to/your/image.png"
df = wviz.Img2XL(image_path, use_first_model=True)
```
