pyhw 0.14.0__tar.gz → 0.14.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.
Files changed (135) hide show
  1. {pyhw-0.14.0/src/pyhw.egg-info → pyhw-0.14.2}/PKG-INFO +1 -1
  2. {pyhw-0.14.0 → pyhw-0.14.2}/pyproject.toml +1 -1
  3. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/__init__.py +1 -1
  4. pyhw-0.14.2/src/pyhw/backend/nic/macos.py +192 -0
  5. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/npu/macos.py +15 -15
  6. pyhw-0.14.2/src/pyhw/library/lib/iokitNICLib.dylib +0 -0
  7. pyhw-0.14.2/src/pyhw/library/test/iokitNICLibTest.py +76 -0
  8. {pyhw-0.14.0 → pyhw-0.14.2/src/pyhw.egg-info}/PKG-INFO +1 -1
  9. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw.egg-info/SOURCES.txt +2 -0
  10. pyhw-0.14.0/src/pyhw/backend/nic/macos.py +0 -25
  11. {pyhw-0.14.0 → pyhw-0.14.2}/LICENSE +0 -0
  12. {pyhw-0.14.0 → pyhw-0.14.2}/README.md +0 -0
  13. {pyhw-0.14.0 → pyhw-0.14.2}/setup.cfg +0 -0
  14. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/__main__.py +0 -0
  15. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/__init__.py +0 -0
  16. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/backendBase.py +0 -0
  17. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/cpu/__init__.py +0 -0
  18. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/cpu/bsd.py +0 -0
  19. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/cpu/cpuBase.py +0 -0
  20. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/cpu/cpuInfo.py +0 -0
  21. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/cpu/linux.py +0 -0
  22. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/cpu/macos.py +0 -0
  23. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/cpu/windows.py +0 -0
  24. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/gpu/__init__.py +0 -0
  25. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/gpu/bsd.py +0 -0
  26. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/gpu/gpuBase.py +0 -0
  27. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/gpu/gpuInfo.py +0 -0
  28. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/gpu/linux.py +0 -0
  29. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/gpu/macos.py +0 -0
  30. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/gpu/windows.py +0 -0
  31. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/host/__init__.py +0 -0
  32. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/host/bsd.py +0 -0
  33. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/host/hostBase.py +0 -0
  34. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/host/hostInfo.py +0 -0
  35. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/host/linux.py +0 -0
  36. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/host/macos.py +0 -0
  37. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/host/windows.py +0 -0
  38. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/kernel/__init__.py +0 -0
  39. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/kernel/kernelBase.py +0 -0
  40. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/kernel/kernelInfo.py +0 -0
  41. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/kernel/unix.py +0 -0
  42. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/kernel/windows.py +0 -0
  43. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/memory/__init__.py +0 -0
  44. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/memory/bsd.py +0 -0
  45. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/memory/linux.py +0 -0
  46. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/memory/macos.py +0 -0
  47. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/memory/memoryBase.py +0 -0
  48. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/memory/memoryInfo.py +0 -0
  49. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/memory/windows.py +0 -0
  50. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/nic/__init__.py +0 -0
  51. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/nic/bsd.py +0 -0
  52. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/nic/linux.py +0 -0
  53. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/nic/nicBase.py +0 -0
  54. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/nic/nicInfo.py +0 -0
  55. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/nic/windows.py +0 -0
  56. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/npu/__init__.py +0 -0
  57. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/npu/bsd.py +0 -0
  58. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/npu/linux.py +0 -0
  59. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/npu/npuBase.py +0 -0
  60. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/npu/npuInfo.py +0 -0
  61. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/npu/windows.py +0 -0
  62. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/os/__init__.py +0 -0
  63. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/os/bsd.py +0 -0
  64. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/os/linux.py +0 -0
  65. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/os/macos.py +0 -0
  66. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/os/osBase.py +0 -0
  67. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/os/osInfo.py +0 -0
  68. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/os/windows.py +0 -0
  69. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/shell/__init__.py +0 -0
  70. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/shell/shellBase.py +0 -0
  71. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/shell/shellInfo.py +0 -0
  72. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/shell/unix.py +0 -0
  73. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/shell/windows.py +0 -0
  74. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/title/__init__.py +0 -0
  75. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/title/titleBase.py +0 -0
  76. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/title/titleInfo.py +0 -0
  77. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/title/unix.py +0 -0
  78. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/title/windows.py +0 -0
  79. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/uptime/__init__.py +0 -0
  80. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/uptime/bsd.py +0 -0
  81. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/uptime/linux.py +0 -0
  82. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/uptime/macos.py +0 -0
  83. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/uptime/uptimeBase.py +0 -0
  84. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/uptime/uptimeInfo.py +0 -0
  85. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/backend/uptime/windows.py +0 -0
  86. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/__init__.py +0 -0
  87. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/color/__init__.py +0 -0
  88. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/color/colorConfig.py +0 -0
  89. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/color/colorSet.py +0 -0
  90. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/color/colorUtil.py +0 -0
  91. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/frontendBase.py +0 -0
  92. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/__init__.py +0 -0
  93. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/alpine.pyhw +0 -0
  94. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/arch.pyhw +0 -0
  95. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/armbian.pyhw +0 -0
  96. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/centos.pyhw +0 -0
  97. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/debian.pyhw +0 -0
  98. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/fedora.pyhw +0 -0
  99. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/fedora_small.pyhw +0 -0
  100. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/freebsd.pyhw +0 -0
  101. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/kali.pyhw +0 -0
  102. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/linux.pyhw +0 -0
  103. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/linuxmint.pyhw +0 -0
  104. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/macOS.pyhw +0 -0
  105. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/opensuse-leap.pyhw +0 -0
  106. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/opensuse-tumbleweed.pyhw +0 -0
  107. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/raspbian.pyhw +0 -0
  108. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/rhel.pyhw +0 -0
  109. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/ubuntu.pyhw +0 -0
  110. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/ubuntu_small.pyhw +0 -0
  111. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/windows_10.pyhw +0 -0
  112. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/windows_11.pyhw +0 -0
  113. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/windows_2025.pyhw +0 -0
  114. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/ascii/windows_old.pyhw +0 -0
  115. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/frontend/logo/logoBase.py +0 -0
  116. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/library/lib/iokitCPULib.dylib +0 -0
  117. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/library/lib/iokitGPULib.dylib +0 -0
  118. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/library/lib/iokitHostLib.dylib +0 -0
  119. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/library/lib/nvmlGPULib_amd64.so +0 -0
  120. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/library/lib/nvmlGPULib_arm64.so +0 -0
  121. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/library/test/iokitCPULibTest.py +0 -0
  122. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/library/test/iokitHostLibTest.py +0 -0
  123. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/library/test/nvmlGPULibTest.py +0 -0
  124. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/pyhwException/__init__.py +0 -0
  125. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/pyhwException/pyhwException.py +0 -0
  126. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/pyhwUtil/__init__.py +0 -0
  127. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/pyhwUtil/cliUtil.py +0 -0
  128. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/pyhwUtil/pciUtil.py +0 -0
  129. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/pyhwUtil/pyhwUtil.py +0 -0
  130. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw/pyhwUtil/sysctlUtil.py +0 -0
  131. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw.egg-info/dependency_links.txt +0 -0
  132. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw.egg-info/entry_points.txt +0 -0
  133. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw.egg-info/requires.txt +0 -0
  134. {pyhw-0.14.0 → pyhw-0.14.2}/src/pyhw.egg-info/top_level.txt +0 -0
  135. {pyhw-0.14.0 → pyhw-0.14.2}/test/test_cliUtil.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyhw
