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 6.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-6.0.0.tar.gz | 322.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| python_keystoneclient-6.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 719.9 kB
Release files / python_keystoneclient-6.0.0.tar.gz
| Download URL | python_keystoneclient-6.0.0.tar.gz |
|---|---|
| Size | 322.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d6ac3a09adf2319aaac5728e3bf7cbeaf952c295bd7831f1df9a573b25fbcf82
|
|
BLAKE2b-256 checksum How to use checksums |
4784c24d6ec1b0a1c012b38fd00bc1699dacd998877ed6b28567249e5035ed47
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.11.15
|
Release files / python_keystoneclient-6.0.0-py3-none-any.whl
| Download URL | python_keystoneclient-6.0.0-py3-none-any.whl |
|---|---|
| Size | 397.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
89377117dd65252af14f2ff47868087826977607636f131c01e52f9adee9774a
|
|
BLAKE2b-256 checksum How to use checksums |
1e0d62b0b60e59d79b25a194f6f7c056626af64faaa8d9488a2ac4f34d0c1c9a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.11.15
|