Metadata-Version: 1.2
Name: aioguardian
Version: 1.0.2
Summary: A Python3 library for Elexa Guardian water valves and sensors
Home-page: https://github.com/bachya/aioguardian
Author: Aaron Bach
Author-email: bachya1208@gmail.com
License: UNKNOWN
Description: # 🚰 aioguardian: A Python3 library for Elexa Guardian devices
        
        [![CI](https://github.com/bachya/aioguardian/workflows/CI/badge.svg)](https://github.com/bachya/aioguardian/actions)
        [![PyPi](https://img.shields.io/pypi/v/aioguardian.svg)](https://pypi.python.org/pypi/aioguardian)
        [![Version](https://img.shields.io/pypi/pyversions/aioguardian.svg)](https://pypi.python.org/pypi/aioguardian)
        [![License](https://img.shields.io/pypi/l/aioguardian.svg)](https://github.com/bachya/aioguardian/blob/master/LICENSE)
        [![Code Coverage](https://codecov.io/gh/bachya/aioguardian/branch/master/graph/badge.svg)](https://codecov.io/gh/bachya/aioguardian)
        [![Maintainability](https://api.codeclimate.com/v1/badges/a03c9e96f19a3dc37f98/maintainability)](https://codeclimate.com/github/bachya/aioguardian/maintainability)
        [![Say Thanks](https://img.shields.io/badge/SayThanks-!-1EAEDB.svg)](https://saythanks.io/to/bachya)
        
        `aioguardian` is a Python3, `asyncio`-focused library for interacting with
        [the Guardian line of water valves and sensors from Elexa](http://getguardian.com).
        
        - [Installation](#installation)
        - [Python Versions](#python-versions)
        - [Documentation](#documentation)
        - [Contributing](#contributing)
        
        # Installation
        
        ```python
        pip install aioguardian
        ```
        
        # Python Versions
        
        `aioguardian` is currently supported on:
        
        * Python 3.6
        * Python 3.7
        * Python 3.8 
        
        # Documentation
        
        Complete documentation can be found here: http://aioguardian.readthedocs.io
        
        # Contributing
        
        1. [Check for open features/bugs](https://github.com/bachya/aioguardian/issues)
          or [initiate a discussion on one](https://github.com/bachya/aioguardian/issues/new).
        2. [Fork the repository](https://github.com/bachya/aioguardian/fork).
        3. (_optional, but highly recommended_) Create a virtual environment: `python3 -m venv .venv`
        4. (_optional, but highly recommended_) Enter the virtual environment: `source ./.venv/bin/activate`
        5. Install the dev environment: `script/setup`
        6. Code your new feature or bug fix.
        7. Write tests that cover your new functionality.
        8. Run tests and ensure 100% code coverage: `script/test`
        9. Update `README.md` with any new documentation.
        10. Add yourself to `AUTHORS.md`.
        11. Submit a pull request!
        
Platform: UNKNOWN
Requires-Python: >=3.6.1,<4.0.0
