Metadata-Version: 2.1
Name: philips-air-purifier
Version: 0.0.2
Summary: A Python API to monitor and control Philips air purifiers.
Home-page: https://github.com/urbas/philips-air-purifier
Author: Matej Urbas
Author-email: matej.urbas@gmail.com
License: UNKNOWN
Keywords: philips-air-purifier
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: pycryptodome (==3.9.0)
Requires-Dist: requests (==2.22.0)

# Philips Air Purifier Client API
Python API for monitoring and controlling Philips air purifiers.

## Installation
```
pip install philips-air-purifier
```

## Usage
Get the status of the air purifier:
```python
from philips_air_purifier.status import get_status
status = get_status(air_purifier_host="192.168.1.12")
```

## Deploying to PyPi
```bash
pip install setuptools wheel
python setup.py sdist bdist_wheel
twine upload dist/*
```


