Download this file
1 2 3 4 5 6 7 8 9
class BaseImportUnit(object): def __init__(self, options): self.options = options def extract(self): raise NotImplementedError('subclass must override this method') def load(self): raise NotImplementedError('subclass must override this method')