HardwareMon 2.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hardwaremon-2.0.2/HardwareMon.egg-info/PKG-INFO +14 -0
- hardwaremon-2.0.2/HardwareMon.egg-info/SOURCES.txt +8 -0
- hardwaremon-2.0.2/HardwareMon.egg-info/dependency_links.txt +1 -0
- hardwaremon-2.0.2/HardwareMon.egg-info/requires.txt +2 -0
- hardwaremon-2.0.2/HardwareMon.egg-info/top_level.txt +1 -0
- hardwaremon-2.0.2/LICENSE +21 -0
- hardwaremon-2.0.2/PKG-INFO +14 -0
- hardwaremon-2.0.2/README.md +50 -0
- hardwaremon-2.0.2/setup.cfg +4 -0
- hardwaremon-2.0.2/setup.py +14 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: HardwareMon
|
|
3
|
+
Version: 2.0.2
|
|
4
|
+
Summary: A hardware monitoring script
|
|
5
|
+
Home-page: https://github.com/louisboii747/HardwareMon
|
|
6
|
+
Author: Louis
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: psutil
|
|
9
|
+
Requires-Dist: requests
|
|
10
|
+
Dynamic: author
|
|
11
|
+
Dynamic: home-page
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
Dynamic: requires-dist
|
|
14
|
+
Dynamic: summary
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Louis Hinchliffe
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: HardwareMon
|
|
3
|
+
Version: 2.0.2
|
|
4
|
+
Summary: A hardware monitoring script
|
|
5
|
+
Home-page: https://github.com/louisboii747/HardwareMon
|
|
6
|
+
Author: Louis
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: psutil
|
|
9
|
+
Requires-Dist: requests
|
|
10
|
+
Dynamic: author
|
|
11
|
+
Dynamic: home-page
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
Dynamic: requires-dist
|
|
14
|
+
Dynamic: summary
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# HardwareMon #
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
HardwareMon is a lightweight system monitoring tool designed to provide a detailed overview of your computer’s hardware and performance metrics. It can display CPU, memory, disk, GPU, battery, network, and peripheral information in real time. The project includes two main implementations: a Python version for Linux systems and a PowerShell version for Windows.
|
|
5
|
+
|
|
6
|
+
## Features ##
|
|
7
|
+
|
|
8
|
+
HardwareMon gathers and presents information such as CPU usage, memory usage, disk activity, top running processes, GPU specifications and temperatures, battery status, and peripheral details. On Linux, the Python version uses the psutil library and native system commands to extract detailed system information. On Windows, the PowerShell version leverages CIM/WMI queries to report similar statistics.
|
|
9
|
+
|
|
10
|
+
The Linux version also includes a GUI mode built with Tkinter, offering a modern and configurable interface with light, dark, and hacker-style themes. To cycle themes, press F2. Graphs for CPU, memory, and disk usage are updated in real time, providing a quick visual snapshot of system performance.
|
|
11
|
+
|
|
12
|
+
## Installation ##
|
|
13
|
+
Linux (Python version)
|
|
14
|
+
|
|
15
|
+
Ensure Python 3 and the psutil library are installed.
|
|
16
|
+
|
|
17
|
+
Clone the repository or download the Python script.
|
|
18
|
+
|
|
19
|
+
Run the script from a terminal:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
python3 hardware_mon.py
|
|
23
|
+
```
|
|
24
|
+
## Windows (PowerShell version) ##
|
|
25
|
+
|
|
26
|
+
Open PowerShell.
|
|
27
|
+
|
|
28
|
+
Run the script directly or use the provided .exe if available:
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
.\hardware-info.ps1
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
The Windows .exe was generated from the PowerShell script but is not maintained as actively as the source script. It may lack the latest bug fixes or features and is provided primarily for convenience.
|
|
35
|
+
|
|
36
|
+
# Notes #
|
|
37
|
+
|
|
38
|
+
The Windows version relies on CIM/WMI queries and may have limitations on certain hardware or older operating systems. The Linux Python version provides more extensive monitoring capabilities, including GPU lane and VRAM information for NVIDIA and AMD cards, as well as real-time graphical representations.
|
|
39
|
+
|
|
40
|
+
While the project can run as a standalone script or executable, it is recommended to use the scripts directly to ensure maximum compatibility and access to the latest updates.
|
|
41
|
+
|
|
42
|
+
The .sh script is also much more basic compared to the .py script on linux, since the .py script relies on Tkinter for graph drawings which Bash cannot use, and has not had as much attention compared to the .py version.
|
|
43
|
+
|
|
44
|
+
The .yml script only runs on the .py script.
|
|
45
|
+
|
|
46
|
+
# Contribution #
|
|
47
|
+
|
|
48
|
+
Contributions and suggestions are welcome. Please feel free to fork the repository and submit pull requests or report issues on the project’s issue tracker.
|
|
49
|
+
|
|
50
|
+
Made with ❤️ by Louis
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="HardwareMon",
|
|
5
|
+
version="2.0.2", # increment with each release
|
|
6
|
+
packages=find_packages(),
|
|
7
|
+
install_requires=[
|
|
8
|
+
"psutil",
|
|
9
|
+
"requests"
|
|
10
|
+
],
|
|
11
|
+
author="Louis",
|
|
12
|
+
description="A hardware monitoring script",
|
|
13
|
+
url="https://github.com/louisboii747/HardwareMon",
|
|
14
|
+
)
|