Skip to main content

An unofficial Aternos API

Project description

Python Aternos API

An unofficial Aternos API written in Python.
It uses aternos' private API and html parsing.

Installing

pip install python-aternos

Note for Windows users:
Install lxml package from here if you have a problem with it,
and then execute pip install --no-deps python-aternos

Usage

To use Aternos API in your Python script, import it and login with your username and password/MD5.

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

Here is an example how to use the API:

# Import
from python_aternos import Client

# Log in
aternos = Client.from_credentials('example', 'test123')
# ----OR----
aternos = Client.from_hashed('example', 'cc03e747a6afbbcbf8be7668acfebee5')

# Returns AternosServer list
servs = aternos.list_servers()

# Get the first server by the 0 index
myserv = servs[0]

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

# You can also find server by IP
testserv = None
for serv in servs:
    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.

More examples

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 Code refactoring, websockets API and session saving to prevent detecting automation access.
v0.7 Full implementation of config and software API, unit tests and documentation is planned.
v0.8 Shared access API and Google Drive backups 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 or wheel.

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.6.tar.gz (17.2 kB view details)

Uploaded Source

Built Distribution

python_aternos-0.6-py3-none-any.whl (19.5 kB view details)

Uploaded Python 3

File details

Details for the file python-aternos-0.6.tar.gz.

File metadata

  • Download URL: python-aternos-0.6.tar.gz
  • Upload date:
  • Size: 17.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for python-aternos-0.6.tar.gz
Algorithm Hash digest
SHA256 2c7c46e31bcd0b53b0229ae9cc400352080587733500df33fb781ce190e21f98
MD5 07312ce9a1a91b56358425c9067b4a53
BLAKE2b-256 5c312172ce983304fb99750e7f70c71e3fc2294523684f8fb87a3a50ff5cf9ec

See more details on using hashes here.

File details

Details for the file python_aternos-0.6-py3-none-any.whl.

File metadata

  • Download URL: python_aternos-0.6-py3-none-any.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for python_aternos-0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 49c0ec6879695d3ec510368e3102d14836b4ee698dda083da11ae35c1bb1afb2
MD5 95c3e8bf776450fa8614a583b217e6bf
BLAKE2b-256 796c998dc724001752537e3a73ad27ac387b71ea79537b5b2566d9559d3832e8

See more details on using hashes here.

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