Metadata-Version: 2.1
Name: MacTmp
Version: 0.0.8
Summary: A package used to get temperatures on Mac OS Machines. 
Home-page: UNKNOWN
Author: Kethan
Author-email: kethan@vegunta.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Requires-Python: >=3.3
Description-Content-Type: text/markdown

# MacTmp

This is a python module used to getting temperatures of the cpu and gpu in Mac OS. If a hardware configurate does not work, make sure to open an issue. 

`pip install MacTmp` for Python2 or `pip3 install MacTmp` for Python3

Try to run using `sudo` if it does not work. 

`sudo Python` in Python2 or `sudo Python3` in Python3 

Below is the example code:

```
>>>import MacTmp

>>>print(MacTmp.CPU_Temp()) #To get CPU Temperature

>>>print(MacTmp.GPU_Temp()) #To get GPU Temperature
```

Note: The gpu_temp does not work with Intel Integrated Graphics. 

Pypi page here: https://pypi.org/project/MacTmp/

Github Page Here: https://github.com/kethan1/MacTmp/


