This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
python-aternos/examples/websocket_status_example.py

71 lines
1.3 KiB
Python
Raw Permalink Normal View History

import asyncio
from getpass import getpass
from typing import Tuple, Dict, Any
from python_aternos import Client, Streams
# Request credentials
user = input('Username: ')
pswd = getpass('Password: ')
# Instantiate Client
atclient = Client()
aternos = atclient.account
# Enable debug logging
logs = input('Show detailed logs? (y/n) ').strip().lower() == 'y'
if logs:
atclient.debug = True
# Authenticate
atclient.login(user, pswd)
server = aternos.list_servers()[0]
socket = server.wss()
# Handler for server status
@socket.wssreceiver(Streams.status, ('Server 1',)) # type: ignore
async def state(
msg: Dict[Any, Any],
args: Tuple[str]) -> None:
2022-10-19 17:03:58 +03:00
# For debugging
print(args[0], 'received', len(msg), 'symbols')
2022-10-19 17:03:58 +03:00
# Write new info dictionary
server._info = msg
2022-10-19 17:03:58 +03:00
# Server 1 test is online
print(
args[0],
server.subdomain,
'is',
server.status
)
2022-10-19 17:03:58 +03:00
# Server 1 players: ['DarkCat09', 'someone']
print(
args[0],
'players:',
server.players_list
)
# Main function
async def main() -> None:
server.start()
await socket.connect()
await asyncio.create_task(loop())
# Keepalive
async def loop() -> None:
while True:
await asyncio.Future()
asyncio.run(main())