timofurrer/w1thermsensor

View on GitHub
src/w1thermsensor/__main__.py

Summary

Maintainability
A
0 mins
Test Coverage
"""
w1thermsensor
~~~~~~~~~~~~~

A Python package and CLI tool to work with w1 temperature sensors.

:copyright: (c) 2020 by Timo Furrer <tuxtimo@gmail.com>
:license: MIT, see LICENSE for more details.
"""

from .cli import cli  # pragma: no cover

if __name__ == "__main__":  # pragma: no cover
    cli()