https://github.com/null-none/redfish-hp-ilo
Redfish API implementation on HPE servers with iLO RESTful API
https://github.com/null-none/redfish-hp-ilo
api hp hpilo ipmi python redfish rest
Last synced: 9 days ago
JSON representation
Redfish API implementation on HPE servers with iLO RESTful API
- Host: GitHub
- URL: https://github.com/null-none/redfish-hp-ilo
- Owner: null-none
- License: mit
- Created: 2023-06-02T20:46:37.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-20T13:21:59.000Z (about 2 years ago)
- Last Synced: 2025-05-24T19:50:00.411Z (about 1 month ago)
- Topics: api, hp, hpilo, ipmi, python, redfish, rest
- Language: Python
- Homepage:
- Size: 29.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# redfish-hp-ilo
Redfish API implementation on HPE servers with iLO RESTful API#### Install
```bash
pip install redfish-hp-ilo
```#### Examples
```python
from redfish_hp_ilo.api import RedfishHPIlohandler = RedfishHPIlo("0.0.0.0", "username", "password")
handler.software_firmware_inventory("firmware")
handler.software_firmware_inventory("software")
handler.get_bios_setting()
handler.reset()
handler.power_down()
handler.power_up()
handler.find_mac_address()
handler.computer_details()
handler.change_temporary_boot_order("hdd")
handler.bios_revert_default()handler.reset_server_gen9()
handler.get_bios_setting_gen9()
```