Python API wrapper for exaroton
Project description
exaroton
An unoffial Python Wrapper for the exaroton API
Simply get an API Token from your Account and you're good to go.
Installation
exaroton requires Python 3.7 or newer.
python3 -m pip install -U exaroton
A Virtual Environment is recommended to not mess with system installs.
This module has minimal requirements (requests), but you can never be safe enough.
python3 -m venv venv
source ./venv/bin/activate
pip install exaroton
Example Usage
Currently all methods are (in my opinion) well documented and properly typehinted. If you see something wrong, don't hestitate to create an Issue.
I may create a full list of all available methods, or even utilize readthedocs.org
# Import exaroton and set our token
>>> from exaroton import Exaroton
>>> exa = Exaroton("API_TOKEN")
# Get information about the authenticated account
>>> exa.get_account()
{
"_": "Account",
"name": "Username",
"email": "email@example.org",
"verified": true,
"credits": 420.69
}
# Get a list of our servers
>>> exa.get_servers()
[
{
"_": "Server",
"id": "7ZxuNK5RX879BFaH", # Thanks, random.org!
...
},
{
"_": "Server",
"id": "Kf48Td5iVlr8Xu24", # Thanks, random.org!
...
}
]
# Upload logs to https://mclo.gs
>>> exa.upload_logs("7ZxuNK5RX879BFaH")
{
"_": "Logs",
"id": "N5FR4K2", # Thanks, random.org!
"url": "https://mclo.gs/N5FR4K2",
"raw": "https://api.mclo.gs/1/raw/N5FR4K2"
}
# Print logs (this'll most likely spam your output lol)
>>> exa.get_server_logs("7ZxuNK5RX879BFaH")
'one extremely long string with lines seperated by the newline escape character \n'
# It'll print each line seperately when used with `print()`!
All you need to make calls to the API is the Authentication Token you can get from your account page. If you make server-specific calls, you'll need that servers ID, too.
The boring stuff
Licensed under MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file exaroton-0.0.7.tar.gz.
File metadata
- Download URL: exaroton-0.0.7.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.5 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1bb7de500f2c76f77abaf9ea3118d2b9c591e6bf3fc82c11d009e47af2a2a674
|
|
| MD5 |
715a27636c90245b5d748a461602c49e
|
|
| BLAKE2b-256 |
bdd818791f5f2d62847c0a374431100e8aa442968e9bb827a5d0a8b3d01dc975
|
File details
Details for the file exaroton-0.0.7-py3-none-any.whl.
File metadata
- Download URL: exaroton-0.0.7-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.5 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ee85a5281521059981c0da7cdab6afd4e9c7ee953cdede17ae07b85b3d4453e
|
|
| MD5 |
90a470f7de25abc9cd77c85325425d90
|
|
| BLAKE2b-256 |
9772586d7caa7fbbe0d9bfd3804f8df4a182b755f0f1351c50770a3157690911
|