English | 中文
Python wrapper for LibreHardwareMonitor, quick access to LibreHardwareMonitorLib's original functionality.
You can read information from devices such as:
- Motherboards
- Intel and AMD processors
- NVIDIA and AMD graphics cards
- HDD, SSD and NVMe hard drives
- Network cards
pip install PyLibreHardwareMonitor
from PyLibreHardwareMonitor import Computer
computer = Computer()
# Get system information, automatically refreshed with each call.
computer.cpu
computer.gpu
computer.memory
computer.network
computer.storage
computer.motherboard
computer.controller
Windows only, not very efficient since LibreHardwareMonitor is called from .net. Compared to libraries like psutil, it's easy to get Intel and AMD graphics card information.