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

https://github.com/vitorramos/ipmi

IPMI web service collector for python
https://github.com/vitorramos/ipmi

ipmi

Last synced: 7 months ago
JSON representation

IPMI web service collector for python

Awesome Lists containing this project

README

          

# IPMI
Python module to request ipmi power data using the web service

Example
```python
import ipmi
import time

ipmi_sensor = ipmi.IPMI(server="http://cluster-bmc", user="admin", password="admin", proxy={"http":"socks5h://admin:1080"})

while 1:
data = ipmi_sensor.get_data()
print(data, "\n")
time.sleep(1)

```