An open API service indexing awesome lists of open source software.

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

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 RedfishHPIlo

handler = 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()
```