Metadata-Version: 2.1
Name: homelypy
Version: 0.1.0
Summary: A thin client wrapper for Homely API
Project-URL: Homepage, https://github.com/kolaf/homelypy
Project-URL: Bug Tracker, https://github.com/kolaf/homelypy/issues
Author-email: Frank Olaf Sem-Jacobsen <frankose@ifi.uio.no>
License-File: LICENCE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: python-dateutil
Requires-Dist: python-socketio[client]<5.0
Requires-Dist: requests
Description-Content-Type: text/markdown

# homelypy
A thin wrapper for the Homely alarm company API

# Data dump
This can be used to easily extract a data dump from the API. Simply clone the repository or install from pypi (pip install homelypy) and run
```shell
python3 -m homelypy.homely <username>
```
You will be prompted for a password, then it will dump all the locations and associated sensors in the system. It is gathered inappropriate location_<location_name>.json for convenience.

# Building and packaging
```shell
rm -R dist
python3 -m build
python3 -m twine upload dist/* --verbose
```