38fae60b8b
- the `src` folder is now `libmat2` - the `main.py` script is now `mat2.py`
18 lines
439 B
Python
18 lines
439 B
Python
from . import abstract
|
|
|
|
|
|
class HarmlessParser(abstract.AbstractParser):
|
|
""" This is the parser for filetypes that do not contain metadata. """
|
|
mimetypes = {'application/xml', 'text/plain'}
|
|
|
|
def __init__(self, filename: str):
|
|
super().__init__(filename)
|
|
self.filename = filename
|
|
self.output_filename = filename
|
|
|
|
def get_meta(self):
|
|
return dict()
|
|
|
|
def remove_all(self):
|
|
return True
|