summaryrefslogtreecommitdiff
path: root/src/parsers/abstract.py
blob: a9129cc25e4815dd728d7d38ca749ec899d7607a (plain)
1
2
3
4
5
6
7
8
9
10
class AbstractParser(object):
    def __init__(self, filename: str):
        self.filename = filename
        self.meta_list = set()

    def get_meta(self):
        raise NotImplementedError

    def remove_all(self):
        raise NotImplementedError