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](https://aternos.org/).
|
|
|
|
|
|
|
|
## Using
|
|
|
|
First you need to install the module:
|
|
|
|
```bash
|
|
|
|
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).
|
2021-09-28 15:52:27 +04:00
|
|
|
> Note: Logging in with Google or Facebook account is not supported yet.
|
2021-09-17 11:21:51 +04:00
|
|
|
|
|
|
|
Then get the servers list using get_servers method.
|
|
|
|
You can start/stop your Aternos server now, calling `start()` or `stop()`.
|
2021-09-29 18:36:09 +04:00
|
|
|
|
|
|
|
There is an example how to use the Aternos API:
|
2021-09-17 11:21:51 +04:00
|
|
|
```python
|
|
|
|
# Import
|
|
|
|
from python_aternos import Client
|
|
|
|
|
|
|
|
# Log in
|
2021-09-29 18:36:09 +04:00
|
|
|
#aternos = Client('USERNAME', password='PASSWORD')
|
|
|
|
aternos = Client('example', password='test123')
|
|
|
|
# ----OR----
|
|
|
|
#aternos = Client('USERNAME', md5='HASHED_PASSWORD')
|
|
|
|
aternos = Client('example', md5='cc03e747a6afbbcbf8be7668acfebee5')
|
2021-09-17 11:21:51 +04:00
|
|
|
|
|
|
|
# get_servers returns AternosServer list
|
2021-10-14 18:43:17 +04:00
|
|
|
atservers = aternos.servers
|
2021-09-29 18:36:09 +04:00
|
|
|
|
2021-09-17 11:21:51 +04:00
|
|
|
# If you have only one server, get it by 0 index
|
|
|
|
myserv = atservers[0]
|
|
|
|
|
|
|
|
# Start
|
|
|
|
myserv.start()
|
|
|
|
# Stop
|
|
|
|
myserv.stop()
|
2021-09-29 18:36:09 +04:00
|
|
|
|
2021-10-14 18:43:17 +04:00
|
|
|
# You can also find server by IP
|
2021-09-29 18:36:09 +04:00
|
|
|
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()
|
2021-09-17 11:21:51 +04:00
|
|
|
```
|
|
|
|
You can find full documentation on the [Project Wiki](https://github.com/DarkCat09/python-aternos/wiki).
|
|
|
|
|
|
|
|
## License
|
|
|
|
[License Notice](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.
|
|
|
|
```
|
2021-10-04 13:24:36 +04:00
|
|
|
You **don't** need to attribute me, if you are just using this module installed from PIP.
|