Asynchronous Python client for TechnoVE.
Project description
Python: TechnoVE API Client
Asynchronous Python client for TechnoVE charging station.
About
python-technove
(aka pytechnove
) is a Python 3.11, asyncio
-driven interface
to the unofficial TechnoVE charger API from TechnoVE.
This is originally meant to be integrated into Home Assistant, but can be used anywhere.
Usage
import asyncio
from technove import TecnnoVE
async def main() -> None:
"""Show example on controlling your TecnnoVE station."""
async with WLED("192.168.1.10") as technove:
station = await technove.update()
print(station.info.version)
if __name__ == "__main__":
asyncio.run(main())
Changelog & Releases
This repository keeps a change log using GitHub's releases functionality.
Releases are based on Semantic Versioning, and use the format
of MAJOR.MINOR.PATCH
. In a nutshell, the version will be incremented
based on the following:
MAJOR
: Incompatible or major changes.MINOR
: Backwards-compatible new features and enhancements.PATCH
: Backwards-compatible bugfixes and package updates.
Contributing
This is an active open-source project. We are always open to people who want to use the code or contribute to it.
Thank you for being involved!
Setting up development environment
The easiest way to start, is by opening a CodeSpace here on GitHub, or by using the Dev Container feature of Visual Studio Code.
This Python project is fully managed using the Poetry dependency manager. But also relies on the use of NodeJS for certain checks during development.
You need at least:
- Python 3.11+
- Poetry
- NodeJS 20+ (including NPM)
To install all packages, including all development requirements:
npm install
poetry install
As this repository uses the pre-commit framework, all changes are linted and tested with each commit. You can run all checks and tests manually, using the following command:
poetry run pre-commit run --all-files
To run just the Python tests:
poetry run pytest
Authors & contributors
The original setup of this repository is by Christophe Gagnier.
Credits to @frenck for the base structure and classes of this library
based on python-wled.
The license of python-wled can be found in
third_party/python-wled/LICENSE.
For a full list of all authors and contributors, check the contributor's page.
Disclaimer
This project is not an official Google project. It is not supported by Google and Google specifically disclaims all warranties as to its quality, merchantability, or fitness for a particular purpose.
Google Play and the Google Play logo are trademarks of Google LLC.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file python_technove-1.3.1.tar.gz
.
File metadata
- Download URL: python_technove-1.3.1.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc10f0392b6b71e70873b8fc9260d4a6c7a2e0a6d477a4f10403885d0c492a4d |
|
MD5 | 202b9e344a3eeed2e810aaa841e01a65 |
|
BLAKE2b-256 | 0d70db035259c9bb3024938aa988ef8dc6118dc634eb101a4cab0338be0a7570 |
File details
Details for the file python_technove-1.3.1-py3-none-any.whl
.
File metadata
- Download URL: python_technove-1.3.1-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c344fd1ad60913e0c3d749c2259e615646c2e9053f8188730e16df74f80074e |
|
MD5 | 1836c8f0c4dd6ec26491945cebf7dbdf |
|
BLAKE2b-256 | 0044ad953e4b97c610922c5ba767862eec55000d47c4aee9883e357c536555e3 |