HardwareMonitor 1.2.0__py3-none-win32.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 (54) hide show
  1. HardwareMonitor/Hardware/CPU/__init__.py +3 -0
  2. HardwareMonitor/Hardware/CPU/__init__.pyi +64 -0
  3. HardwareMonitor/Hardware/Controller/AeroCool/__init__.py +3 -0
  4. HardwareMonitor/Hardware/Controller/AeroCool/__init__.pyi +9 -0
  5. HardwareMonitor/Hardware/Controller/AquaComputer/__init__.py +3 -0
  6. HardwareMonitor/Hardware/Controller/AquaComputer/__init__.pyi +9 -0
  7. HardwareMonitor/Hardware/Controller/MSI/__init__.py +3 -0
  8. HardwareMonitor/Hardware/Controller/MSI/__init__.pyi +91 -0
  9. HardwareMonitor/Hardware/Controller/__init__.py +0 -0
  10. HardwareMonitor/Hardware/Gpu/__init__.py +3 -0
  11. HardwareMonitor/Hardware/Gpu/__init__.pyi +6 -0
  12. HardwareMonitor/Hardware/Motherboard/Lpc/EC/__init__.py +3 -0
  13. HardwareMonitor/Hardware/Motherboard/Lpc/EC/__init__.pyi +83 -0
  14. HardwareMonitor/Hardware/Motherboard/Lpc/__init__.py +0 -0
  15. HardwareMonitor/Hardware/Motherboard/__init__.py +3 -0
  16. HardwareMonitor/Hardware/Motherboard/__init__.pyi +420 -0
  17. HardwareMonitor/Hardware/PowerMonitor/__init__.py +3 -0
  18. HardwareMonitor/Hardware/PowerMonitor/__init__.pyi +26 -0
  19. HardwareMonitor/Hardware/Psu/Corsair/__init__.py +3 -0
  20. HardwareMonitor/Hardware/Psu/Corsair/__init__.pyi +9 -0
  21. HardwareMonitor/Hardware/Psu/Msi/__init__.py +3 -0
  22. HardwareMonitor/Hardware/Psu/Msi/__init__.pyi +9 -0
  23. HardwareMonitor/Hardware/Psu/__init__.py +3 -0
  24. HardwareMonitor/Hardware/Psu/__init__.pyi +7 -0
  25. HardwareMonitor/Hardware/Storage/__init__.py +3 -0
  26. HardwareMonitor/Hardware/Storage/__init__.pyi +49 -0
  27. HardwareMonitor/Hardware/__init__.py +3 -0
  28. HardwareMonitor/Hardware/__init__.pyi +968 -0
  29. HardwareMonitor/Interop/PowerMonitor/__init__.py +3 -0
  30. HardwareMonitor/Interop/PowerMonitor/__init__.pyi +251 -0
  31. HardwareMonitor/Interop/__init__.py +3 -0
  32. HardwareMonitor/PawnIo/__init__.py +3 -0
  33. HardwareMonitor/PawnIo/__init__.pyi +109 -0
  34. HardwareMonitor/Software/__init__.py +3 -0
  35. HardwareMonitor/Software/__init__.pyi +9 -0
  36. HardwareMonitor/Util.py +200 -0
  37. HardwareMonitor/__init__.py +51 -0
  38. HardwareMonitor/_util/types.py +0 -0
  39. HardwareMonitor/_util/types.pyi +239 -0
  40. HardwareMonitor/lib/BlackSharp.Core.dll +0 -0
  41. HardwareMonitor/lib/DiskInfoToolkit.dll +0 -0
  42. HardwareMonitor/lib/HidSharp.dll +0 -0
  43. HardwareMonitor/lib/LICENSE +373 -0
  44. HardwareMonitor/lib/LibreHardwareMonitorLib.dll +0 -0
  45. HardwareMonitor/lib/RAMSPDToolkit-NDD.dll +0 -0
  46. HardwareMonitor/lib/System.Memory.dll +0 -0
  47. HardwareMonitor/lib/System.Numerics.Vectors.dll +0 -0
  48. HardwareMonitor/lib/System.Runtime.CompilerServices.Unsafe.dll +0 -0
  49. HardwareMonitor/lib/__init__.py +0 -0
  50. hardwaremonitor-1.2.0.dist-info/METADATA +198 -0
  51. hardwaremonitor-1.2.0.dist-info/RECORD +54 -0
  52. hardwaremonitor-1.2.0.dist-info/WHEEL +5 -0
  53. hardwaremonitor-1.2.0.dist-info/licenses/LICENSE +29 -0
  54. hardwaremonitor-1.2.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,3 @@
