entropymon 2.0.0__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Electric Entropy Lab
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,101 @@
1
+ Metadata-Version: 2.4
2
+ Name: entropymon
3
+ Version: 2.0.0
4
+ Summary: Terminal system monitor with GPU support, process management, and multi-language UI
5
+ Author-email: Electric Entropy Lab <patryk@electricentropy.eu>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://git.electricentropy.eu/ar3dh3l/entropymon
8
+ Project-URL: Repository, https://git.electricentropy.eu/ar3dh3l/entropymon
9
+ Project-URL: Issues, https://git.electricentropy.eu/ar3dh3l/entropymon/issues
10
+ Keywords: monitor,system,terminal,tui,gpu,nvidia,amd,htop,glances,curses
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Environment :: Console :: Curses
13
+ Classifier: Intended Audience :: System Administrators
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Operating System :: POSIX :: Linux
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.8
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Topic :: System :: Monitoring
24
+ Classifier: Topic :: Utilities
25
+ Requires-Python: >=3.8
26
+ Description-Content-Type: text/markdown
27
+ License-File: LICENSE
28
+ Requires-Dist: psutil>=5.9.0
29
+ Provides-Extra: nvidia
30
+ Requires-Dist: pynvml>=11.0.0; extra == "nvidia"
31
+ Provides-Extra: all
32
+ Requires-Dist: pynvml>=11.0.0; extra == "all"
33
+ Dynamic: license-file
34
+
35
+ # entropymon
36
+
37
+ **Terminal system monitor by Electric Entropy Lab**
38
+
39
+ A powerful, feature-rich terminal system monitor built with Python curses. Better than glances, prettier than htop.
40
+
41
+ ## Features
42
+
43
+ - **CPU** - per-core usage bars, sparkline history, frequency, load average
44
+ - **Memory** - RAM/Swap with usage bars
45
+ - **Disk** - partitions with usage, IO rates (read/write)
46
+ - **Network** - RX/TX rates with sparklines, per-interface info
47
+ - **GPU** - NVIDIA (via NVML) and AMD (via sysfs) - utilization, VRAM, temp, power, fan, clocks
48
+ - **Temperatures** - CPU, GPU, NVMe, network adapters
49
+ - **Processes** - interactive management with sorting, filtering, kill signals, renice, details
50
+ - **Multi-language** - EN, PL, DE, ES, FR, UK, ZH with runtime switching
51
+ - **Animated intro** - matrix rain boot sequence with decrypt logo animation
52
+
53
+ ## Install
54
+
55
+ ```bash
56
+ pip install entropymon
57
+ ```
58
+
59
+ With NVIDIA GPU support:
60
+
61
+ ```bash
62
+ pip install entropymon[nvidia]
63
+ ```
64
+
65
+ ## Usage
66
+
67
+ ```bash
68
+ entropymon # start with auto-detected language
69
+ entropymon --lang pl # start in Polish
70
+ entropymon --no-intro # skip boot animation
71
+ entropymon --reset-lang # reset saved language preference
72
+ entropymon --version # show version
73
+ ```
74
+
75
+ ## Keyboard Shortcuts
76
+
77
+ | Key | Action |
78
+ |-----|--------|
79
+ | `h` / `F1` / `?` | Help overlay |
80
+ | `L` | Switch language |
81
+ | `c` / `m` / `p` / `n` | Sort by CPU/MEM/PID/Name |
82
+ | `r` | Reverse sort |
83
+ | `j` / `k` / arrows | Navigate processes |
84
+ | `T` | Send SIGTERM |
85
+ | `K` | Send SIGKILL |
86
+ | `F9` | Signal selection menu |
87
+ | `+` / `-` | Renice process |
88
+ | `d` / `F5` / Enter | Process details |
89
+ | `/` / `f` | Filter processes |
90
+ | `q` / `Esc` | Quit |
91
+
92
+ ## Requirements
93
+
94
+ - Python 3.8+
95
+ - Linux (uses `/proc`, `/sys`)
96
+ - psutil
97
+ - pynvml (optional, for NVIDIA GPU)
98
+
99
+ ## License
100
+
101
+ MIT - Electric Entropy Lab
@@ -0,0 +1,67 @@
1
+ # entropymon
2
+
3
+ **Terminal system monitor by Electric Entropy Lab**
4
+
5
+ A powerful, feature-rich terminal system monitor built with Python curses. Better than glances, prettier than htop.
6
+
7
+ ## Features
8
+
9
+ - **CPU** - per-core usage bars, sparkline history, frequency, load average
10
+ - **Memory** - RAM/Swap with usage bars
11
+ - **Disk** - partitions with usage, IO rates (read/write)
12
+ - **Network** - RX/TX rates with sparklines, per-interface info
13
+ - **GPU** - NVIDIA (via NVML) and AMD (via sysfs) - utilization, VRAM, temp, power, fan, clocks
14
+ - **Temperatures** - CPU, GPU, NVMe, network adapters
15
+ - **Processes** - interactive management with sorting, filtering, kill signals, renice, details
16
+ - **Multi-language** - EN, PL, DE, ES, FR, UK, ZH with runtime switching
17
+ - **Animated intro** - matrix rain boot sequence with decrypt logo animation
18
+
19
+ ## Install
20
+
21
+ ```bash
22
+ pip install entropymon
23
+ ```
24
+
25
+ With NVIDIA GPU support:
26
+
27
+ ```bash
28
+ pip install entropymon[nvidia]
29
+ ```
30
+
31
+ ## Usage
32
+
33
+ ```bash
34
+ entropymon # start with auto-detected language
35
+ entropymon --lang pl # start in Polish
36
+ entropymon --no-intro # skip boot animation
37
+ entropymon --reset-lang # reset saved language preference
38
+ entropymon --version # show version
39
+ ```
40
+
41
+ ## Keyboard Shortcuts
42
+
43
+ | Key | Action |
44
+ |-----|--------|
45
+ | `h` / `F1` / `?` | Help overlay |
46
+ | `L` | Switch language |
47
+ | `c` / `m` / `p` / `n` | Sort by CPU/MEM/PID/Name |
48
+ | `r` | Reverse sort |
49
+ | `j` / `k` / arrows | Navigate processes |
50
+ | `T` | Send SIGTERM |
51
+ | `K` | Send SIGKILL |
52
+ | `F9` | Signal selection menu |
53
+ | `+` / `-` | Renice process |
54
+ | `d` / `F5` / Enter | Process details |
55
+ | `/` / `f` | Filter processes |
56
+ | `q` / `Esc` | Quit |
57
+
58
+ ## Requirements
59
+
60
+ - Python 3.8+
61
+ - Linux (uses `/proc`, `/sys`)
62
+ - psutil
63
+ - pynvml (optional, for NVIDIA GPU)
64
+
65
+ ## License
66
+
67
+ MIT - Electric Entropy Lab
@@ -0,0 +1,3 @@
1
+ """entropymon - Terminal system monitor by Electric Entropy Lab."""
2
+
3
+ __version__ = "2.0.0"
@@ -0,0 +1,5 @@
1
+ """Allow running as: python -m entropymon"""
2
+ from entropymon.monitor import main
3
+
4
+ if __name__ == "__main__":
5
+ main()