aioguardian
is a Python3, asyncio
-focused library for interacting with
the Guardian line of water valves and sensors from Elexa.
pip install aioguardian
aioguardian
is currently supported on:
- Python 3.10
- Python 3.11
- Python 3.12
Complete documentation can be found here.
Thanks to all of our contributors so far!
- Check for open features/bugs or initiate a discussion on one.
- Fork the repository.
- (optional, but highly recommended) Create a virtual environment:
python3 -m venv .venv
- (optional, but highly recommended) Enter the virtual environment:
source ./.venv/bin/activate
- Install the dev environment:
script/setup
- Code your new feature or bug fix on a new branch.
- Write tests that cover your new functionality.
- Run tests and ensure 100% code coverage:
poetry run pytest --cov aioguardian tests
- Update
README.md
with any new documentation. - Submit a pull request!