jetson-stats 7.2.0__py3-none-any.whl

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.
Files changed (63) hide show
  1. jetson_stats-7.2.0.data/data/share/jetson_stats/jtop.service +30 -0
  2. jetson_stats-7.2.0.data/data/share/jetson_stats/jtop_env.sh +37 -0
  3. jetson_stats-7.2.0.dist-info/METADATA +192 -0
  4. jetson_stats-7.2.0.dist-info/RECORD +63 -0
  5. jetson_stats-7.2.0.dist-info/WHEEL +5 -0
  6. jetson_stats-7.2.0.dist-info/entry_points.txt +5 -0
  7. jetson_stats-7.2.0.dist-info/licenses/LICENSE +661 -0
  8. jetson_stats-7.2.0.dist-info/top_level.txt +1 -0
  9. jtop/__init__.py +35 -0
  10. jtop/__main__.py +281 -0
  11. jtop/core/__init__.py +20 -0
  12. jtop/core/command.py +136 -0
  13. jtop/core/common.py +246 -0
  14. jtop/core/config.py +116 -0
  15. jtop/core/cpu.py +243 -0
  16. jtop/core/engine.py +119 -0
  17. jtop/core/exceptions.py +35 -0
  18. jtop/core/fan.py +639 -0
  19. jtop/core/gpu.py +692 -0
  20. jtop/core/hardware.py +92 -0
  21. jtop/core/hw_detect.py +74 -0
  22. jtop/core/jetson_clocks.py +564 -0
  23. jtop/core/jetson_libraries.py +209 -0
  24. jtop/core/jetson_variables.py +499 -0
  25. jtop/core/jetsonpower_provider.py +706 -0
  26. jtop/core/memory.py +487 -0
  27. jtop/core/nvpmodel.py +593 -0
  28. jtop/core/power.py +291 -0
  29. jtop/core/process_types.py +20 -0
  30. jtop/core/processes.py +158 -0
  31. jtop/core/tegra_parse.py +244 -0
  32. jtop/core/tegrastats.py +134 -0
  33. jtop/core/temperature.py +155 -0
  34. jtop/core/thor_cuda_mem.py +119 -0
  35. jtop/core/thor_gpu.py +375 -0
  36. jtop/core/thor_power.py +166 -0
  37. jtop/core/timer_reader.py +91 -0
  38. jtop/github.py +161 -0
  39. jtop/gui/__init__.py +47 -0
  40. jtop/gui/jtopgui.py +338 -0
  41. jtop/gui/jtopguiconfig.py +228 -0
  42. jtop/gui/lib/__init__.py +18 -0
  43. jtop/gui/lib/chart.py +234 -0
  44. jtop/gui/lib/colors.py +113 -0
  45. jtop/gui/lib/common.py +175 -0
  46. jtop/gui/lib/dialog_window.py +71 -0
  47. jtop/gui/lib/linear_gauge.py +166 -0
  48. jtop/gui/lib/process_table.py +91 -0
  49. jtop/gui/lib/smallbutton.py +146 -0
  50. jtop/gui/pall.py +199 -0
  51. jtop/gui/pcontrol.py +594 -0
  52. jtop/gui/pcpu.py +145 -0
  53. jtop/gui/pengine.py +528 -0
  54. jtop/gui/pgpu.py +222 -0
  55. jtop/gui/pgpu_thor.py +383 -0
  56. jtop/gui/pinfo.py +125 -0
  57. jtop/gui/pmem.py +460 -0
  58. jtop/jetson_config.py +250 -0
  59. jtop/jetson_release.py +128 -0
  60. jtop/jetson_swap.py +82 -0
  61. jtop/jtop.py +1293 -0
  62. jtop/service.py +822 -0
  63. jtop/terminal_colors.py +44 -0
