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
- Host: GitHub
- URL: https://github.com/vitorramos/ipmi
- Owner: VitorRamos
- License: mit
- Created: 2018-01-27T13:25:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-13T16:40:27.000Z (over 1 year ago)
- Last Synced: 2025-01-18T20:36:37.026Z (9 months ago)
- Topics: ipmi
- Language: Python
- Size: 18.6 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IPMI
Python module to request ipmi power data using the web serviceExample
```python
import ipmi
import timeipmi_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)```