Skip to main content

An unofficial Aternos API

Project description

Python Aternos API

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

Note for vim: if you have a problem like IndentationError: unindent does not match any outer indentation level, try out retab.

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 the servers field.
You can start/stop your Aternos server now, calling start() or stop().

There is an example how to use the Aternos API:

# Import
from python_aternos import Client

# Log in
#aternos = Client('USERNAME', password='PASSWORD')
aternos = Client('example', password='test123')
# ----OR----
#aternos = Client('USERNAME', md5='HASHED_PASSWORD')
aternos = Client('example', md5='cc03e747a6afbbcbf8be7668acfebee5')

# get_servers returns AternosServer list
atservers = aternos.servers

# If you have only one server, get it by 0 index
myserv = atservers[0]

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

# You can also find server by IP
testserv = None
for serv in atservers:
    if serv.address == 'test.aternos.org':
        testserv = serv
if testserv != None:
    # Prints a server softaware and its version
    # (for example, "Vanilla 1.12.2")
    print(testserv.software, testserv.version)
    # Starts server
    testserv.start()

You can find full documentation on the Project Wiki.

Changelog

Version Description
v0.1 The first release.
v0.2 Fixed import problem.
v0.3 Implemented files API, added typization.
v0.4 Implemented configuration API, some bugfixes.
v0.5 The API was updated corresponding to new Aternos security methods. Huge thanks to lusm554.
v0.6 Preventing detecting automated access is planned.
v0.7 Full implementation of config API and Google Drive backups is planned.
v0.8 Shared access API and permission management is planned.
v0.9.x A long debugging before stable release, SemVer version code.

License

License Notice:

Copyright 2021 Chechkenev Andrey, lusm554

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.

You don't need to attribute me, if you are just using this module installed from PIP.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-aternos-0.5.tar.gz (15.8 kB view hashes)

Uploaded Source

Built Distribution

python_aternos-0.5-py3-none-any.whl (17.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page