1
+ # Generated namespace __init__.py file for 'HardwareMonitor.Hardware.Cpu'
2
+
3
+ from LibreHardwareMonitor.Hardware.Cpu import *
@@ -0,0 +1,64 @@
1
+ from HardwareMonitor._util.types import UInt32
2
+ from typing import List, Set
3
+
4
+
5
+ class CpuId:
6
+ @property
7
+ def Affinity(self) -> GroupAffinity: ...
8
+ @property
9
+ def ApicId(self) -> UInt32: ...
10
+ @property
11
+ def BrandString(self) -> str: ...
12
+ @property
13
+ def CoreId(self) -> UInt32: ...
14
+ @property
15
+ def CoreType(self) -> CoreType: ...
16
+ @property
17
+ def Data(self) -> List[UInt32]: ...
18
+ @property
19
+ def ExtData(self) -> List[UInt32]: ...
20
+ @property
21
+ def Family(self) -> UInt32: ...
22
+ @property
23
+ def Group(self) -> int: ...
24
+ @property
25
+ def Model(self) -> UInt32: ...
26
+ @property
27
+ def Name(self) -> str: ...
28
+ @property
29
+ def PkgType(self) -> UInt32: ...
30
+ @property
31
+ def ProcessorId(self) -> UInt32: ...
32
+ def Get(group: int, thread: int) -> CpuId: ...
33
+ @property
34
+ def Stepping(self) -> UInt32: ...
35
+ @property
36
+ def Thread(self) -> int: ...
37
+ @property
38
+ def ThreadId(self) -> UInt32: ...
39
+ @property
40
+ def Vendor(self) -> Vendor: ...
41
+
42
+
43
+ class GenericCpu(Hardware):
44
+ def __init__(self, processorIndex: int, cpuId: Set[Set[CpuId]], settings: ISettings): ...
45
+ @property
46
+ def CpuId(self) -> Set[Set[CpuId]]: ...
47
+ @property
48
+ def HardwareType(self) -> HardwareType: ...
49
+ @property
50
+ def HasModelSpecificRegisters(self) -> bool: ...
51
+ @property
52
+ def HasTimeStampCounter(self) -> bool: ...
53
+ @property
54
+ def Index(self) -> int: ...
55
+ @property
56
+ def TimeStampCounterFrequency(self) -> float: ...
57
+ def GetReport(self) -> str: ...
58
+ def Update(self) -> None: ...
59
+
60
+
61
+ class Vendor:
62
+ Unknown = 0
63
+ Intel = 1
64
+ AMD = 2
@@ -0,0 +1,3 @@
1
+ # Generated namespace __init__.py file for 'HardwareMonitor.Hardware.Controller.AeroCool'
2
+
3
+ from LibreHardwareMonitor.Hardware.Controller.AeroCool import *
@@ -0,0 +1,9 @@
1
+ from HardwareMonitor._util.types import IReadOnlyList
2
+
3
+
4
+ class AeroCoolGroup:
5
+ def __init__(self, settings: ISettings): ...
6
+ def Close(self) -> None: ...
7
+ @property
8
+ def Hardware(self) -> IReadOnlyList: ...
9
+ def GetReport(self) -> str: ...
@@ -0,0 +1,3 @@
1
+ # Generated namespace __init__.py file for 'HardwareMonitor.Hardware.Controller.AquaComputer'
2
+
3
+ from LibreHardwareMonitor.Hardware.Controller.AquaComputer import *
@@ -0,0 +1,9 @@
1
+ from HardwareMonitor._util.types import IReadOnlyList
2
+
3
+
4
+ class AquaComputerGroup:
5
+ def __init__(self, settings: ISettings): ...
6
+ def Close(self) -> None: ...
7
+ @property
8
+ def Hardware(self) -> IReadOnlyList: ...
9
+ def GetReport(self) -> str: ...
@@ -0,0 +1,3 @@
1
+ # Generated namespace __init__.py file for 'HardwareMonitor.Hardware.Controller.MSI'
2
+
3
+ from LibreHardwareMonitor.Hardware.Controller.MSI import *
@@ -0,0 +1,91 @@
1
+ from HardwareMonitor._util.types import UInt32
2
+
3
+
4
+ class MsiDevice:
5
+ def __init__(self, msiDeviceType: MsiDeviceType, vendorId: int, productId: int, productIdController: int): ...
6
+ @property
7
+ def DeviceType(self) -> MsiDeviceType: ...
8
+ @property
9
+ def Name(self) -> str: ...
10
+ @property
11
+ def ProductId(self) -> int: ...
12
+ @property
13
+ def ProductIdController(self) -> int: ...
14
+ @property
15
+ def VendorId(self) -> int: ...
16
+ def SupportsHWMonitorIndex13and14(self, firmwareVersion: UInt32) -> bool: ...
17
+
18
+
19
+ class MsiDeviceType(int):
20
+ S280 = 0
21
+ S360 = 1
22
+ S360MEG = 2
23
+ X360 = 3
24
+ X240 = 4
25
+ D360 = 5
26
+ D240 = 6
27
+
28
+
29
+ class MsiFan:
30
+ def __init__(self): ...
31
+ @property
32
+ def Duty(self) -> int: ...
33
+ @property
34
+ def Speed(self) -> int: ...
35
+ @Duty.setter
36
+ def Duty(self, value: int) -> None: ...
37
+ @Speed.setter
38
+ def Speed(self, value: int) -> None: ...
39
+
40
+
41
+ class MsiFanConfigure:
42
+ def __init__(self): ...
43
+
44
+
45
+ class MsiFanControl:
46
+ def __init__(self): ...
47
+ @property
48
+ def Fan1(self) -> MsiFan: ...
49
+ @property
50
+ def Fan2(self) -> MsiFan: ...
51
+ @property
52
+ def Fan3(self) -> MsiFan: ...
53
+ @property
54
+ def Fan4(self) -> MsiFan: ...
55
+ @property
56
+ def Fan5(self) -> MsiFan: ...
57
+ @property
58
+ def TemperatureInlet(self) -> int: ...
59
+ @property
60
+ def TemperatureOutlet(self) -> int: ...
61
+ @property
62
+ def TemperatureSensor1(self) -> int: ...
63
+ @property
64
+ def TemperatureSensor2(self) -> int: ...
65
+ @Fan1.setter
66
+ def Fan1(self, value: MsiFan) -> None: ...
67
+ @Fan2.setter
68
+ def Fan2(self, value: MsiFan) -> None: ...
69
+ @Fan3.setter
70
+ def Fan3(self, value: MsiFan) -> None: ...
71
+ @Fan4.setter
72
+ def Fan4(self, value: MsiFan) -> None: ...
73
+ @Fan5.setter
74
+ def Fan5(self, value: MsiFan) -> None: ...
75
+ @TemperatureInlet.setter
76
+ def TemperatureInlet(self, value: int) -> None: ...
77
+ @TemperatureOutlet.setter
78
+ def TemperatureOutlet(self, value: int) -> None: ...
79
+ @TemperatureSensor1.setter
80
+ def TemperatureSensor1(self, value: int) -> None: ...
81
+ @TemperatureSensor2.setter
82
+ def TemperatureSensor2(self, value: int) -> None: ...
83
+
84
+
85
+ class MsiFanMode:
86
+ Silent = 0
87
+ Bios = 1
88
+ Game = 2
89
+ Custom = 3
90
+ Unknown = 4
91
+ Smart = 5
File without changes
@@ -0,0 +1,3 @@
1
+ # Generated namespace __init__.py file for 'HardwareMonitor.Hardware.Gpu'
2
+
3
+ from LibreHardwareMonitor.Hardware.Gpu import *
@@ -0,0 +1,6 @@
1
+
2
+
3
+ class GenericGpu(Hardware):
4
+ def Close(self) -> None: ...
5
+ @property
6
+ def DeviceId(self) -> str: ...
@@ -0,0 +1,3 @@
1
+ # Generated namespace __init__.py file for 'HardwareMonitor.Hardware.Motherboard.Lpc.EC'
2
+
3
+ from LibreHardwareMonitor.Hardware.Motherboard.Lpc.EC import *
@@ -0,0 +1,83 @@
1
+ from HardwareMonitor._util.types import AsyncCallback, Byte, IAsyncResult, IntPtr, Object, Single, UInt16
2
+ from typing import Iterable, Set
3
+
4
+
5
+ class BadConfigurationException:
6
+ def __init__(self, message: str): ...
7
+
8
+
9
+ class BusMutexLockingFailedException:
10
+ def __init__(self): ...
11
+
12
+
13
+ class BusMutexLockingFailedException:
14
+ def __init__(self): ...
15
+
16
+
17
+ class ChromeOSEmbeddedController(EmbeddedController):
18
+ def __init__(self, sources: Iterable[EmbeddedControllerSource], settings: ISettings): ...
19
+ def Create(settings: ISettings) -> ChromeOSEmbeddedController: ...
20
+
21
+
22
+ class ChromeOSEmbeddedControllerIO:
23
+ def __init__(self): ...
24
+ def Dispose(self) -> None: ...
25
+ def Read(self, registers: Set[UInt16], data: Set[Byte]) -> None: ...
26
+ def ReadMemmap(self, offset: Byte, bytes: Byte) -> Set[Byte]: ...
27
+ def TempSensorGetName(self, index: Byte) -> str: ...
28
+
29
+
30
+ class EmbeddedController(Hardware):
31
+ @property
32
+ def HardwareType(self) -> HardwareType: ...
33
+ def GetReport(self) -> str: ...
34
+ def Update(self) -> None: ...
35
+
36
+
37
+ class EmbeddedControllerReader:
38
+ def __init__(self, object: Object, method: IntPtr): ...
39
+ def BeginInvoke(self, ecIO: IEmbeddedControllerIO, register: UInt16, callback: AsyncCallback, object: Object) -> IAsyncResult: ...
40
+ def EndInvoke(self, result: IAsyncResult) -> Single: ...
41
+ def Invoke(self, ecIO: IEmbeddedControllerIO, register: UInt16) -> Single: ...
42
+
43
+
44
+ class EmbeddedControllerSource:
45
+ def __init__(self, name: str, type: SensorType, register: UInt16, size: Byte, factor: Single, offset: Single, blank: int, isLittleEndian: bool): ...
46
+ @property
47
+ def Blank(self) -> int: ...
48
+ @property
49
+ def Factor(self) -> Single: ...
50
+ @property
51
+ def IsLittleEndian(self) -> bool: ...
52
+ @property
53
+ def Name(self) -> str: ...
54
+ @property
55
+ def Offset(self) -> Single: ...
56
+ @property
57
+ def Register(self) -> UInt16: ...
58
+ @property
59
+ def Size(self) -> Byte: ...
60
+ @property
61
+ def Type(self) -> SensorType: ...
62
+
63
+
64
+ class IEmbeddedControllerIO:
65
+ def Read(self, registers: Set[UInt16], data: Set[Byte]) -> None: ...
66
+
67
+
68
+ class IOException:
69
+ def __init__(self, message: str): ...
70
+
71
+
72
+ class MultipleBoardRecordsFoundException:
73
+ def __init__(self, model: str): ...
74
+
75
+
76
+ class WindowsEmbeddedController(EmbeddedController):
77
+ def __init__(self, sources: Iterable[EmbeddedControllerSource], settings: ISettings): ...
78
+
79
+
80
+ class WindowsEmbeddedControllerIO:
81
+ def __init__(self): ...
82
+ def Dispose(self) -> None: ...
83
+ def Read(self, registers: Set[UInt16], data: Set[Byte]) -> None: ...
File without changes
@@ -0,0 +1,3 @@
1
+ # Generated namespace __init__.py file for 'HardwareMonitor.Hardware.Motherboard'
2
+
3
+ from LibreHardwareMonitor.Hardware.Motherboard import *