Pyownet is a pure python package that allows network client access to the OWFS 1-Wire File System via an owserver and the owserver network protocol, in short ownet.
The pyownet.protocol
module is an implementation of the owserver
client protocol that exposes owserver messages as methods of a proxy
object:
>>> owproxy = pyownet.protocol.proxy(host="owserver.example.com", port=4304) >>> owproxy.dir() ['/10.67C6697351FF/', '/05.4AEC29CDBAAB/'] >>> owproxy.read('/10.67C6697351FF/temperature') ' 91.6195'
To install pyownet:
$ pip install pyownet
The code base is written in Python 2, but Python 3 is fully supported,
and is the main developing language. Running the 2to3
tool will
generate valid and, whenever possible, idiomatic Python 3 code.
Explicitly supported versions are Python 2.7, 3.3 through 3.7.
Full package documentation is available at http://pyownet.readthedocs.io/en/latest/