Updated Readme

This commit is contained in:
DarkCat09 2022-12-26 14:59:12 +04:00
parent 92e570841c
commit 45b4a10e87
2 changed files with 6 additions and 6 deletions

View file

@ -129,8 +129,8 @@ if testserv is not None:
|v1.1.x|Documentation, unit tests, pylint, bugfixes, changes in atwss.| |v1.1.x|Documentation, unit tests, pylint, bugfixes, changes in atwss.|
|**v1.1.2/v2.0.0**|Solution for [#25](https://github.com/DarkCat09/python-aternos/issues/25) (Cloudflare bypassing), bugfixes in JS parser.| |**v1.1.2/v2.0.0**|Solution for [#25](https://github.com/DarkCat09/python-aternos/issues/25) (Cloudflare bypassing), bugfixes in JS parser.|
|v2.0.x|Documentation, automatically saving/restoring session, improvements in Files API.| |v2.0.x|Documentation, automatically saving/restoring session, improvements in Files API.|
|v2.1.x|Fixes in websockets API, atconnect. Supported captcha solving services (view [#52](https://github.com/DarkCat09/python-aternos/issues/52)).| |v2.1.x|Fixes in websockets API, atconnect (including cookie refreshing fix). Supported captcha solving services (view [#52](https://github.com/DarkCat09/python-aternos/issues/52)).|
|**v2.2.x**|Using Node.js as a JS interpreter if it's installed, fixed cookie refreshing.| |**v2.2.x**|Node.JS interpreter support.|
|v3.0.x|Full implementation of config and software API.| |v3.0.x|Full implementation of config and software API.|
|v3.1.x|Shared access API and Google Drive backups.| |v3.1.x|Shared access API and Google Drive backups.|

View file

@ -83,7 +83,7 @@ aternos = Client.from_credentials('example', 'test123')
# ----OR---- # ----OR----
aternos = Client.from_hashed('example', 'cc03e747a6afbbcbf8be7668acfebee5') aternos = Client.from_hashed('example', 'cc03e747a6afbbcbf8be7668acfebee5')
# ----OR---- # ----OR----
aternos = Client.restore_session() aternos = Client.from_session('ATERNOS_SESSION cookie')
# Returns AternosServer list # Returns AternosServer list
servs = aternos.list_servers() servs = aternos.list_servers()
@ -103,7 +103,7 @@ for serv in servs:
testserv = serv testserv = serv
if testserv is not None: if testserv is not None:
# Prints a server softaware and its version # Prints the server software and its version
# (for example, "Vanilla 1.12.2") # (for example, "Vanilla 1.12.2")
print(testserv.software, testserv.version) print(testserv.software, testserv.version)
# Starts server # Starts server
@ -129,8 +129,8 @@ if testserv is not None:
|v1.1.x|Documentation, unit tests, pylint, bugfixes, changes in atwss.| |v1.1.x|Documentation, unit tests, pylint, bugfixes, changes in atwss.|
|**v1.1.2/v2.0.0**|Solution for [#25](https://github.com/DarkCat09/python-aternos/issues/25) (Cloudflare bypassing), bugfixes in JS parser.| |**v1.1.2/v2.0.0**|Solution for [#25](https://github.com/DarkCat09/python-aternos/issues/25) (Cloudflare bypassing), bugfixes in JS parser.|
|v2.0.x|Documentation, automatically saving/restoring session, improvements in Files API.| |v2.0.x|Documentation, automatically saving/restoring session, improvements in Files API.|
|v2.1.x|Fixes in websockets API, atconnect. Supported captcha solving services (view [#52](https://github.com/DarkCat09/python-aternos/issues/52)).| |v2.1.x|Fixes in websockets API, atconnect (including cookie refreshing fix). Supported captcha solving services (view [#52](https://github.com/DarkCat09/python-aternos/issues/52)).|
|**v2.2.x**|Using Node.js as a JS interpreter if it's installed.| |**v2.2.x**|Node.JS interpreter support.|
|v3.0.x|Full implementation of config and software API.| |v3.0.x|Full implementation of config and software API.|
|v3.1.x|Shared access API and Google Drive backups.| |v3.1.x|Shared access API and Google Drive backups.|