An usefull python module
Project description
System Monitor
System Monitor is a Python module that provides functionality for monitoring system resources and hardware information. It allows you to retrieve information about the CPU, GPU, storage, and other system components.
Installation
You can install the System Monitor module using pip:
Usage
Here's an example of how to use the System Monitor module:
from system_monitor import performance_monitor
# Get CPU model
cpu_model = performance_monitor.cpumodel()
print(f"CPU Model: {cpu_model}")
# Get GPU model
gpu_model = performance_monitor.gpumodel()
print(f"GPU Model: {gpu_model}")
# Get storage information
storage = performance_monitor.storage()
total_storage = storage.storagetotal()
used_storage = storage.storageused()
free_storage = storage.storageleft()
print(f"Total Storage: {total_storage}")
print(f"Used Storage: {used_storage}")
print(f"Free Storage: {free_storage}")
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mymol-0.1.0.tar.gz
(3.7 kB
view details)
File details
Details for the file mymol-0.1.0.tar.gz.
File metadata
- Download URL: mymol-0.1.0.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82db9713aa78abc3621309764f309a2f491a48be666d329e4d03b247cd255f90
|
|
| MD5 |
8ef527359ca35cc6acf94a887a5d92b1
|
|
| BLAKE2b-256 |
36a89e08b55024f973c69989dd9fd1ed49a7626505207f1a25a1e346ecca2f54
|