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.
python-aternos/README.md

95 lines
3.3 KiB
Markdown
Raw Permalink Normal View History

2021-09-17 10:21:51 +03:00
# Python Aternos API
An unofficial Aternos API written in Python.
It uses [aternos](https://aternos.org/)' private API and html parsing.
2021-09-17 10:21:51 +03:00
2022-05-13 17:05:23 +03:00
> Note:
Now, the main repository is located on [Codeberg](https://codeberg.org/DarkCat09/python-aternos) because GitHub bans its Russian users.
I'm still updating the GH repository together with the Codeberg one.
2022-04-02 07:54:47 +03:00
## Installing
2021-09-17 10:21:51 +03:00
```bash
pip install python-aternos
```
> Note for Windows users:
2022-04-01 16:03:19 +03:00
Install `lxml` package from [here](https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml) if you have a problem with it,
and then execute `pip install --no-deps python-aternos`
2021-09-17 10:21:51 +03:00
## Usage
To use Aternos API in your Python script, import it
and login with your username and password/MD5.
2021-09-17 10:21:51 +03:00
Then request the servers list using `list_servers()`.
2021-09-17 10:21:51 +03:00
You can start/stop your Aternos server now, calling `start()` or `stop()`.
2021-09-29 17:36:09 +03:00
Here is an example how to use the API:
2021-09-17 10:21:51 +03:00
```python
# Import
from python_aternos import Client
# Log in
aternos = Client.from_credentials('example', 'test123')
2021-09-29 17:36:09 +03:00
# ----OR----
aternos = Client.from_hashed('example', 'cc03e747a6afbbcbf8be7668acfebee5')
2022-05-13 17:05:23 +03:00
# ----OR----
aternos = Client.restore_session()
2021-09-17 10:21:51 +03:00
2022-01-01 11:07:04 +03:00
# Returns AternosServer list
servs = aternos.list_servers()
2021-09-29 17:36:09 +03:00
# Get the first server by the 0 index
myserv = servs[0]
2021-09-17 10:21:51 +03:00
# Start
myserv.start()
# Stop
myserv.stop()
2021-09-29 17:36:09 +03:00
2021-10-14 17:43:17 +03:00
# You can also find server by IP
2021-09-29 17:36:09 +03:00
testserv = None
for serv in servs:
2021-09-29 17:36:09 +03:00
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 10:21:51 +03:00
```
2022-05-13 17:05:23 +03:00
The documentation have not made yet. View examples and ask in the issues.
2022-05-13 17:05:23 +03:00
## [More examples](https://codeberg.org/DarkCat09/python-aternos/src/branch/main/examples) / [on GitHub](https://github.com/DarkCat09/python-aternos/tree/main/examples)
2021-09-17 10:21:51 +03:00
2021-11-01 17:04:19 +03:00
## Changelog
|Version|Description|
2022-01-01 11:07:04 +03:00
|:-----:|:-----------|
2021-11-01 17:04:19 +03:00
|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](https://github.com/lusm554).|
2022-04-28 08:29:20 +03:00
|v0.6/v1.0.0|Code refactoring, websockets API and session saving to prevent detecting automation access.|
2022-05-13 17:05:23 +03:00
|v1.0.x|Lots of bugfixes, changed versioning (SemVer).|
|v1.1.x|Switching to selenium with [a custom Chrome driver](https://github.com/ultrafunkamsterdam/undetected-chromedriver), writing API documentation.|
|v1.2.x|Full implementation of config and software API, unit tests and documentation is planned.|
|v1.3.x|Shared access API and Google Drive backups is planned.|
2021-11-01 17:04:19 +03:00
2021-09-17 10:21:51 +03:00
## License
[License Notice](NOTICE):
```
2021-10-29 15:36:55 +03:00
Copyright 2021 Chechkenev Andrey, lusm554
2021-09-17 10:21:51 +03:00
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.