This repository contains minimalistic python client for Redfish API.
Quickstart
The simplest and safest way of playing with this client is to install it into dedicated virtual environment:
$ virtualenv venv && . venv/bin/activate (venv) $ pip install redfish-client
Now we can start the interactive python interpreter and interact with the api:
(venv) $ python
>>> import redfish_client
>>> import json
>>> root = redfish_client.connect(
... "redfish.address", "username", "password"
... )
>>> print(json.dumps(root.raw, indent=2, sort_keys=True))
{
"@odata.context": "/redfish/v1/$metadata#ServiceRoot.ServiceRoot",
"@odata.etag": "W/\"bb7f4494b922dde991a940cc8251e8fc\"",
"@odata.id": "/redfish/v1",
"@odata.type": "#ServiceRoot.v1_2_0.ServiceRoot",
"AccountService": {
"@odata.id": "/redfish/v1/AccountService/"
},
# More content here
"UpdateService": {
"@odata.id": "/redfish/v1/UpdateService/"
}
}
>>> system = root.Systems.Members[0]
>>> print(json.dumps(system.raw, indent=2, sort_keys=True))
{
"@odata.context": "/redfish/v1/$metadata#ComputerSystem.ComputerSystem",
"@odata.etag": "W/\"788f9827a97be1a4c8cbe9c085ef4d8b\"",
"@odata.id": "/redfish/v1/Systems/1/",
"@odata.type": "#ComputerSystem.v1_4_0.ComputerSystem",
# More content here
"SystemType": "Physical",
"UUID": "REMOVED_FROM_MOCK"
}
>>> print(system.SystemType)
Physical
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
redfish-client-0.2.0.tar.gz
(15.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file redfish-client-0.2.0.tar.gz.
File metadata
- Download URL: redfish-client-0.2.0.tar.gz
- Upload date:
- Size: 15.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.2 pkginfo/1.4.2 requests/2.20.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64330e0f82b823ad48c94d265bc72bc2524ddde15a6aa2b9c5e288c17bf707fb
|
|
| MD5 |
b7794413e4333a7e5a0361f9f6e955fd
|
|
| BLAKE2b-256 |
b2c04baeaaece4b39e7d3e4855baad977958b2a068eae5b6500a4a411ada1f18
|
File details
Details for the file redfish_client-0.2.0-py2.py3-none-any.whl.
File metadata
- Download URL: redfish_client-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.2 pkginfo/1.4.2 requests/2.20.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aeb732fc43b57ee4e7eb190ce4d36af3b8dc6a93bca208ca7bdf3ca4cbb2e7e2
|
|
| MD5 |
11617ff03c82cbb83c13ac9f609febcf
|
|
| BLAKE2b-256 |
f674cd60280047d20e3c797df162c03ca106148d3414ca6cc3a775b58f90b525
|