Esempio n. 1
0
    def get_hosts(self):
        config = ConfigManager()
        hosts = config.get_hosts()
        host_obj_list = []

        for host in hosts:
            host_obj_list.append(host_from_dict(host))
        
        return host_obj_list