Python bindings to the OpenStack Identity API (Keystone)
This is a client for the OpenStack Identity API, implemented by the Keystone team; it contains a Python API (the keystoneclient module) for OpenStack’s Identity Service. For command line interface support, use OpenStackClient.
PyPi - package installation
Launchpad project - release management
Blueprints - feature specifications
Bugs - issue tracking
Python API
By way of a quick-start:
>>> from keystoneauth1.identity import v3
>>> from keystoneauth1 import session
>>> from keystoneclient.v3 import client
>>> auth = v3.Password(auth_url="http://example.com:5000/v3", username="admin",
... password="password", project_name="admin",
... user_domain_id="default", project_domain_id="default")
>>> sess = session.Session(auth=auth)
>>> keystone = client.Client(session=sess)
>>> keystone.projects.list()
[...]
>>> project = keystone.projects.create(name="test", description="My new Project!", domain="default", enabled=True)
>>> project.delete()
Release files for python-keystoneclient 4.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| python-keystoneclient-4.0.0.tar.gz | 313.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| python_keystoneclient-4.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size:711.4 kB
Release files / python-keystoneclient-4.0.0.tar.gz
| Download URL | python-keystoneclient-4.0.0.tar.gz |
|---|---|
| Size | 313.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6d93efd494b43d8b4cd8a62281c82d3f02aa531c5523e6bbe7d696e37bc77ba8
|
|
BLAKE2b-256 checksum How to use checksums |
c9ec5cce3af48ac2bd891e1ff7dcaffa2d7322b4438f2324fc3c1d0125c6cd10
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2
|
Release files / python_keystoneclient-4.0.0-py3-none-any.whl
| Download URL | python_keystoneclient-4.0.0-py3-none-any.whl |
|---|---|
| Size | 397.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b081a330eab0aa7c00e2b723410bf26cb8b5e52d3671768846f6c1b4bf71acea
|
|
BLAKE2b-256 checksum How to use checksums |
927a95722507a75904d8af0162faa86c4bae9488ade27a0f27228c12f3125e8a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.2
|