[fb1bbb]: / backend / src / parser_generic.py

Download this file

9 lines (7 with data), 174 Bytes

1
2
3
4
5
6
7
8
9
import abc
class MedicalDocParser(metaclass = abc.ABCMeta):
def __init__(self, text):
self.text = text
@abc.abstractmethod
def parse(self):
pass