[AUR-432] Add layout-aware table parsing PDF reader (#27)

* add OCRReader, MathPixReader and ExcelReader

* update test case for ocr reader

* reformat

* minor fix
This commit is contained in:
Tuan Anh Nguyen Dang (Tadashi_Cin)
2023-09-26 15:52:44 +07:00
committed by GitHub
parent 6207f4332a
commit 6c3d614973
12 changed files with 888 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
from .base import AutoReader
from .excel_loader import PandasExcelReader
from .mathpix_loader import MathpixPDFReader
from .ocr_loader import OCRReader
__all__ = ["AutoReader"]
__all__ = ["AutoReader", "PandasExcelReader", "MathpixPDFReader", "OCRReader"]