Metadata-Version: 2.1
Name: pyreadable
Version: 0.1.2
Summary: Convert DOCX to PDF and analyze text layout in PDFs.
Author: Archit Anant
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pymupdf>=1.25.5
Requires-Dist: PyPDF2>=3.0.1

# Pyreadable
A lightweight Python module to check weather a PDF file contains only machine readable text or not.

``` python
from pyreadable import is_machine_readable

# you can also provide margin_pts, dpi for the pdf. By default these parameters are set to 72.
print(is_machine_readable(file_path))
```
Sample Output:
``` bash
>>> (True,1.0)
```
