Homevolt 0.2.3__py3-none-any.whl → 0.3.0__py3-none-any.whl
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.
- homevolt/__init__.py +1 -4
- homevolt/homevolt.py +744 -31
- homevolt/models.py +1 -21
- {homevolt-0.2.3.dist-info → homevolt-0.3.0.dist-info}/METADATA +26 -38
- homevolt-0.3.0.dist-info/RECORD +10 -0
- {homevolt-0.2.3.dist-info → homevolt-0.3.0.dist-info}/WHEEL +1 -1
- homevolt-0.3.0.dist-info/licenses/LICENSE +674 -0
- homevolt/device.py +0 -760
- homevolt-0.2.3.dist-info/RECORD +0 -10
- {homevolt-0.2.3.dist-info → homevolt-0.3.0.dist-info}/top_level.txt +0 -0
homevolt/__init__.py
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"""Python library for Homevolt EMS devices."""
|
|
2
2
|
|
|
3
|
-
from .device import Device
|
|
4
3
|
from .exceptions import (
|
|
5
4
|
HomevoltAuthenticationError,
|
|
6
5
|
HomevoltConnectionError,
|
|
@@ -8,10 +7,9 @@ from .exceptions import (
|
|
|
8
7
|
HomevoltError,
|
|
9
8
|
)
|
|
10
9
|
from .homevolt import Homevolt
|
|
11
|
-
from .models import DeviceMetadata, Sensor
|
|
10
|
+
from .models import DeviceMetadata, Sensor
|
|
12
11
|
|
|
13
12
|
__all__ = [
|
|
14
|
-
"Device",
|
|
15
13
|
"DeviceMetadata",
|
|
16
14
|
"Homevolt",
|
|
17
15
|
"HomevoltAuthenticationError",
|
|
@@ -19,5 +17,4 @@ __all__ = [
|
|
|
19
17
|
"HomevoltDataError",
|
|
20
18
|
"HomevoltError",
|
|
21
19
|
"Sensor",
|
|
22
|
-
"SensorType",
|
|
23
20
|
]
|