This library is to read Teleinfo frames
For meters in the "Teleinfo Standard" mode (linky): .. code-block:: python
import kylin
teleinfo = kylin.TICStandard(timeout=2, verbose=True) teleinfo.open() teleinfo.readframe() teleinfo.close()
For meters in the "Teleinfo Historique" mode (old meters): .. code-block:: python
import kylin
teleinfo = kylin.TICHistorique(timeout=2, verbose=True) teleinfo.open() teleinfo.readframe() teleinfo.close()
- Unit tests using Tox
$ tox -r
- Code coverage:
$ tox -r -ecoverage
Documentation is available at: http://readthedocs.org/docs/kylin/en/latest
- Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug.
- Fork the repository on GitHub to start making your changes to the develop branch (or branch off of it).
- Write a test which shows that the bug was fixed or that the feature works as expected.
- Send a pull request and bug the maintainer until it gets merged and published. :)
A changelog is available ChangeLog.
Nicolas Lamirault <nicolas.lamirault@gmail.com>