Metadata-Version: 2.1
Name: huisbaasje-client
Version: 0.1.0
Summary: Client for Huisbaasje
Home-page: https://github.com/denniss17/huisbaasje-client
Author: Dennis Schroer
Author-email: dev@dennisschroer.nl
License: UNKNOWN
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Home Automation
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Huisbaasje client

Client to communicate with the API behind [Huisbaasje](https://www.huisbaasje.nl/).

Huisbaasje is an app and measuring device to monitor the usage of electricity and gas in real time.

[![Build Status](https://travis-ci.org/denniss17/huisbaasje-client.svg?branch=master)](https://travis-ci.org/denniss17/huisbaasje-client)
[![Coverage Status](https://coveralls.io/repos/github/denniss17/huisbaasje-client/badge.svg?branch=master)](https://coveralls.io/github/denniss17/huisbaasje-client?branch=master)

## Usage

See the [example](examples/example.py) on how to use this library.

## Development

This project uses [pipenv](https://pypi.org/project/pipenv/) for dependency and environment management.

Install dependencies using

    pipenv install --dev

## Testing

Run all tests using

    pipenv run pytest

## Packaging

Create a package using

    python3 setup.py sdist bdist_wheel

This creates a package in `dist`

Upload the package using

    python3 -m twine upload dist/*

