Extract text from the data set
(self, full_file_path: str)
| 153 | |
| 154 | @abc.abstractmethod |
| 155 | def extract_text(self, full_file_path: str): |
| 156 | """Extract text from the data set""" |
| 157 | raise NotImplementedError |
| 158 | |
| 159 | class PdfParserNew(FormalParserInterface): |
| 160 | """Extract text from a PDF.""" |
nothing calls this directly
no outgoing calls
no test coverage detected