Extract text from a PDF.
| 59 | |
| 60 | |
| 61 | class PdfParserNew: |
| 62 | """Extract text from a PDF.""" |
| 63 | def load_data_source(self, path: str, file_name: str) -> str: |
| 64 | """Overrides UpdatedInformalParserInterface.load_data_source()""" |
| 65 | pass |
| 66 | |
| 67 | def extract_text(self, full_file_path: str) -> dict: |
| 68 | """Overrides UpdatedInformalParserInterface.extract_text()""" |
| 69 | pass |
| 70 | |
| 71 | class EmlParserNew: |
| 72 | """Extract text from an email.""" |