2022-07-01 14:28:39 +04:00
|
|
|
"""
|
|
|
|
Unofficial Aternos API module written in Python.
|
|
|
|
It uses Aternos' private API and html parsing"""
|
|
|
|
|
2022-06-16 15:40:10 +04:00
|
|
|
from .atclient import Client
|
2022-03-17 10:24:58 +04:00
|
|
|
from .atserver import AternosServer
|
2022-06-16 15:40:10 +04:00
|
|
|
from .atserver import Edition
|
|
|
|
from .atserver import Status
|
2022-03-17 10:24:58 +04:00
|
|
|
from .atconnect import AternosConnect
|
2022-06-16 15:40:10 +04:00
|
|
|
from .atplayers import PlayersList
|
|
|
|
from .atplayers import Lists
|
|
|
|
from .atconf import AternosConfig
|
|
|
|
from .atconf import ServerOpts
|
|
|
|
from .atconf import WorldOpts
|
|
|
|
from .atconf import WorldRules
|
|
|
|
from .atconf import Gamemode
|
|
|
|
from .atconf import Difficulty
|
|
|
|
from .atwss import AternosWss
|
|
|
|
from .atwss import Streams
|
|
|
|
from .atfm import FileManager
|
|
|
|
from .atfile import AternosFile
|
|
|
|
from .atfile import FileType
|
|
|
|
from .aterrors import AternosError
|
|
|
|
from .aterrors import CloudflareError
|
2022-03-18 18:38:36 +04:00
|
|
|
from .aterrors import CredentialsError
|
2022-06-16 15:40:10 +04:00
|
|
|
from .aterrors import TokenError
|
|
|
|
from .aterrors import ServerError
|
2022-07-01 10:31:23 +04:00
|
|
|
from .aterrors import ServerStartError
|
2022-06-16 15:40:10 +04:00
|
|
|
from .aterrors import FileError
|
2022-07-01 14:28:39 +04:00
|
|
|
from .aterrors import AternosPermissionError
|
2022-12-25 12:49:27 +04:00
|
|
|
from .atjsparse import Js2PyInterpreter
|
|
|
|
from .atjsparse import NodeInterpreter
|
2022-06-16 15:40:10 +04:00
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
2022-06-23 15:13:56 +04:00
|
|
|
'atclient', 'atserver', 'atconnect',
|
|
|
|
'atplayers', 'atconf', 'atwss',
|
|
|
|
'atfm', 'atfile',
|
|
|
|
'aterrors', 'atjsparse',
|
2022-06-16 15:40:10 +04:00
|
|
|
|
2022-06-23 15:13:56 +04:00
|
|
|
'Client', 'AternosServer', 'AternosConnect',
|
|
|
|
'PlayersList', 'AternosConfig', 'AternosWss',
|
|
|
|
'FileManager', 'AternosFile', 'AternosError',
|
|
|
|
'CloudflareError', 'CredentialsError', 'TokenError',
|
2022-07-01 10:31:23 +04:00
|
|
|
'ServerError', 'ServerStartError', 'FileError',
|
2022-12-25 12:49:27 +04:00
|
|
|
'AternosPermissionError',
|
|
|
|
'Js2PyInterpreter', 'NodeInterpreter',
|
2022-06-23 15:13:56 +04:00
|
|
|
|
|
|
|
'Edition', 'Status', 'Lists',
|
|
|
|
'ServerOpts', 'WorldOpts', 'WorldRules',
|
|
|
|
'Gamemode', 'Difficulty', 'Streams', 'FileType',
|
2022-06-16 15:40:10 +04:00
|
|
|
]
|