You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
220 B

  1. from abc import abstractproperty
  2. class BaseParser(object):
  3. @abstractproperty
  4. def metadata(self):
  5. raise NotImplementedError
  6. @abstractproperty
  7. def driver(self):
  8. raise NotImplementedError