Dashboard plugin for the Adjutant service.
Go to file
adrian-turjak a9b57aafb7 Properly handle empty values for show task.
* added getattr for getting values in the _show_task function

Change-Id: I4619c7d9989894fe32fdfe310d18a26b2f80c80c
2017-05-29 11:55:35 +12:00
adjutantclient Properly handle empty values for show task. 2017-05-29 11:55:35 +12:00
.gitignore Renamed to Adjutant and cull legacy code 2017-05-25 21:32:41 +12:00
.gitreview gitreview file 2015-02-25 11:37:28 +13:00
LICENSE Initial version of python-stacktaskclient 2015-09-17 16:42:34 +01:00
MANIFEST.in Renamed to Adjutant and cull legacy code 2017-05-25 21:32:41 +12:00
README.rst Renamed to Adjutant and cull legacy code 2017-05-25 21:32:41 +12:00
requirements.txt Renamed to Adjutant and cull legacy code 2017-05-25 21:32:41 +12:00
setup.cfg Renamed to Adjutant and cull legacy code 2017-05-25 21:32:41 +12:00
setup.py Fix keystoneclient exceptions import. Bump package versions in requirements 2016-08-08 17:29:10 +01:00

README.rst

AdjutantClient is a command-line and python client for Adjutant.

Getting Started

Adjutant Client can be installed from PyPI using pip:

pip install python-openstackclient python-adjutantclient

The command line client is installed as a plugin for the OpenStack client, and an older deprecated version is available under the entry point 'adjutant'.

Python API

In order to use the python api directly, you must first obtain an auth token and identify which endpoint you wish to speak to:

>>> adjutant_url = 'http://adjutant.example.org:8004/v1/'
>>> auth_token = '3bcc3d3a03f44e3d8377f9247b0ad155'

Once you have done so, you can use the API like so:

>>> from adjutantclient.client import Client
>>> adjutant = Client('1', endpoint=adjutant_url, token=auth_token)

An auth token isn't needed for accessing signup, user.password_forgot(), token.submit() or token.get().