Callum Dickinson 0c738abbe4 Require Python 3.10 or later
* Switch python-adjutantclient to pyproject.toml,
  using the new PEP-517 build backend for PBR.
* Define python-requires to require Python 3.10 or later.

Change-Id: Ie9a9212b24c5cec4d26da55ded0c03f5269cc5b9
Signed-off-by: Callum Dickinson <callum.dickinson@catalystcloud.nz>
2026-03-12 08:41:34 +13:00
2021-07-01 10:21:43 +00:00
2019-04-19 19:40:43 +00:00
2021-07-01 10:21:43 +00:00
2026-03-12 08:41:34 +13:00
2026-03-12 08:41:34 +13:00
2026-03-12 08:41:34 +13:00
2026-03-12 08:41:34 +13:00
2021-07-01 10:21:43 +00:00

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

Description
Client library for Adjutant API
Readme 607 KiB
Languages
Python 100%