Metadata-Version: 2.1
Name: aradf
Version: 0.0.2
Summary: For converting pdf documents to txt files
Home-page: https://github.com/Mutlaq0/aradf
Author: Mutlaq Hijazi
Author-email: Mutlaq.086@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# PDF TO TEXT CONVERTER

convert **PDF** to TXT.

## Instructions

1. Install:

```
pip install aradf
```
2. Install Tesseract, include arabic training data in the installation from:
https://github.com/UB-Mannheim/tesseract/wiki

3. convert PDF to TXT:

```python
from aradf import convertor

# get the text, it also saves txt file to the same directory of the pdf
txt = convertor.pdf_to_txt('path/to/pdf_file')

```

