Mikhail Semenov
Results
1
comments of
Mikhail Semenov
code: ``` class Aternos: def __init__(self, username, hashed_password): aternos_client = Client() aternos_client.login_hashed(username=username, md5=hashed_password) self.at = aternos_client.account self.servers = aternos_client.account.servers def get_server_by_subdomain(self, subdomain): at = self.at servers = self.servers print(servers) for...