UnisKB/apps/common/handle/base_parse_table_handle.py

23 lines
445 B
Python
Raw Normal View History

# coding=utf-8
"""
@project: maxkb
@Author
@file base_parse_qa_handle.py
@date2024/5/21 14:56
@desc:
"""
from abc import ABC, abstractmethod
class BaseParseTableHandle(ABC):
@abstractmethod
def support(self, file, get_buffer):
pass
@abstractmethod
def handle(self, file, get_buffer,save_image):
pass
@abstractmethod
def get_content(self, file, save_image):
pass