Metadata-Version: 2.1
Name: mactemperatures
Version: 0.0.2
Summary: Python Package for Obtaining Temperature Sensor Readings on M1 Macs
Home-page: https://github.com/joshunrau/mac-temperatures
Author: Joshua Unrau
Author-email: contact@joshuaunrau.com
Project-URL: Bug Tracker, https://github.com/joshunrau/mac-temperatures/issues
Classifier: Programming Language :: C
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Mac Temperatures

This is a simple program to obtain readings from thermal sensors on M1 Macs. I adapted the Objective-C [code](https://github.com/fermion-star/apple_sensors) written by fermion-star as a C program and wrote Python bindings to make the code more flexible and easier to use.

## Install

```shell
pip install mactemperatures
```

## Usage

```python
>>> from mactemperatures import get_thermal_readings
>>> get_thermal_readings()
```
