import abc class DatabaseConnector(abc.ABC): @abc.abstractmethod def get_object(self, identifier): raise NotImplementedError