Metadata-Version: 2.1
Name: WinTmp
Version: 1.0.0
Summary: A package used to get temperature on Windows Machines.
Author-email: Kethan Vegunta <kethan@vegunta.com>
Keywords: windows,temperature,cpu,gpu,amd,intel,nvidia
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pythonnet
Requires-Dist: wmi

# WinTmp

This is a Python module used to getting temperatures of the CPU and GPU in windows. If this module doesn't work, please open an issue!

This module needs to be run as administrator.

Install:
`pip install WinTmp`

In admin command prompt type `python`.
Demo:

```python
>>> import WinTmp
>>> print(WinTmp.CPU_Temp())
38.0
>>> print(WinTmp.GPU_Temp())
35.0
>>>
```

PyPI: https://pypi.org/project/WinTmp/

Github: https://github.com/kethan1/WinTmp/
