15 lines
323 B
Python
15 lines
323 B
Python
from getpass import getpass
|
|
from python_aternos import Client, atwss
|
|
|
|
user = input('Username: ')
|
|
pswd = getpass('Password: ')
|
|
aternos = Client.from_credentials(user, pswd)
|
|
|
|
s = aternos.list_servers()[0]
|
|
socket = s.wss()
|
|
|
|
@socket.wssreceiver(atwss.Streams.console)
|
|
def console(msg):
|
|
print('Received: ' + msg)
|
|
|
|
s.start()
|