class Provider(): def __init__(self, name, config, routes=[]): self.name = name self.config = config self.routes=routes self.loadConfig() def loadConfig(self): for (n, v) in self.config: if n == "typ": self.typ = v