You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 15, 2024. It is now read-only.
I am still getting the Detected a Cloudflare version 2 Captcha challenge, This feature is not available in the opensource (free) version. in my code, even when I am trying to use the captcha parameter.
pythos-aternos version is 2.1.3
python version is 3.9.15
here is my code
frompython_aternosimportClientclassAternos:
def__init__(self, user, password):
self.user=userself.password=passwordself.login_status=Falsedeflogin(self):
try:
self.at_client=Client.from_credentials(self.user, self.password, captcha={
'provider': 'capmonster',
'clientKey': '<MY_CAPMONSTER_KEY>'
})
self.login_status=TruereturnTrueexceptExceptionase:
return [False, e]
defserver_list(self):
ifnotself.login_status:
return'Bot is not logged in Aternos, please use /login first'returnself.at_client.list_servers()
TEST_USER='<MY_ATERNOS_USERNAME>'TEST_PASSWORD='<MY_ATERNOS_PASSWORD>'if__name__=='__main__':
at=Aternos(TEST_USER, TEST_PASSWORD)
print(at.login())