@@ -0,0 +1,30 @@
1
+ # This file is part of the jetson_stats package (https://github.com/rbonghi/jetson_stats or http://rnext.it).
2
+ # Copyright (c) 2019-2026 Raffaello Bonghi.
3
+ #
4
+ # This program is free software: you can redistribute it and/or modify
5
+ # it under the terms of the GNU Affero General Public License as published by
6
+ # the Free Software Foundation, either version 3 of the License, or
7
+ # (at your option) any later version.
8
+ #
9
+ # This program is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU Affero General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU Affero General Public License
15
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
+ [Unit]
17
+ Description=jtop service
18
+ After=systemd-modules-load.service
19
+
20
+ [Service]
21
+ # Type=exec
22
+ Environment="JTOP_SERVICE=True"
23
+ ExecStart=/usr/local/bin/jtop --force
24
+ Restart=on-failure
25
+ RestartSec=10s
26
+ TimeoutStartSec=30s
27
+ TimeoutStopSec=30s
28
+
29
+ [Install]
30
+ WantedBy=multi-user.target
@@ -0,0 +1,37 @@
1
+ # This file is part of the jetson_stats package (https://github.com/rbonghi/jetson_stats or http://rnext.it).
2
+ # Copyright (c) 2019-2026 Raffaello Bonghi.
3
+ #
4
+ # This program is free software: you can redistribute it and/or modify
5
+ # it under the terms of the GNU Affero General Public License as published by
6
+ # the Free Software Foundation, either version 3 of the License, or
7
+ # (at your option) any later version.
8
+ #
9
+ # This program is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU Affero General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU Affero General Public License
15
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
+
17
+ # THIS SCRIPT MUST HAVE .SH !
18
+
19
+ # Load JETSON environment variables
20
+ # Export variables to be loaded on bash script
21
+ # https://blog.tintoy.io/2017/06/exporting-environment-variables-from-python-to-bash/
22
+ JETSON_VARIABLE=""
23
+ JETSON_PYTHON_NAME=""
24
+ if type -P python3 >/dev/null 2>&1 ; then
25
+ JETSON_VARIABLE=$(python3 -c "import jtop; print(jtop.__path__[0])" 2> /dev/null)
26
+ JETSON_PYTHON_NAME="python3"
27
+ fi
28
+ if type -P python >/dev/null 2>&1 && [ -z $JETSON_VARIABLE ] ; then
29
+ JETSON_VARIABLE=$(python -c "import jtop; print(jtop.__path__[0])" 2> /dev/null)
30
+ JETSON_PYTHON_NAME="python"
31
+ fi
32
+
33
+ # Load variables only if not empty the variable
34
+ if [ ! -z $JETSON_VARIABLE ] ; then
35
+ eval $($JETSON_PYTHON_NAME -m jtop.core.jetson_variables)
36
+ fi
37
+ # EOF
@@ -0,0 +1,192 @@
1
+ Metadata-Version: 2.4
2
+ Name: jetson-stats
3
+ Version: 7.2.0
4
+ Summary: Interactive system-monitor and process viewer for all NVIDIA Jetson [Thor, Orin, Xavier, Nano, TX] series
5
+ Author-email: Raffaello Bonghi <raffaello@rnext.it>
6
+ Maintainer-email: Raffaello Bonghi <raffaello@rnext.it>
7
+ License: AGPL-3.0
8
+ Project-URL: Homepage, https://github.com/rbonghi/jetson_stats
9
+ Project-URL: Documentation, https://rnext.it/jetson_stats
10
+ Project-URL: Repository, https://github.com/rbonghi/jetson_stats
11
+ Project-URL: Issues, https://github.com/rbonghi/jetson_stats/issues
12
+ Project-URL: Funding, https://github.com/sponsors/rbonghi
13
+ Project-URL: Discord, https://discord.gg/BFbuJNhYzS
14
+ Project-URL: Examples, https://github.com/rbonghi/jetson_stats/tree/master/examples
15
+ Keywords: jetson_stats,jtop,python,system-monitor,docker,nvidia,Jetson,Thor,AGXThor,Orin,AGXOrin,Xavier,AGXXavier,XavierNX,Nano,TX1,TX2,process,viewer
16
+ Classifier: Development Status :: 5 - Production/Stable
17
+ Classifier: Intended Audience :: Developers
18
+ Classifier: Topic :: Software Development :: Embedded Systems
19
+ Classifier: Topic :: Software Development :: Debuggers
20
+ Classifier: Topic :: Software Development :: Libraries
21
+ Classifier: Topic :: Software Development :: User Interfaces
22
+ Classifier: Topic :: System :: Hardware
23
+ Classifier: Topic :: System :: Logging
24
+ Classifier: Topic :: System :: Monitoring
25
+ Classifier: Topic :: System :: Operating System
26
+ Classifier: Topic :: System :: Operating System Kernels
27
+ Classifier: Topic :: System :: Shells
28
+ Classifier: Topic :: System :: Systems Administration
29
+ Classifier: Topic :: Terminals
30
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
31
+ Classifier: Programming Language :: Unix Shell
32
+ Classifier: Programming Language :: Python :: 3
33
+ Classifier: Programming Language :: Python :: 3.7
34
+ Classifier: Programming Language :: Python :: 3.8
35
+ Classifier: Programming Language :: Python :: 3.9
36
+ Classifier: Programming Language :: Python :: 3.10
37
+ Classifier: Programming Language :: Python :: 3.11
38
+ Classifier: Programming Language :: Python :: 3.12
39
+ Classifier: Programming Language :: Python :: 3.13
40
+ Classifier: Programming Language :: Python :: 3.14
41
+ Classifier: Operating System :: POSIX :: Linux
42
+ Requires-Python: >=3.7
43
+ Description-Content-Type: text/markdown
44
+ License-File: LICENSE
45
+ Requires-Dist: smbus2
46
+ Requires-Dist: distro
47
+ Requires-Dist: nvidia-ml-py>=13.595.45
48
+ Dynamic: license-file
49
+
50
+ <h1 align="center">
51
+
52
+ <b>jetson-stats</b>
53
+
54
+ [![jetson-stats](https://github.com/rbonghi/jetson_stats/raw/master/docs/images/jtop.png)](https://rnext.it/jetson_stats/)
55
+
56
+ </h1>
57
+
58
+ <p align="center">
59
+ <a href="https://pypistats.org/packages/jetson-stats"><img alt="PyPI - Downloads" src="https://img.shields.io/pypi/dw/jetson-stats.svg" /></a>
60
+ <a href="https://badge.fury.io/py/jetson-stats"><img alt="PyPI version" src="https://badge.fury.io/py/jetson-stats.svg" /></a>
61
+ <a href="https://www.python.org/"><img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/jetson-stats.svg" /></a>
62
+ <a href="https://pypi.org/project/jetson-stats/"><img alt="PyPI - Format" src="https://img.shields.io/pypi/format/jetson-stats.svg" /></a>
63
+ <a href="/LICENSE"><img alt="GitHub" src="https://img.shields.io/github/license/rbonghi/jetson_stats" /></a>
64
+ <a href="https://snyk.io/advisor/python/jetson-stats"><img alt="jetson-stats" src="https://snyk.io/advisor/python/jetson-stats/badge.svg" /></a>
65
+ <a href="https://hub.docker.com/r/rbonghi/jetson_stats"><img alt="Docker Image Size (tag)" src="https://img.shields.io/docker/image-size/rbonghi/jetson_stats/latest"></a>
66
+ <a href="https://hub.docker.com/r/rbonghi/jetson_stats"><img alt="Docker Pulls" src="https://img.shields.io/docker/pulls/rbonghi/jetson_stats" /></a>
67
+ <a href="https://github.com/rbonghi/jetson_stats/actions?query=workflow%3A%22CI+%26+CD%22"><img alt="CI & CD" src="https://github.com/rbonghi/jetson_stats/workflows/CI%20&%20CD/badge.svg" /></a>
68
+ <a href="https://github.com/rbonghi/jetson_stats/actions/workflows/github-code-scanning/codeql"><img alt="CodeQL" src="https://github.com/rbonghi/jetson_stats/actions/workflows/github-code-scanning/codeql/badge.svg?branch=master" /></a>
69
+ </p>
70
+ <p align="center">
71
+ <a href="https://twitter.com/raffaello86"><img alt="Twitter Follow" src="https://img.shields.io/badge/Follow-%40raffaello86-1DA1F2?logo=twitter&style=social" /></a>
72
+ <a href="https://www.instagram.com/robo.panther/"><img alt="robo.panther" src="https://img.shields.io/badge/Follow-robo.panther-E4405F?style=social&logo=instagram" /></a>
73
+ <a href="https://discord.gg/BFbuJNhYzS"><img alt="Join our Discord" src="https://img.shields.io/discord/1060563771048861817?color=%237289da&label=discord" /></a>
74
+ </p>
75
+
76
+ **jetson-stats** is a package for **monitoring** and **control** your [NVIDIA Jetson](https://developer.nvidia.com/buy-jetson) [Thor, Orin, Xavier, Nano, TX] series.
77
+
78
+ jetson-stats is a powerful tool to analyze your board, you can use with a stand alone application with `jtop` or import in your python script, the main features are:
79
+
80
+ - Decode hardware, architecture, L4T and NVIDIA Jetpack
81
+ - Monitoring, CPU, GPU, Memory, Engines, fan
82
+ - Control NVP model, fan speed, jetson_clocks
83
+ - Importable in a python script
84
+ - Dockerizable in a container
85
+ - Do not need super user
86
+ - Tested on many different hardware configurations
87
+ - Works with all NVIDIA Jetpack
88
+
89
+ ## Install
90
+
91
+ ```console
92
+ sudo apt update
93
+ sudo apt install python3-pip python3-setuptools -y
94
+ ```
95
+
96
+ ### Option 1: jetson-stats can be installed with [pip](https://pip.pypa.io), but need **superuser**:
97
+ ```console
98
+ sudo pip3 install -U jetson-stats
99
+ ```
100
+
101
+ ### Option 2: Install directly from GitHub
102
+ ```console
103
+ sudo pip3 install git+https://github.com/rbonghi/jetson_stats.git
104
+ ```
105
+
106
+ ### Option 3: Ubuntu 24.04
107
+ ```console
108
+ sudo pip3 install --break-system-packages -U jetson-stats
109
+ ```
110
+ or
111
+
112
+ ```console
113
+ sudo pip3 install --break-system-packages git+https://github.com/rbonghi/jetson_stats.git
114
+ ```
115
+
116
+ ### Option 4: Run `jtop` with or without `sudo`, and install without `--break-system-packages`
117
+ This installation method works on all Jetson Developer Kits.
118
+ _NOTE: For Jetson AGX Thor Dev Kit follow this_
119
+ ```console
120
+ sudo -v
121
+ curl -LsSf https://raw.githubusercontent.com/rbonghi/jetson_stats/master/scripts/install_jtop_torun_without_sudo.sh | bash
122
+ ```
123
+
124
+ ### Upgrade `jtop`
125
+ ```console
126
+ sudo -v
127
+ curl -LsSf https://raw.githubusercontent.com/rbonghi/jetson_stats/master/scripts/upgrade-jtop.sh | bash
128
+ ```
129
+
130
+ ---
131
+
132
+ ## Run
133
+
134
+ Start jtop it's pretty simple just write `jtop`!
135
+
136
+ ```console
137
+ jtop
138
+ ```
139
+
140
+ A simple interface will appear on your terminal, more capabilities are documented at [_jtop_](https://rnext.it/jetson_stats/jtop/jtop.html) page.
141
+
142
+ <div align="center">
143
+
144
+ [![jtop](https://github.com/rbonghi/jetson_stats/raw/master/docs/images/jtop.gif)](https://github.com/rbonghi/jetson_stats)
145
+
146
+ </div>
147
+
148
+ ## Library
149
+
150
+ You can use jtop such a python library to integrate in your software
151
+
152
+ ```python
153
+ from jtop import jtop
154
+
155
+ with jtop() as jetson:
156
+ # jetson.ok() will provide the proper update frequency
157
+ while jetson.ok():
158
+ # Read tegra stats
159
+ print(jetson.stats)
160
+ ```
161
+
162
+ You can also use jtop with your _virualenv_!
163
+
164
+ More information available at [_advanced usage_](https://rnext.it/jetson_stats/advanced-usage.html) page.
165
+
166
+ ## Docker
167
+
168
+ You can run directly in Docker jtop, you need only to:
169
+
170
+ 1. Install jetson-stats on your **host**
171
+ 2. Install jetson-stats on your container as well
172
+ 3. Pass to your container `/run/jtop.sock:/run/jtop.sock`
173
+
174
+ You can try running this command
175
+
176
+ ```console
177
+ docker run --rm -it -v /run/jtop.sock:/run/jtop.sock rbonghi/jetson_stats:latest
178
+ ```
179
+
180
+ More information available at [_docker_](https://rnext.it/jetson_stats/docker.html) documentation page.
181
+
182
+ ## Sponsorship
183
+
184
+ If your company benefits from this library, please consider [💖 sponsoring its development](https://github.com/sponsors/rbonghi).
185
+
186
+ ## Documentation
187
+
188
+ jetson-stats has usage and reference documentation at <https://rnext.it/jetson_stats>, there is also a [🆘 troubleshooting](https://rnext.it/jetson_stats/troubleshooting.html) page.
189
+
190
+ ## Community
191
+
192
+ jetson-stats has a [community Discord channel](https://discord.gg/BFbuJNhYzS) for asking questions and collaborating with other contributors. Drop by and say hello 👋
@@ -0,0 +1,63 @@
1
+ jetson_stats-7.2.0.data/data/share/jetson_stats/jtop.service,sha256=LH9S-KC8Pj5dUjY581EbGLaiXo5mE85SOq1t0H6me6g,1081
2
+ jetson_stats-7.2.0.data/data/share/jetson_stats/jtop_env.sh,sha256=fby-ic8bw5Ve--t7UZ-CvMIZastQZBg13nBXQgRI7mo,1563
3
+ jetson_stats-7.2.0.dist-info/licenses/LICENSE,sha256=2TxD2kvyzwXnWMY5ZsRTRaeR2p2usvR10NgKSOZ7MRs,34522
4
+ jtop/__init__.py,sha256=UFyLEDtwb0HnBip6FiDjMJoppEYntrl0vt6WcCmqnKA,1370
5
+ jtop/__main__.py,sha256=l7Nw-bMJjPL4jgtpH-O1coEsJi_0BcMCM8gNNUPsIKc,11967
6
+ jtop/github.py,sha256=LeH1NTU-pk8SPzL6PCB7fQLX_qiEeYlhRlPggSgOc8M,6862
7
+ jtop/jetson_config.py,sha256=eaBRhJhbXo6QPX96ZyjsVgxugcJelvfC67yIEBENQ30,9788
8
+ jtop/jetson_release.py,sha256=acXmglBq3IkSVbXsVcN5n1qM_3D5g8osyQa9jbZpD2U,6001
9
+ jtop/jetson_swap.py,sha256=r5t52H7k3jouabazns4k1LoyBVMiywfcI4s3ZiTUQ74,3547
10
+ jtop/jtop.py,sha256=L7aYAw9RoKHhXczfLqWztdZCun_MHniC2EPVKsuT3XM,58954
11
+ jtop/service.py,sha256=lxS6UytSF7DGQ74DNwook9d51g_PIfLTykEmNANvrG0,32714
12
+ jtop/terminal_colors.py,sha256=LY7UqH2qQU1WgZjYLywV1lNdv4xSc6C88KLZxrLoqC8,1470
13
+ jtop/core/__init__.py,sha256=cn1lcuQ4yUAorJ8G2vdCbV5ZSwVUqaO6Z1JeZof30Gs,857
14
+ jtop/core/command.py,sha256=ftVvXRBugqP2Ych7N3ZgRYLtvtqZbBvr_BWrzR7f7UE,5793
15
+ jtop/core/common.py,sha256=sE9pG1Y9FmpFV9PJB-1dAkrQqNdRXDLIAv5nqA2bMhk,8412
16
+ jtop/core/config.py,sha256=Bg5DxFZewzdY6jh3nYS0c6Upa_IZcZ6tUNOcDtA58Do,3659
17
+ jtop/core/cpu.py,sha256=KQEhXPIfUIaDRFj1McxdzVhc9RJokH-5DHKarXrVbhg,10382
18
+ jtop/core/engine.py,sha256=t2SaVGzBYKSEeXjApNV55lzec8CfAHv6wtcl4Ds_KgE,5447
19
+ jtop/core/exceptions.py,sha256=L63KQOgPc6OyplFLAiTkEHK2eEEPABagIk9Wx7NRiw0,1273
20
+ jtop/core/fan.py,sha256=EjkPWEpSnjw9qhXKdoDhf0GqzNLzIZ1Bs4VRYnT0D74,25148
21
+ jtop/core/gpu.py,sha256=cQR1n2asvHFDgAtreUx1pMnWEPURY_lYj0tztfNgNuU,26631
22
+ jtop/core/hardware.py,sha256=WgEjrHi0SqcKdAdCy6JZd3oAl7Kt-_g131NJWeSTyAA,3248
23
+ jtop/core/hw_detect.py,sha256=VQAaERnOxGxv2nZjEXIa3UP7gqvLokCX7Q3cevwBYOA,2762
24
+ jtop/core/jetson_clocks.py,sha256=zKUcK6lRnFq_zDPviXz_FE9opl_D269hgWFi1UBPmdA,21250
25
+ jtop/core/jetson_libraries.py,sha256=JmYU1J8A9RkZKlnxQPLJwrJFL5WYJ1MJMLkAT2Hz3ng,6916
26
+ jtop/core/jetson_variables.py,sha256=NEQyPmSrjMgHWeWy1Fn6vj2S31WNz-kRscEZKYstHto,18791
27
+ jtop/core/jetsonpower_provider.py,sha256=X60buzWI9pu4TTXAS0AAgzQXu0TjRdkIoRXdHu539kU,24018
28
+ jtop/core/memory.py,sha256=ioiCg9bPneZGfeoPW309vfe7ZI-Wqlb8Zw6vTZziGxs,19108
29
+ jtop/core/nvpmodel.py,sha256=YLxg6mO6vodmSefHl8_kTgzI9YtYOo6a5v79bQovnU8,21336
30
+ jtop/core/power.py,sha256=8y5_iV8OXZhhrh_a6I8h_4b6HPRwWjZqal___hA-eWI,13576
31
+ jtop/core/process_types.py,sha256=OUDEJNy5LVcTn-eGN944YSdAPmQEjWme0DKmY-UASow,907
32
+ jtop/core/processes.py,sha256=WD1VhLknNT6mr-ceO-5P-9X_usUtgj4-P-Jqs7yu3Yo,6555
33
+ jtop/core/tegra_parse.py,sha256=-20NoQsNNKCxFaBSGdsN4nTtr9xo8m5GvvMefzBT5TM,8945
34
+ jtop/core/tegrastats.py,sha256=0hnbHZB8-Yv00zGwTznaQ0tya5L8uc9NG8Ch2sa7Uao,4476
35
+ jtop/core/temperature.py,sha256=_01jbokmDgzTAfL5jQ4kQ-u2BLL0DrzlkBX3q2wjUac,6954
36
+ jtop/core/thor_cuda_mem.py,sha256=QPVTlXNmW7Ctw2rfcinRDDyuTOOlqZn5x5DmeHw9ZJk,3860
37
+ jtop/core/thor_gpu.py,sha256=qaUf88Dw0MQJcgeS4f18Z1LLlvbg2bG_ZrHjStUZaGA,13357
38
+ jtop/core/thor_power.py,sha256=Cstjd29dBSZYTR9w5jhaQQ23OFS37t3XJiH7OJbW-kM,5535
39
+ jtop/core/timer_reader.py,sha256=wNbCxeLN_GONoaSfJ-HeYKJauEaL5AVEJI8tAjAjybI,3173
40
+ jtop/gui/__init__.py,sha256=L5Hk6ioEesfxESDokvgVeAVJMDuAkJvlVvwwK0CzTHw,1426
41
+ jtop/gui/jtopgui.py,sha256=omu4Z0E1V30k98EXSgpxHG_DbIRvJuLDl-nC353MXlc,13015
42
+ jtop/gui/jtopguiconfig.py,sha256=ZAT9PHertUmbts8bMVf1Sculbft0K6hXrg7v6GdzPNU,9679
43
+ jtop/gui/pall.py,sha256=09mIB7ccS3aQY6odN977IKqVLP_fHMGTO6zZTmOSXFU,8938
44
+ jtop/gui/pcontrol.py,sha256=AwPjoLLQa8-260qlVSYL_V2wTszurePI8y-AEQHQQqA,26808
45
+ jtop/gui/pcpu.py,sha256=hh40XGTsUKufcdpGj-7xTEb_5_-hiLB-iap9HJJudSo,5716
46
+ jtop/gui/pengine.py,sha256=U43PbIb6JOcCxYtNUWEUWrA6yet2C8Jm1WN3zsZVeQQ,17924
47
+ jtop/gui/pgpu.py,sha256=o0qnXnY-veLFmUCeb1ax369yAgD_trgPGiutWgwsXUw,10802
48
+ jtop/gui/pgpu_thor.py,sha256=-E7s9NzWy9AieCsri09BYq3LI229-Q19Z3rmF-cz0BM,14056
49
+ jtop/gui/pinfo.py,sha256=RslK8CSGIKtz61hEb_LDI8OoHsBv-A3gPmrOuTwbt5c,5946
50
+ jtop/gui/pmem.py,sha256=zB85XYAbzbmuG6sViRniOAEWyksmT3e1Y7Tt6CAPeL0,19448
51
+ jtop/gui/lib/__init__.py,sha256=Xw--NNRW75XF7tkmG_N-ZuO_mLtDbMJeVf2pAiJQR9A,850
52
+ jtop/gui/lib/chart.py,sha256=GUd4wIb2oS0hv6k0FJ_jVt3P-YIfKqRbTJRsX41k7ZQ,11283
53
+ jtop/gui/lib/colors.py,sha256=QyNOsNibB3O-fTLC0M2OS8IBafxAIbBa3bG7voudq9s,3636
54
+ jtop/gui/lib/common.py,sha256=WCBliJJDhKkxiuFZUbz6FpAxHBiWjavBKnIkZmFMzLM,5844
55
+ jtop/gui/lib/dialog_window.py,sha256=XdWIv8ArHDFD1WlFOOG0K-IZSG_mId3WowPX9BJT2qY,2806
56
+ jtop/gui/lib/linear_gauge.py,sha256=naGkmYLLpMlrRMIA1wjAaIyVYwMw3i6ZODxAft8vEjE,6689
57
+ jtop/gui/lib/process_table.py,sha256=YL16EVzi3_qm9OwRFDeIsam2-gz3A-qTRX0wSWb-nEY,3698
58
+ jtop/gui/lib/smallbutton.py,sha256=CIaC4pwi4Sxk-s-DtKbCRaMcwjPaT2R-7b2Mm4OMzl0,6435
59
+ jetson_stats-7.2.0.dist-info/METADATA,sha256=uqeZ8GQmb8XqpX9F2If730Hz3wUx8wY1PhR5hioegHo,8247
60
+ jetson_stats-7.2.0.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
61
+ jetson_stats-7.2.0.dist-info/entry_points.txt,sha256=83RwsNY5O25eh6l4OPmQ4iPJdEIft1iDHpyruJn64XU,162
62
+ jetson_stats-7.2.0.dist-info/top_level.txt,sha256=PKylh7Y5nzmN0R21inq4KwBLc4PDvdq5PsDj0CjuPFk,5
63
+ jetson_stats-7.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,5 @@
1
+ [console_scripts]
2
+ jetson_config = jtop.jetson_config:main
3
+ jetson_release = jtop.jetson_release:main
4
+ jetson_swap = jtop.jetson_swap:main
5
+ jtop = jtop.__main__:main