Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit fd6f7cb

Browse files
committed
Readme and setup.py changes
1 parent a5ef80d commit fd6f7cb

File tree

2 files changed

+25
-8
lines changed

2 files changed

+25
-8
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
An unofficial Aternos API written in Python.
33
It uses [aternos](https://aternos.org/)' private API and html parsing.
44

5+
> Note:
6+
Now, the main repository is located on [Codeberg](https://codeberg.org/DarkCat09/python-aternos) because GitHub bans its Russian users.
7+
I'm still updating the GH repository together with the Codeberg one.
8+
59
## Installing
610
```bash
711
pip install python-aternos
@@ -26,6 +30,8 @@ from python_aternos import Client
2630
aternos = Client.from_credentials('example', 'test123')
2731
# ----OR----
2832
aternos = Client.from_hashed('example', 'cc03e747a6afbbcbf8be7668acfebee5')
33+
# ----OR----
34+
aternos = Client.restore_session()
2935

3036
# Returns AternosServer list
3137
servs = aternos.list_servers()
@@ -50,9 +56,9 @@ if testserv != None:
5056
# Starts server
5157
testserv.start()
5258
```
53-
~~You can find full documentation on the [Project Wiki](https://github.com/DarkCat09/python-aternos/wiki).~~
59+
The documentation have not made yet. View examples and ask in the issues.
5460

55-
## [More examples](/examples)
61+
## [More examples](https://codeberg.org/DarkCat09/python-aternos/src/branch/main/examples) / [on GitHub](https://github.com/DarkCat09/python-aternos/tree/main/examples)
5662

5763
## Changelog
5864
|Version|Description|
@@ -63,9 +69,10 @@ if testserv != None:
6369
|v0.4|Implemented configuration API, some bugfixes.|
6470
|v0.5|The API was updated corresponding to new Aternos security methods. Huge thanks to [lusm554](https://github.com/lusm554).|
6571
|v0.6/v1.0.0|Code refactoring, websockets API and session saving to prevent detecting automation access.|
66-
|v1.0.1|Cloudflare bypassing fix, changed versioning (follows SemVer).|
67-
|v1.1.x|Full implementation of config and software API, unit tests and documentation is planned.|
68-
|v1.2.x|Shared access API and Google Drive backups is planned.|
72+
|v1.0.x|Lots of bugfixes, changed versioning (SemVer).|
73+
|v1.1.x|Switching to selenium with [a custom Chrome driver](https://github.com/ultrafunkamsterdam/undetected-chromedriver), writing API documentation.|
74+
|v1.2.x|Full implementation of config and software API, unit tests and documentation is planned.|
75+
|v1.3.x|Shared access API and Google Drive backups is planned.|
6976

7077
## License
7178
[License Notice](NOTICE):

setup.py

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,32 @@
55

66
setuptools.setup(
77
name='python-aternos',
8-
version='1.0.1',
8+
version='1.0.2',
99
author='Chechkenev Andrey (@DarkCat09)',
1010
author_email='[email protected]',
1111
description='An unofficial Aternos API',
1212
long_description=long_description,
1313
long_description_content_type='text/markdown',
1414
url='https://github.com/DarkCat09/python-aternos',
1515
project_urls={
16+
'Homepage': 'https://codeberg.org/DarkCat09/python-aternos',
17+
'GitHub': 'https://github.com/DarkCat09/python-aternos',
1618
'Bug Tracker': 'https://github.com/DarkCat09/python-aternos/issues',
17-
'Alternative Repo': 'https://codeberg.org/DarkCat09/python-aternos'
19+
'Bug Tracker 2': 'https://codeberg.org/DarkCat09/python-aternos/issues'
1820
},
1921
classifiers=[
2022
'Development Status :: 4 - Beta',
2123
'Programming Language :: Python :: 3',
24+
'Programming Language :: Python :: 3.7',
25+
'Programming Language :: Python :: 3.8',
26+
'Programming Language :: Python :: 3.9',
27+
'Programming Language :: Python :: 3.10',
2228
'License :: OSI Approved :: Apache Software License',
23-
'Operating System :: OS Independent'
29+
'Operating System :: OS Independent',
30+
'Operating System :: Microsoft :: Windows',
31+
'Operating System :: POSIX :: Linux',
32+
'Operating System :: MacOS',
33+
'Operating System :: Other OS'
2434
],
2535
install_requires=[
2636
'lxml>=4.8.0',

0 commit comments

Comments
 (0)