def __init__(self, config): self.host = config.host self.port = config.port self.password = config.password self.distributor = config.distributor # Contact server to get shared secret for signing result = acs4.get_distributor_info(self.host, self.password, self.distributor) self.shared_secret = result["sharedSecret"] self.name = result["name"]
def __init__(self, config): self.host = config.host self.port = config.port self.password = config.password self.distributor = config.distributor # Contact server to get shared secret for signing result = acs4.get_distributor_info(self.host, self.password, self.distributor) self.shared_secret = result['sharedSecret'] self.name = result['name']