Metadata-Version: 2.1
Name: openbharatocr
Version: 0.0.2
Summary: openbharatocr is an opensource python library for ocr Indian government documents 
Home-page: https://github.com/essentiasoftserv/openbharatocr
Author: essentiasoftserv
Author-email: kunal@essentia.dev
License: Apache
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pytesseract==0.3.10

# bharatocr
[![Build status](https://github.com/essentiasoftserv/openbharatocr/actions/workflows/main.yml/badge.svg)](https://github.com/essentiasoftserv/openbharatocr/actions/workflows/main.yml)

bharatocr is an opensource python library for ocr Indian government documents 

The features of this package:
- It will support mostly all the Indian government documents.  


#### Installation


```
pip install openbharatocr
```


**Pan Card**

In this function, Pan card image will pass as path in the function and the output will be in dict.

```
import openbharatocr 
dict_output = openbharatocr.pan(image_path)
```


**Aadhaar Card**

In this function, Aadhaar Card front and back image will pass as path in the function and the output will be in dict.

```
import openbharatocr 
dict_output = openbharatocr.front_aadhaar(image_path)
dict_output = openbharatocr.back_aadhaar(image_path)
```
