Skip to main content

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


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 hashes)

Uploaded Source

Built Distribution

yggdrasilctl-0.0.1a4-py3-none-any.whl (18.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page