Unofficial Aternos API written in Python
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.
Find a file
2021-09-28 15:52:27 +04:00
python_aternos First commit 2021-09-17 11:21:51 +04:00
LICENSE Initial commit 2021-09-17 09:21:17 +04:00
NOTICE First commit 2021-09-17 11:21:51 +04:00
pyproject.toml First commit 2021-09-17 11:21:51 +04:00
README.md Update README.md 2021-09-28 15:52:27 +04:00
requirements.txt First commit 2021-09-17 11:21:51 +04:00
setup.py First commit 2021-09-17 11:21:51 +04:00

Python Aternos API

An unofficial Aternos API written in Python.
It uses requests, cloudscraper and lxml to parse data from aternos.org.

Using

First you need to install the module:

pip install python-aternos

To use Aternos API in your Python script, import it and
login with your username and password (or MD5 hash of password).

Note: Logging in with Google or Facebook account is not supported yet.

Then get the servers list using get_servers method.
You can start/stop your Aternos server now, calling start() or stop().

# Import
from python_aternos import Client

# Log in
aternos = Client('USERNAME', password='PASSWORD')
# or
aternos = Client('USERNAME', md5='HASHED_PASSWORD')

# get_servers returns AternosServer list
atservers = aternos.get_servers()
# If you have only one server, get it by 0 index
myserv = atservers[0]

# Start
myserv.start()
# Stop
myserv.stop()

You can find full documentation on the Project Wiki.

License

License Notice:

Copyright 2021 Chechkenev Andrey

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.