Wrapper for Yggdrasil Admin API
Project description
This library provides a wrapper for Yggdrasil Admin API.
Installation
for Linux
pip3 install yggdrasilctl
for Windows
pip install yggdrasilctl
Usage
sync version
from pprint import pprint
from yggdrasilctl.sync import AdminAPI, APIError
api = AdminAPI() #unless otherwise specified it will connects to localhost:9001
try:
info = api.getSelf()
except APIError as e:
print(e)
else:
pprint(info)
async version
import asyncio
from pprint import pprint
from yggdrasilctl import AdminAPI, APIError
async def main():
api = AdminAPI()
try:
info = await api.getSelf()
except APIError as e:
print(e)
else:
pprint(info)
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
Detailed description of API methods
For details see documentation of Admin API.
Links
Yggdrasil project
This library on PyPI
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
yggdrasilctl-0.0.1a4.tar.gz
(6.5 kB
view details)
Built Distribution
File details
Details for the file yggdrasilctl-0.0.1a4.tar.gz
.
File metadata
- Download URL: yggdrasilctl-0.0.1a4.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7d13942c6e21d5d82f3907988c2b3fa3266a9695493d8b8c6533b92f4b4dc11 |
|
MD5 | 6a2d940b024f2b42e557b59c1bdcc726 |
|
BLAKE2b-256 | 191aa211d205d1e1be3a646a8f75aaedcc9e6d04ef83e2612d282ac6a72c5bb8 |
File details
Details for the file yggdrasilctl-0.0.1a4-py3-none-any.whl
.
File metadata
- Download URL: yggdrasilctl-0.0.1a4-py3-none-any.whl
- Upload date:
- Size: 18.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f86cc8ecf819e360463a8d8773e770648900a2085840050966a4597e3d2445c2 |
|
MD5 | f38781b4f2c426019202ba15120d5b9e |
|
BLAKE2b-256 | 7db999ea6863397e3bdd9e95111cf7d8e527fe0f0b1d5c651eccddd25ee3fa17 |