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.8.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10e169d2e8314f4add36ea2f00078bc18137f50ae9d9e324452f3d2a17fce468 |
|
MD5 | 4d81f05e575534113e7c5101ccc89611 |
|
BLAKE2b-256 | bb50abce8c1163f5d7225c186d41bdeaa4cbcb0ddbf5a0056b8bb908c625d533 |
Close
Hashes for python_adjutantclient-0.8.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 131c24263b3283701077b299881425385ab84418745dcbec7ca789be7f270e77 |
|
MD5 | 177a9cbe2e132b57cdd8ff81b982de5e |
|
BLAKE2b-256 | 610f25c4a1e4540a622e392237303c6f5ef69be0a156165cff8dde5bedff0841 |