Adjutant API Client Library
Project description
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.
Python API
You can use the API with a keystone session:
>>> from keystoneauth1 import session >>> from keystoneauth1.identity import v3 >>> from adjutantclient.client import Client >>> auth = v3.Password(auth_url='http://keystone.host/v3', username='user', password='password', project_name='demo', user_domain_name='default', project_domain_name='default')>>> sess = session.Session(auth=auth) >>> adjutant = Client('1', session=sess)
If you use a clouds.yaml file os_client_config can also be used:
>>> import os_client_config >>> sess = os_client_config.make_rest_client('admin-logic') >>> adjutant = Client('1', session=sess)
A few of the endpoints (users.password_forgot(), token.submit(), signup, token.get()) don’t require authentication. In this case you can instead just pass an endpoint override to the adjutant client constructor.
>>> from adjutantclient.client import Client >>> adjutant = Client('1', endpoint='http://adjutant.host/v1')
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
Close
Hashes for python-adjutantclient-0.6.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb88e0ec215204a1708bfec8c3b9c8777f358e6d3e87d4720be606a8338882d2 |
|
MD5 | 117c368d9a806a6cd49c088d61f2d025 |
|
BLAKE2b-256 | 08df94da328edc9bd72c823d6dc6a96124e717df4c5829f62c8ab26b52d59a02 |
Close
Hashes for python_adjutantclient-0.6.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c1b014515ca4ffff70aefce5ec4b6b1c683b51052c45de94334fc9ede22090c |
|
MD5 | 526248a895b2a3d23a9104857479aaf0 |
|
BLAKE2b-256 | 7bdf3b4bce0188ed0d282f790c74c54527a68f0ffcf8aeee6879278f5c57af99 |