PyViCare 2.41.0__tar.gz → 2.41.2__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.
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PKG-INFO +6 -1
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareAbstractOAuthManager.py +1 -1
- {pyvicare-2.41.0 → pyvicare-2.41.2}/README.md +5 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/pyproject.toml +1 -1
- {pyvicare-2.41.0 → pyvicare-2.41.2}/LICENSE +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/Feature.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCare.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareBrowserOAuthManager.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareCachedService.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareDevice.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareDeviceConfig.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareElectricalEnergySystem.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareFuelCell.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareGateway.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareGazBoiler.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareHeatCurveCalculation.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareHeatPump.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareHeatingDevice.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareHybrid.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareOAuthManager.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareOilBoiler.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCarePelletsBoiler.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareRadiatorActuator.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareRoomSensor.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareService.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareUtils.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/PyViCareVentilationDevice.py +0 -0
- {pyvicare-2.41.0 → pyvicare-2.41.2}/PyViCare/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: PyViCare
|
|
3
|
-
Version: 2.41.
|
|
3
|
+
Version: 2.41.2
|
|
4
4
|
Summary: Library to communicate with the Viessmann ViCare API.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Keywords: viessmann,vicare,api
|
|
@@ -200,6 +200,11 @@ vicare.initWithCredentials(email, password, client_id, "token.save")
|
|
|
200
200
|
|
|
201
201
|
with open(f"dump.json", mode='w') as output:
|
|
202
202
|
output.write(vicare.devices[0].dump_secure())
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
To make the test data comparable with future updates, it must be sorted. No worries, this can be done automatically using [`jq`](https://jqlang.github.io/jq/).
|
|
203
206
|
|
|
207
|
+
```sh
|
|
208
|
+
jq ".data|=sort_by(.feature)" --sort-keys testData.json > testDataSorted.json
|
|
204
209
|
```
|
|
205
210
|
|
|
@@ -168,5 +168,10 @@ vicare.initWithCredentials(email, password, client_id, "token.save")
|
|
|
168
168
|
|
|
169
169
|
with open(f"dump.json", mode='w') as output:
|
|
170
170
|
output.write(vicare.devices[0].dump_secure())
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
To make the test data comparable with future updates, it must be sorted. No worries, this can be done automatically using [`jq`](https://jqlang.github.io/jq/).
|
|
171
174
|
|
|
175
|
+
```sh
|
|
176
|
+
jq ".data|=sort_by(.feature)" --sort-keys testData.json > testDataSorted.json
|
|
172
177
|
```
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|