├── .gitignore ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── aternos.har ├── aternos_ws.txt ├── check.sh ├── docs ├── howto │ ├── auth.md │ ├── config.md │ ├── discord.md │ ├── files.md │ ├── players.md │ ├── server.md │ └── websocket.md ├── index.md └── reference │ ├── atclient.md │ ├── atconf.md │ ├── atconnect.md │ ├── aterrors.md │ ├── atfile.md │ ├── atfm.md │ ├── atjsparse.md │ ├── atplayers.md │ ├── atserver.md │ └── atwss.md ├── examples ├── console_example.py ├── files_example.py ├── info_example.py ├── start_example.py ├── websocket_args_example.py ├── websocket_example.py └── websocket_status_example.py ├── logo ├── aternos_400.png ├── aternos_800.png ├── square_400.png └── square_800.png ├── mkdocs.yml ├── pylintrc ├── pyproject.toml ├── python_aternos ├── __init__.py ├── ataccount.py ├── atclient.py ├── atconf.py ├── atconnect.py ├── aterrors.py ├── atfile.py ├── atfm.py ├── atjsparse.py ├── atlog.py ├── atmd5.py ├── atplayers.py ├── atserver.py ├── atwss.py └── data │ ├── package-lock.json │ ├── package.json │ └── server.js ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── files.py ├── js_samples.py ├── mock.py ├── requirements.txt ├── samples ├── html │ ├── aternos_config │ ├── aternos_files_root │ ├── aternos_go │ ├── aternos_players │ ├── aternos_server1 │ └── aternos_servers ├── token_input.txt └── token_output.txt ├── test_http.py ├── test_js2py.py ├── test_jsnode.py └── test_login.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/README.md -------------------------------------------------------------------------------- /aternos.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/aternos.har -------------------------------------------------------------------------------- /aternos_ws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/aternos_ws.txt -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/check.sh -------------------------------------------------------------------------------- /docs/howto/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/howto/auth.md -------------------------------------------------------------------------------- /docs/howto/config.md: -------------------------------------------------------------------------------- 1 | ## Coming soon 2 | -------------------------------------------------------------------------------- /docs/howto/discord.md: -------------------------------------------------------------------------------- 1 | ## Coming soon 2 | -------------------------------------------------------------------------------- /docs/howto/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/howto/files.md -------------------------------------------------------------------------------- /docs/howto/players.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/howto/players.md -------------------------------------------------------------------------------- /docs/howto/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/howto/server.md -------------------------------------------------------------------------------- /docs/howto/websocket.md: -------------------------------------------------------------------------------- 1 | ## Coming soon 2 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/reference/atclient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/reference/atclient.md -------------------------------------------------------------------------------- /docs/reference/atconf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/reference/atconf.md -------------------------------------------------------------------------------- /docs/reference/atconnect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/reference/atconnect.md -------------------------------------------------------------------------------- /docs/reference/aterrors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/reference/aterrors.md -------------------------------------------------------------------------------- /docs/reference/atfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/reference/atfile.md -------------------------------------------------------------------------------- /docs/reference/atfm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/reference/atfm.md -------------------------------------------------------------------------------- /docs/reference/atjsparse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/reference/atjsparse.md -------------------------------------------------------------------------------- /docs/reference/atplayers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/reference/atplayers.md -------------------------------------------------------------------------------- /docs/reference/atserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/reference/atserver.md -------------------------------------------------------------------------------- /docs/reference/atwss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/docs/reference/atwss.md -------------------------------------------------------------------------------- /examples/console_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/examples/console_example.py -------------------------------------------------------------------------------- /examples/files_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/examples/files_example.py -------------------------------------------------------------------------------- /examples/info_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/examples/info_example.py -------------------------------------------------------------------------------- /examples/start_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/examples/start_example.py -------------------------------------------------------------------------------- /examples/websocket_args_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/examples/websocket_args_example.py -------------------------------------------------------------------------------- /examples/websocket_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/examples/websocket_example.py -------------------------------------------------------------------------------- /examples/websocket_status_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/examples/websocket_status_example.py -------------------------------------------------------------------------------- /logo/aternos_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/logo/aternos_400.png -------------------------------------------------------------------------------- /logo/aternos_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/logo/aternos_800.png -------------------------------------------------------------------------------- /logo/square_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/logo/square_400.png -------------------------------------------------------------------------------- /logo/square_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/logo/square_800.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python_aternos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/__init__.py -------------------------------------------------------------------------------- /python_aternos/ataccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/ataccount.py -------------------------------------------------------------------------------- /python_aternos/atclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/atclient.py -------------------------------------------------------------------------------- /python_aternos/atconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/atconf.py -------------------------------------------------------------------------------- /python_aternos/atconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/atconnect.py -------------------------------------------------------------------------------- /python_aternos/aterrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/aterrors.py -------------------------------------------------------------------------------- /python_aternos/atfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/atfile.py -------------------------------------------------------------------------------- /python_aternos/atfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/atfm.py -------------------------------------------------------------------------------- /python_aternos/atjsparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/atjsparse.py -------------------------------------------------------------------------------- /python_aternos/atlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/atlog.py -------------------------------------------------------------------------------- /python_aternos/atmd5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/atmd5.py -------------------------------------------------------------------------------- /python_aternos/atplayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/atplayers.py -------------------------------------------------------------------------------- /python_aternos/atserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/atserver.py -------------------------------------------------------------------------------- /python_aternos/atwss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/atwss.py -------------------------------------------------------------------------------- /python_aternos/data/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/data/package-lock.json -------------------------------------------------------------------------------- /python_aternos/data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/data/package.json -------------------------------------------------------------------------------- /python_aternos/data/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/python_aternos/data/server.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/files.py -------------------------------------------------------------------------------- /tests/js_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/js_samples.py -------------------------------------------------------------------------------- /tests/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/mock.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | requests-mock>=1.10.0 2 | -------------------------------------------------------------------------------- /tests/samples/html/aternos_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/samples/html/aternos_config -------------------------------------------------------------------------------- /tests/samples/html/aternos_files_root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/samples/html/aternos_files_root -------------------------------------------------------------------------------- /tests/samples/html/aternos_go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/samples/html/aternos_go -------------------------------------------------------------------------------- /tests/samples/html/aternos_players: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/samples/html/aternos_players -------------------------------------------------------------------------------- /tests/samples/html/aternos_server1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/samples/html/aternos_server1 -------------------------------------------------------------------------------- /tests/samples/html/aternos_servers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/samples/html/aternos_servers -------------------------------------------------------------------------------- /tests/samples/token_input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/samples/token_input.txt -------------------------------------------------------------------------------- /tests/samples/token_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/samples/token_output.txt -------------------------------------------------------------------------------- /tests/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/test_http.py -------------------------------------------------------------------------------- /tests/test_js2py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/test_js2py.py -------------------------------------------------------------------------------- /tests/test_jsnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/test_jsnode.py -------------------------------------------------------------------------------- /tests/test_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkCat09/python-aternos/HEAD/tests/test_login.py --------------------------------------------------------------------------------