text_extractor.py 245 B

12345678910
  1. from abc import ABC, abstractmethod
  2. class TextExtractor(ABC):
  3. def __init__(self, extraction_tool):
  4. self.extraction_tool = extraction_tool
  5. @abstractmethod
  6. def extract(self, input_path, output_path, config={}):
  7. pass