owlsensor 0.3.2__tar.gz → 0.3.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {owlsensor-0.3.2 → owlsensor-0.3.4}/PKG-INFO +2 -2
- {owlsensor-0.3.2 → owlsensor-0.3.4}/owlsensor/__init__.py +1 -1
- {owlsensor-0.3.2 → owlsensor-0.3.4}/owlsensor.egg-info/PKG-INFO +2 -2
- owlsensor-0.3.4/owlsensor.egg-info/requires.txt +1 -0
- {owlsensor-0.3.2 → owlsensor-0.3.4}/setup.py +2 -2
- owlsensor-0.3.2/owlsensor.egg-info/requires.txt +0 -1
- {owlsensor-0.3.2 → owlsensor-0.3.4}/LICENSE +0 -0
- {owlsensor-0.3.2 → owlsensor-0.3.4}/README.rst +0 -0
- {owlsensor-0.3.2 → owlsensor-0.3.4}/owlsensor/const.py +0 -0
- {owlsensor-0.3.2 → owlsensor-0.3.4}/owlsensor/serial_cm.py +0 -0
- {owlsensor-0.3.2 → owlsensor-0.3.4}/owlsensor.egg-info/SOURCES.txt +0 -0
- {owlsensor-0.3.2 → owlsensor-0.3.4}/owlsensor.egg-info/dependency_links.txt +0 -0
- {owlsensor-0.3.2 → owlsensor-0.3.4}/owlsensor.egg-info/not-zip-safe +0 -0
- {owlsensor-0.3.2 → owlsensor-0.3.4}/owlsensor.egg-info/top_level.txt +0 -0
- {owlsensor-0.3.2 → owlsensor-0.3.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: owlsensor
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
4
4
|
Summary: Library to read data from OWL Energy meters
|
|
5
5
|
Home-page: https://github.com/PBrunot/owlsensor
|
|
6
6
|
Author: Pascal Brunot
|
|
@@ -16,6 +16,6 @@ Classifier: Programming Language :: Python :: 3.4
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.5
|
|
17
17
|
Description-Content-Type: text/x-rst
|
|
18
18
|
License-File: LICENSE
|
|
19
|
-
Requires-Dist: pyserial-asyncio-fast>=0.
|
|
19
|
+
Requires-Dist: pyserial-asyncio-fast>=0.13
|
|
20
20
|
|
|
21
21
|
This package is designed for integrating into Home Assistant a serial-connected OWL energy meter.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from .serial_cm import CMDataCollector, SUPPORTED_SENSORS
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
def get_async_datacollector(port_url: str, model: str, scan_interval_s: int = 30) -> CMDataCollector:
|
|
4
4
|
"""
|
|
5
5
|
Return asynchronous version of CMDataCollector interface
|
|
6
6
|
:param port_url: serial port, i.e. '/dev/ttyUSB0'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: owlsensor
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
4
4
|
Summary: Library to read data from OWL Energy meters
|
|
5
5
|
Home-page: https://github.com/PBrunot/owlsensor
|
|
6
6
|
Author: Pascal Brunot
|
|
@@ -16,6 +16,6 @@ Classifier: Programming Language :: Python :: 3.4
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.5
|
|
17
17
|
Description-Content-Type: text/x-rst
|
|
18
18
|
License-File: LICENSE
|
|
19
|
-
Requires-Dist: pyserial-asyncio-fast>=0.
|
|
19
|
+
Requires-Dist: pyserial-asyncio-fast>=0.13
|
|
20
20
|
|
|
21
21
|
This package is designed for integrating into Home Assistant a serial-connected OWL energy meter.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pyserial-asyncio-fast>=0.13
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from setuptools import setup, find_packages
|
|
2
2
|
|
|
3
3
|
setup(name='owlsensor',
|
|
4
|
-
version='0.3.
|
|
4
|
+
version='0.3.4',
|
|
5
5
|
description='Library to read data from OWL Energy meters',
|
|
6
6
|
long_description='This package is designed for integrating into Home Assistant a serial-connected OWL energy meter.',
|
|
7
7
|
long_description_content_type = 'text/x-rst',
|
|
@@ -19,6 +19,6 @@ setup(name='owlsensor',
|
|
|
19
19
|
'Programming Language :: Python :: 3.5'
|
|
20
20
|
],
|
|
21
21
|
packages=find_packages(),
|
|
22
|
-
install_requires=['pyserial-asyncio-fast>=0.
|
|
22
|
+
install_requires=['pyserial-asyncio-fast>=0.13'],
|
|
23
23
|
keywords='serial owl cm160 energy_meter homeautomation',
|
|
24
24
|
zip_safe=False)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
pyserial-asyncio-fast>=0.14
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|