Metadata-Version: 2.4
Name: scalableOcrs
Version: 0.0.1
Summary: My Python package related to scaling ocr
Author-email: Prakhar Gandhi <gprakhar0@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: numpy<2
Requires-Dist: mpire
Requires-Dist: nvidia-ml-py
Requires-Dist: python-doctr[contrib,html,viz]

# scalableOcrs


Python package related to scaling searches

```python
import scalableOcrs 
from scalableOcrs import ocr
from pprint import pprint

if __name__=="__main__":
    N = 2
    pdf_path = [
        r"C:\Users\gprak\Downloads\Github Repos\Portfolio-Site\resume\resume.pdf"
    ]*N
    det_arch="linknet_resnet50"
    reco_arch="crnn_vgg16_bn"  
    progress_bar = True  
    texts = ocr.extract_text_from_pdfs(pdf_path,det_arch,reco_arch,progress_bar)
    pprint(texts)

```

