pyhw 0.6.2__py3-none-any.whl → 0.6.4__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.
- pyhw/backend/host/macos.py +11 -1
- pyhw/library/lib/iokitGPULib.dylib +0 -0
- {pyhw-0.6.2.dist-info → pyhw-0.6.4.dist-info}/METADATA +11 -2
- {pyhw-0.6.2.dist-info → pyhw-0.6.4.dist-info}/RECORD +8 -8
- {pyhw-0.6.2.dist-info → pyhw-0.6.4.dist-info}/LICENSE +0 -0
- {pyhw-0.6.2.dist-info → pyhw-0.6.4.dist-info}/WHEEL +0 -0
- {pyhw-0.6.2.dist-info → pyhw-0.6.4.dist-info}/entry_points.txt +0 -0
- {pyhw-0.6.2.dist-info → pyhw-0.6.4.dist-info}/top_level.txt +0 -0
pyhw/backend/host/macos.py
CHANGED
@@ -172,6 +172,16 @@ class HostDetectMacOS:
|
|
172
172
|
|
173
173
|
elif hw_model.startswith("Mac"):
|
174
174
|
version = hw_model[len("Mac"):]
|
175
|
+
if self.__hwModelCheck(version, "16,3"):
|
176
|
+
return "iMac (24-inch, 2024, Four Thunderbolt / USB 4 ports)"
|
177
|
+
if self.__hwModelCheck(version, "16,2"):
|
178
|
+
return "iMac (24-inch, 2024, Two Thunderbolt / USB 4 ports)"
|
179
|
+
if self.__hwModelCheck(version, "16,1") or self.__hwModelCheck(version, "16,6") or self.__hwModelCheck(version, "16,8"):
|
180
|
+
return "MacBook Pro (14-inch, 2024, Three Thunderbolt 4 ports)"
|
181
|
+
if self.__hwModelCheck(version, "16,5") or self.__hwModelCheck(version, "16,7"):
|
182
|
+
return "MacBook Pro (16-inch, 2024, Three Thunderbolt 4 ports)"
|
183
|
+
if self.__hwModelCheck(version, "16,10") or self.__hwModelCheck(version, "16,15"):
|
184
|
+
return "Mac mini (M4, 2024)"
|
175
185
|
if self.__hwModelCheck(version, "15,13"):
|
176
186
|
return "MacBook Air (15-inch, M3, 2024)"
|
177
187
|
if self.__hwModelCheck(version, "15,2"):
|
@@ -262,7 +272,7 @@ class HostDetectMacOS:
|
|
262
272
|
if self.__hwModelCheck(version, "9,1"):
|
263
273
|
return "iMac (24/20-inch, Early 2009)"
|
264
274
|
|
265
|
-
return
|
275
|
+
return hw_model
|
266
276
|
|
267
277
|
@staticmethod
|
268
278
|
def __hwModelCheck(version: str, target: str):
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyhw
|
3
|
-
Version: 0.6.
|
3
|
+
Version: 0.6.4
|
4
4
|
Summary: PyHw, a neofetch-like command line tool for fetching system information but written mostly in python.
|
5
5
|
Author-email: Xiao Ran <xiaoran.007@icloud.com>
|
6
6
|
License: BSD-3-Clause
|
@@ -13,7 +13,7 @@ Classifier: Operating System :: OS Independent
|
|
13
13
|
Requires-Python: >=3.9
|
14
14
|
Description-Content-Type: text/markdown
|
15
15
|
License-File: LICENSE
|
16
|
-
Requires-Dist: pypci-ng>=0.0.
|
16
|
+
Requires-Dist: pypci-ng>=0.0.8
|
17
17
|
|
18
18
|
# PyHw
|
19
19
|
[](https://pepy.tech/project/pyhw)
|
@@ -83,6 +83,10 @@ This is due to the fact that system python is not supposed to be managed by pip.
|
|
83
83
|
|
84
84
|
## Build from source
|
85
85
|
Currently, build process relay on swiftc and macOS IOKit framework. To build package from source, you need a mac machine with macOS 11 and newer.
|
86
|
+
|
87
|
+
### Dependencies
|
88
|
+
This package was originally implemented in pure python and only depends on the python standard library. However, in subsequent development, the code for the pci part was separated into a separate package **pypci-ng**, which can be obtained using pip (or check out [this](https://github.com/xiaoran007/pypci) GitHub repository).
|
89
|
+
|
86
90
|
### Build tools
|
87
91
|
Make sure the following Python build tools are already installed.
|
88
92
|
* setuptools
|
@@ -98,3 +102,8 @@ After the build process, the source package and the binary whl package can be fo
|
|
98
102
|
```shell
|
99
103
|
pip install dist/*.whl --force-reinstall
|
100
104
|
```
|
105
|
+
Or simply type:
|
106
|
+
```shell
|
107
|
+
make build
|
108
|
+
make install
|
109
|
+
```
|
@@ -17,7 +17,7 @@ pyhw/backend/host/__init__.py,sha256=Efaj7-Oya7H8HdpZHQCLrwn-mcfPb-d6yfh4dzsE_7I
|
|
17
17
|
pyhw/backend/host/hostBase.py,sha256=POyDW3f5JSWtEKyCfrVSBEddSwoywe_OBgUExCEuje8,563
|
18
18
|
pyhw/backend/host/hostInfo.py,sha256=Xvz0LugPiCSWMkcDsp4p2rrojYFZauL6Q-gCZ6NLz5k,184
|
19
19
|
pyhw/backend/host/linux.py,sha256=dr82gDA4SQgyTTI3Kq5V3V6qEDH4DXoJo0wyqeXYdHk,2005
|
20
|
-
pyhw/backend/host/macos.py,sha256=
|
20
|
+
pyhw/backend/host/macos.py,sha256=KW-EJK9g1xHNrFsVxJv5GPLpc_ZevX0Zv1WjZUzRkzo,15369
|
21
21
|
pyhw/backend/host/windows.py,sha256=rjDJaIs-5zspzFsNCMCh6m2yZXEXI0vccqeBpmAdEBk,53
|
22
22
|
pyhw/backend/kernel/__init__.py,sha256=fGjwjpOhwA_PnsWbwoq102hwhTay2ufYKaTqxjSV2-I,65
|
23
23
|
pyhw/backend/kernel/kernelBase.py,sha256=CMvBszl4_aP48YWnFI03I2GtngYStkcY4uDU3ub8C3E,555
|
@@ -77,15 +77,15 @@ pyhw/frontend/logo/ascii/macOS.pyhw,sha256=HBGROtBb7wrNtRqAQ9ND7zxK0l17BRsmpgc2d
|
|
77
77
|
pyhw/frontend/logo/ascii/raspbian.pyhw,sha256=jEl6WMKF-FGx359ipQ1kzweUJS-NuauYQCFaYime4PQ,159
|
78
78
|
pyhw/frontend/logo/ascii/ubuntu.pyhw,sha256=l-Q0PfutxXYMwTojqeiM88063x4V0RBkZUHmi6YdsNc,833
|
79
79
|
pyhw/frontend/logo/ascii/ubuntu_small.pyhw,sha256=Xf8LSZdZUu9aEG3efhb1FUlUEuJ-3UztcIOJISpKhPw,229
|
80
|
-
pyhw/library/lib/iokitGPULib.dylib,sha256=
|
80
|
+
pyhw/library/lib/iokitGPULib.dylib,sha256=18A4SyThKQvzEEOijeWb4XsgXO-iTFYGa0XtrDoBHjY,154808
|
81
81
|
pyhw/pyhwException/__init__.py,sha256=8JsFvtF13g0Y5t4z9fRndDXtfCzuBM59jDf6PhWSFSk,220
|
82
82
|
pyhw/pyhwException/pyhwException.py,sha256=wxuzFQa9g7XB1q9TUKO_55lw7wMEJMpzG8w1GVTFVa0,197
|
83
83
|
pyhw/pyhwUtil/__init__.py,sha256=PzeP9fXsIhvr3sUpJ4DxW9_H25DEIasBFfXd_NztfR4,226
|
84
84
|
pyhw/pyhwUtil/pyhwUtil.py,sha256=CKXJrt6KGhZCV1J7MjsQ21c_jPmC1I3wZBPCKJfdqbM,2478
|
85
85
|
pyhw/pyhwUtil/sysctlUtil.py,sha256=S-rUvqi7ZrMyMouIhxlyHEQ4agM7sCT1Y7uzs3Hu5-o,841
|
86
|
-
pyhw-0.6.
|
87
|
-
pyhw-0.6.
|
88
|
-
pyhw-0.6.
|
89
|
-
pyhw-0.6.
|
90
|
-
pyhw-0.6.
|
91
|
-
pyhw-0.6.
|
86
|
+
pyhw-0.6.4.dist-info/LICENSE,sha256=hJs6RBqSVCexbTsalkMLNFI5t06kekQEsSVaOt_-yLs,1497
|
87
|
+
pyhw-0.6.4.dist-info/METADATA,sha256=sVm6HaUN-JkIvFZvFqCIbvzdxSp0rM0MlKKd1eCibv8,4742
|
88
|
+
pyhw-0.6.4.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
89
|
+
pyhw-0.6.4.dist-info/entry_points.txt,sha256=q-AB8im_QahpmNrmy4aPTJRGi0LlbNlnI3kF7s6pKss,44
|
90
|
+
pyhw-0.6.4.dist-info/top_level.txt,sha256=7Inxvxt1TngEricKZEex9_WJZS3DbKYFUXDz4v5WHYU,5
|
91
|
+
pyhw-0.6.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|