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 5.5.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-5.5.0.tar.gz | 324.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| python_keystoneclient-5.5.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 721.3 kB
Release files / python-keystoneclient-5.5.0.tar.gz
| Download URL | python-keystoneclient-5.5.0.tar.gz |
|---|---|
| Size | 324.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c2f5934f95576936c98e45bf599ad48bcb0ac451593e5f8344ebf52cb0f411f5
|
|
BLAKE2b-256 checksum How to use checksums |
ea5e2d6700c6e36c288ec7e6d24ad49ef400311e8d2b2d926b16906f12c1cb26
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.1.1 CPython/3.11.9
|
Release files / python_keystoneclient-5.5.0-py3-none-any.whl
| Download URL | python_keystoneclient-5.5.0-py3-none-any.whl |
|---|---|
| Size | 397.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
52fe7eb35c7345387c2488eb0b95f28a1d73edcad1ac3d8d80cf8ce6a7c9a8ee
|
|
BLAKE2b-256 checksum How to use checksums |
06d0187c168e0663b4849cb2f2ce288d91e95e4cf63e4e53a32315f9f6f1ea65
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.1.1 CPython/3.11.9
|