from .base import Base class System(Base): @classmethod def ext(self): return 'stm' def path(self): sector, symbol = self.symbol.split('-') return f'atlas/{sector}/{symbol}.{self.ext()}'