3
- Version: 0.14.0
3
+ Version: 0.14.2
4
4
  Summary: PyHw, a neofetch-like command line tool for fetching system information but written mostly in python.
5
5
  Author: Xiao Ran
6
6
  Maintainer-email: Xiao Ran <xiaoran.007@icloud.com>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pyhw"
7
- version = "0.14.0"
7
+ version = "0.14.2"
8
8
  description = "PyHw, a neofetch-like command line tool for fetching system information but written mostly in python."
9
9
  keywords = ["neofetch", "system information", "command line tool", "python", "hardware information", "fastfetch", "fetching"]
10
10
  authors = [
@@ -1,2 +1,2 @@
1
- __version__ = '0.14.0'
1
+ __version__ = '0.14.2'
2
2
  __author__ = 'xiaoran007'
@@ -0,0 +1,192 @@
1
+ from .nicInfo import NICInfo
2
+ import subprocess
3
+ import ctypes
4
+ from ctypes import c_char_p, c_bool, c_int32, c_char, byref, create_string_buffer
5
+ from pathlib import Path
6
+
7
+
8
+ class NICDetectMacOS:
9
+ def __init__(self):
10
+ self.__nicInfo = NICInfo()
11
+
12
+ def getNICInfo(self):
13
+ self.__getNICInfo()
14
+ return self.__nicInfo
15
+
16
+ def __getNICInfo(self):
17
+ # Try to get NIC info using IOKit first
18
+ if not self.__getNICInfoIOKit():
19
+ try:
20
+ # Get default interface
21
+ cmd_get_interface = "route get default | grep interface"
22
+ interface_output = subprocess.run(["bash", "-c", cmd_get_interface],
23
+ capture_output=True, text=True).stdout.strip()
24
+ interface = interface_output.split(":")[1].strip()
25
+
26
+ # Get IP address
27
+ if_ip = subprocess.run(["bash", "-c", f"ipconfig getifaddr {interface}"],
28
+ capture_output=True, text=True).stdout.strip()
29
+
30
+ # Get interface type and link speed
31
+ link_info = self.__getLinkInfo(interface)
32
+
33
+ # Add all information to nicInfo
34
+ self.__nicInfo.nics.append(f"{interface} @ {if_ip} - {link_info}")
35
+ self.__nicInfo.number += 1
36
+ except Exception as e:
37
+ self.__handleError()
38
+ else:
39
+ pass
40
+
41
+ def __getNICInfoIOKit(self):
42
+ try:
43
+ package_root = Path(__file__).resolve().parent.parent.parent
44
+ lib = ctypes.CDLL(f"{package_root}/library/lib/iokitNICLib.dylib")
45
+
46
+ lib.getDefaultInterface.argtypes = [c_char_p]
47
+ lib.getDefaultInterface.restype = c_bool
48
+
49
+ lib.getNetworkInfo.argtypes = [c_char_p, ctypes.POINTER(c_bool),
50
+ c_char_p, ctypes.POINTER(c_int32),
51
+ c_char_p, c_char_p, c_char_p, c_char_p]
52
+ lib.getNetworkInfo.restype = c_bool
53
+ interface = create_string_buffer(32)
54
+ if lib.getDefaultInterface(interface):
55
+ interface_str = interface.value.decode('utf-8')
56
+
57
+ is_wifi = c_bool(False)
58
+ ip_address = create_string_buffer(32)
59
+ speed = c_int32(0)
60
+ band = create_string_buffer(16)
61
+ channel = create_string_buffer(32)
62
+ conn_type = create_string_buffer(32)
63
+ wifi_standard = create_string_buffer(16)
64
+
65
+ if lib.getNetworkInfo(interface_str.encode('utf-8'),
66
+ byref(is_wifi),
67
+ ip_address,
68
+ byref(speed),
69
+ band,
70
+ channel,
71
+ conn_type,
72
+ wifi_standard):
73
+
74
+ if is_wifi.value:
75
+ conn_info = f"{conn_type.value.decode('utf-8')} 802.11{wifi_standard.value.decode('utf-8')} ({band.value.decode('utf-8')} {speed.value} Mbps)"
76
+ else:
77
+ conn_info = conn_type.value.decode('utf-8')
78
+
79
+ formatted_output = f"{interface_str} @ {ip_address.value.decode('utf-8')} - {conn_info}"
80
+
81
+ self.__nicInfo.nics.append(formatted_output)
82
+ self.__nicInfo.number += 1
83
+
84
+ return True
85
+
86
+ else:
87
+ return False
88
+ else:
89
+ return False
90
+
91
+ except Exception as e:
92
+ # print(f"An error occurred while getting NIC info using IOKit: {e}")
93
+ return False
94
+
95
+
96
+ def __getLinkInfo(self, interface):
97
+ try:
98
+ # Check if interface is wireless
99
+ is_wifi_cmd = f"networksetup -getairportpower {interface} 2>/dev/null"
100
+ is_wifi_result = subprocess.run(["bash", "-c", is_wifi_cmd],
101
+ capture_output=True, text=True).returncode
102
+
103
+ if is_wifi_result == 0: # This is a Wi-Fi interface
104
+ speed, channel, band = self.__getWifiInfo(interface)
105
+ return f"Wi-Fi {band} ({speed} Mbps)"
106
+ else:
107
+ # For wired connections, get link speed using networksetup
108
+ media_cmd = f"networksetup -getmedia {interface} | grep 'Active'"
109
+ media_info = subprocess.run(["bash", "-c", media_cmd],
110
+ capture_output=True, text=True).stdout.strip()
111
+
112
+ if media_info:
113
+ parts = media_info.split(':', 1)
114
+ if len(parts) > 1:
115
+ # Extract "2500Base-T <full-duplex>" part
116
+ media_details = parts[1].strip()
117
+
118
+ # Parse the speed part (e.g., "2500Base-T")
119
+ speed_part = media_details.split()[0] if media_details else ""
120
+
121
+ if "2500Base-T" in speed_part:
122
+ return "Wired (2.5 Gbps)"
123
+ elif "1000Base-T" in speed_part:
124
+ return "Wired (1 Gbps)"
125
+ elif "100Base-T" in speed_part:
126
+ return "Wired (100 Mbps)"
127
+ elif "10000Base-T" in speed_part:
128
+ return "Wired (10 Gbps)"
129
+ elif "Base-T" in speed_part or "base-T" in speed_part:
130
+ # Extract the numeric part from formats like "5000Base-T"
131
+ import re
132
+ speed_match = re.search(r'(\d+)(?:Base-T|base-T)', speed_part)
133
+ if speed_match:
134
+ speed_value = int(speed_match.group(1))
135
+ if speed_value >= 1000:
136
+ return f"Wired ({speed_value / 1000:.1f} Gbps)"
137
+ else:
138
+ return f"Wired ({speed_value} Mbps)"
139
+ return f"Wired ({speed_part})"
140
+ except:
141
+ return "Unknown connection type"
142
+
143
+ def __getWifiInfo(self, interface):
144
+ # 使用 system_profiler 获取 WiFi 信息
145
+ profiler_cmd = f"system_profiler SPAirPortDataType -json"
146
+ try:
147
+ wifi_data = subprocess.run(["bash", "-c", profiler_cmd],
148
+ capture_output=True, text=True, timeout=5).stdout
149
+
150
+ import json
151
+ data = json.loads(wifi_data)
152
+
153
+ # 根据实际 JSON 结构提取信息
154
+ if 'SPAirPortDataType' in data and isinstance(data['SPAirPortDataType'], list):
155
+ airport_data = data['SPAirPortDataType'][0]
156
+
157
+ # 获取接口列表
158
+ if 'spairport_airport_interfaces' in airport_data:
159
+ interfaces = airport_data['spairport_airport_interfaces']
160
+
161
+ # 查找匹配的接口
162
+ for iface in interfaces:
163
+ if interface == iface.get('_name', ''):
164
+ # 获取当前网络信息
165
+ current_network = iface.get('spairport_current_network_information', {})
166
+
167
+ # 从当前连接中提取速率
168
+ speed = current_network.get('spairport_network_rate', 'Unknown')
169
+
170
+ # 获取信道信息
171
+ channel_info = current_network.get('spairport_network_channel', 'Unknown')
172
+
173
+ # 确定频段信息
174
+ band = "Unknown"
175
+ if isinstance(channel_info, str) and "GHz" in channel_info:
176
+ if "2GHz" in channel_info:
177
+ band = "2.4GHz"
178
+ elif "5GHz" in channel_info:
179
+ band = "5GHz"
180
+ elif "6GHz" in channel_info:
181
+ band = "6GHz"
182
+
183
+ return speed, channel_info, band
184
+
185
+ return "Unknown", "Unknown", "Unknown"
186
+ except Exception as e:
187
+ # 可以考虑添加日志记录 print(f"WiFi info error: {str(e)}")
188
+ return "Unknown", "Unknown", "Unknown"
189
+
190
+ def __handleError(self):
191
+ self.__nicInfo.nics.append("en0 - Unknown connection")
192
+ self.__nicInfo.number = 1
@@ -44,20 +44,20 @@ class NPUDetectMacOS:
44
44
  # see https://apple.fandom.com/wiki/Neural_Engine for more details.
45
45
  model_name = CPUDetect(os=getOS()).getCPUInfo().model
46
46
  npu = {
47
- "Apple M1": "Apple Neural Engine 16 Cores (5nm) [SOC Integrated]",
48
- "Apple M1 Pro": "Apple Neural Engine 16 Cores (5nm) [SOC Integrated]",
49
- "Apple M1 Max": "Apple Neural Engine 16 Cores (5nm) [SOC Integrated]",
50
- "Apple M1 Ultra": "Apple Neural Engine 32 Cores (5nm) [SOC Integrated]",
51
- "Apple M2": "Apple Neural Engine 16 Cores (5nm) [SOC Integrated]",
52
- "Apple M2 Pro": "Apple Neural Engine 16 Cores (5nm) [SOC Integrated]",
53
- "Apple M2 Max": "Apple Neural Engine 16 Cores (5nm) [SOC Integrated]",
54
- "Apple M2 Ultra": "Apple Neural Engine 32 Cores (5nm) [SOC Integrated]",
55
- "Apple M3": "Apple Neural Engine 16 Cores (3nm) [SOC Integrated]",
56
- "Apple M3 Pro": "Apple Neural Engine 16 Cores (3nm) [SOC Integrated]",
57
- "Apple M3 Max": "Apple Neural Engine 16 Cores (3nm) [SOC Integrated]",
58
- "Apple M3 Ultra": "Apple Neural Engine 32 Cores (3nm) [SOC Integrated]",
59
- "Apple M4": "Apple Neural Engine 16 Cores (3nm) [SOC Integrated]",
60
- "Apple M4 Pro": "Apple Neural Engine 16 Cores (3nm) [SOC Integrated]",
61
- "Apple M4 Max": "Apple Neural Engine 16 Cores (3nm) [SOC Integrated]"
47
+ "Apple M1": "Apple Neural Engine 16 Cores (11 TOPS) [SOC Integrated]",
48
+ "Apple M1 Pro": "Apple Neural Engine 16 Cores (11 TOPS [SOC Integrated]",
49
+ "Apple M1 Max": "Apple Neural Engine 16 Cores (11 TOPS) [SOC Integrated]",
50
+ "Apple M1 Ultra": "Apple Neural Engine 32 Cores (22 TOPS) [SOC Integrated]",
51
+ "Apple M2": "Apple Neural Engine 16 Cores (15.8 TOPS) [SOC Integrated]",
52
+ "Apple M2 Pro": "Apple Neural Engine 16 Cores (15.8 TOPS) [SOC Integrated]",
53
+ "Apple M2 Max": "Apple Neural Engine 16 Cores (15.8 TOPS) [SOC Integrated]",
54
+ "Apple M2 Ultra": "Apple Neural Engine 32 Cores (31.6 TOPS) [SOC Integrated]",
55
+ "Apple M3": "Apple Neural Engine 16 Cores (18 TOPS) [SOC Integrated]",
56
+ "Apple M3 Pro": "Apple Neural Engine 16 Cores (18 TOPS) [SOC Integrated]",
57
+ "Apple M3 Max": "Apple Neural Engine 16 Cores (18 TOPS) [SOC Integrated]",
58
+ "Apple M3 Ultra": "Apple Neural Engine 32 Cores (36 TOPS) [SOC Integrated]",
59
+ "Apple M4": "Apple Neural Engine 16 Cores (38 TOPS) [SOC Integrated]",
60
+ "Apple M4 Pro": "Apple Neural Engine 16 Cores (38 TOPS) [SOC Integrated]",
61
+ "Apple M4 Max": "Apple Neural Engine 16 Cores (38 TOPS) [SOC Integrated]"
62
62
  }
63
63
  return npu.get(model_name, "Not Found")
@@ -0,0 +1,76 @@
1
+ import ctypes
2
+ from ctypes import c_char_p, c_bool, c_int32, c_char, byref, create_string_buffer
3
+ import os
4
+
5
+
6
+ def main():
7
+ current_dir = os.path.dirname(os.path.abspath(__file__))
8
+ lib_path = os.path.join(current_dir, "../lib/iokitNICLib.dylib")
9
+
10
+ try:
11
+ lib = ctypes.CDLL(lib_path)
12
+
13
+ lib.getDefaultInterface.argtypes = [c_char_p]
14
+ lib.getDefaultInterface.restype = c_bool
15
+
16
+ lib.getNetworkInfo.argtypes = [c_char_p, ctypes.POINTER(c_bool),
17
+ c_char_p, ctypes.POINTER(c_int32),
18
+ c_char_p, c_char_p, c_char_p, c_char_p]
19
+ lib.getNetworkInfo.restype = c_bool
20
+
21
+ interface = create_string_buffer(32)
22
+ if lib.getDefaultInterface(interface):
23
+ interface_str = interface.value.decode('utf-8')
24
+
25
+ # interface_str = "en1"
26
+ print(f"默认网络接口: {interface_str}")
27
+
28
+ is_wifi = c_bool(False)
29
+ ip_address = create_string_buffer(32)
30
+ speed = c_int32(0)
31
+ band = create_string_buffer(16)
32
+ channel = create_string_buffer(32)
33
+ conn_type = create_string_buffer(32)
34
+ wifi_standard = create_string_buffer(16)
35
+
36
+ if lib.getNetworkInfo(interface_str.encode('utf-8'),
37
+ byref(is_wifi),
38
+ ip_address,
39
+ byref(speed),
40
+ band,
41
+ channel,
42
+ conn_type,
43
+ wifi_standard):
44
+
45
+ print("=== 网络信息 ===")
46
+ print(f"接口: {interface_str}")
47
+ print(f"IP地址: {ip_address.value.decode('utf-8')}")
48
+ print(f"连接类型: {conn_type.value.decode('utf-8')}")
49
+ print(f"速度: {speed.value} Mbps")
50
+
51
+ if is_wifi.value:
52
+ print(f"Wi-Fi频段: {band.value.decode('utf-8')}")
53
+ print(f"信道: {channel.value.decode('utf-8')}")
54
+ print(f"Wi-Fi标准: {wifi_standard.value.decode('utf-8')}")
55
+
56
+ if is_wifi.value:
57
+ wifi_info = f"{wifi_standard.value.decode('utf-8')} {band.value.decode('utf-8')}"
58
+ conn_info = f"{conn_type.value.decode('utf-8')} ({wifi_info}, {speed.value} Mbps)"
59
+ else:
60
+ conn_info = conn_type.value.decode('utf-8')
61
+
62
+ formatted_output = f"{interface_str} @ {ip_address.value.decode('utf-8')} - {conn_info}"
63
+ print("\n格式化输出:")
64
+ print(formatted_output)
65
+ else:
66
+ print(f"无法获取接口 {interface_str} 的网络信息")
67
+ else:
68
+ print("无法获取默认网络接口")
69
+
70
+ except Exception as e:
71
+ print(f"错误: {e}")
72
+
73
+
74
+ if __name__ == "__main__":
75
+ main()
76
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyhw
3
- Version: 0.14.0
3
+ Version: 0.14.2
4
4
  Summary: PyHw, a neofetch-like command line tool for fetching system information but written mostly in python.
5
5
  Author: Xiao Ran
6
6
  Maintainer-email: Xiao Ran <xiaoran.007@icloud.com>
@@ -115,10 +115,12 @@ src/pyhw/frontend/logo/ascii/windows_old.pyhw
115
115
  src/pyhw/library/lib/iokitCPULib.dylib
116
116
  src/pyhw/library/lib/iokitGPULib.dylib
117
117
  src/pyhw/library/lib/iokitHostLib.dylib
118
+ src/pyhw/library/lib/iokitNICLib.dylib
118
119
  src/pyhw/library/lib/nvmlGPULib_amd64.so
119
120
  src/pyhw/library/lib/nvmlGPULib_arm64.so
120
121
  src/pyhw/library/test/iokitCPULibTest.py
121
122
  src/pyhw/library/test/iokitHostLibTest.py
123
+ src/pyhw/library/test/iokitNICLibTest.py
122
124
  src/pyhw/library/test/nvmlGPULibTest.py
123
125
  src/pyhw/pyhwException/__init__.py
124
126
  src/pyhw/pyhwException/pyhwException.py
@@ -1,25 +0,0 @@
1
- from .nicInfo import NICInfo
2
- import subprocess
3
-
4
-
5
- class NICDetectMacOS:
6
- def __init__(self):
7
- self.__nicInfo = NICInfo()
8
-
9
- def getNICInfo(self):
10
- self.__getNICInfo()
11
- return self.__nicInfo
12
-
13
- def __getNICInfo(self):
14
- # Placeholder for a more advanced method.
15
- try:
16
- interface = subprocess.run(["bash", "-c", "route get default | grep interface"], capture_output=True, text=True).stdout.strip().split(":")[1]
17
- if_ip = subprocess.run(["bash", "-c", f"ipconfig getifaddr {interface}"], capture_output=True, text=True).stdout.strip()
18
- self.__nicInfo.nics.append(f"{interface} @ {if_ip}")
19
- self.__nicInfo.number += 1
20
- except:
21
- self.__handleError()
22
-
23
- def __handleError(self):
24
- self.__nicInfo.nics.append("en0")
25
- self.__nicInfo.number = 1
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes