aiohomematic 2025.10.2__py3-none-any.whl → 2025.10.4__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.
Potentially problematic release.
This version of aiohomematic might be problematic. Click here for more details.
- aiohomematic/async_support.py +59 -23
- aiohomematic/caches/dynamic.py +27 -14
- aiohomematic/caches/persistent.py +12 -2
- aiohomematic/central/__init__.py +172 -46
- aiohomematic/central/xml_rpc_server.py +6 -1
- aiohomematic/client/__init__.py +23 -0
- aiohomematic/client/json_rpc.py +10 -1
- aiohomematic/const.py +29 -17
- aiohomematic/decorators.py +33 -27
- aiohomematic/model/custom/siren.py +2 -0
- aiohomematic/model/data_point.py +1 -0
- aiohomematic/model/generic/data_point.py +1 -1
- aiohomematic/model/support.py +2 -2
- aiohomematic/property_decorators.py +40 -13
- aiohomematic/support.py +83 -20
- {aiohomematic-2025.10.2.dist-info → aiohomematic-2025.10.4.dist-info}/METADATA +1 -1
- {aiohomematic-2025.10.2.dist-info → aiohomematic-2025.10.4.dist-info}/RECORD +21 -21
- aiohomematic_support/client_local.py +8 -3
- {aiohomematic-2025.10.2.dist-info → aiohomematic-2025.10.4.dist-info}/WHEEL +0 -0
- {aiohomematic-2025.10.2.dist-info → aiohomematic-2025.10.4.dist-info}/licenses/LICENSE +0 -0
- {aiohomematic-2025.10.2.dist-info → aiohomematic-2025.10.4.dist-info}/top_level.txt +0 -0
|
@@ -35,7 +35,7 @@ from aiohomematic.decorators import inspector
|
|
|
35
35
|
from aiohomematic.support import is_channel_address
|
|
36
36
|
|
|
37
37
|
LOCAL_SERIAL: Final = "0815_4711"
|
|
38
|
-
BACKEND_LOCAL: Final = "
|
|
38
|
+
BACKEND_LOCAL: Final = "PyDevCCU"
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
class ClientLocal(Client): # pragma: no cover
|
|
@@ -153,7 +153,7 @@ class ClientLocal(Client): # pragma: no cover
|
|
|
153
153
|
|
|
154
154
|
@inspector(re_raise=False)
|
|
155
155
|
async def get_all_system_variables(
|
|
156
|
-
self, markers: tuple[DescriptionMarker | str, ...]
|
|
156
|
+
self, *, markers: tuple[DescriptionMarker | str, ...]
|
|
157
157
|
) -> tuple[SystemVariableData, ...]:
|
|
158
158
|
"""Get all system variables from the backend."""
|
|
159
159
|
return ()
|
|
@@ -203,6 +203,7 @@ class ClientLocal(Client): # pragma: no cover
|
|
|
203
203
|
@inspector(log_level=logging.NOTSET)
|
|
204
204
|
async def get_value(
|
|
205
205
|
self,
|
|
206
|
+
*,
|
|
206
207
|
channel_address: str,
|
|
207
208
|
paramset_key: ParamsetKey,
|
|
208
209
|
parameter: str,
|
|
@@ -214,6 +215,7 @@ class ClientLocal(Client): # pragma: no cover
|
|
|
214
215
|
@inspector(re_raise=False, no_raise_return=set())
|
|
215
216
|
async def set_value(
|
|
216
217
|
self,
|
|
218
|
+
*,
|
|
217
219
|
channel_address: str,
|
|
218
220
|
paramset_key: ParamsetKey,
|
|
219
221
|
parameter: str,
|
|
@@ -236,6 +238,7 @@ class ClientLocal(Client): # pragma: no cover
|
|
|
236
238
|
@inspector
|
|
237
239
|
async def get_paramset(
|
|
238
240
|
self,
|
|
241
|
+
*,
|
|
239
242
|
address: str,
|
|
240
243
|
paramset_key: ParamsetKey | str,
|
|
241
244
|
call_source: CallSource = CallSource.MANUAL_OR_SCHEDULED,
|
|
@@ -249,7 +252,7 @@ class ClientLocal(Client): # pragma: no cover
|
|
|
249
252
|
return {}
|
|
250
253
|
|
|
251
254
|
async def _get_paramset_description(
|
|
252
|
-
self, address: str, paramset_key: ParamsetKey
|
|
255
|
+
self, *, address: str, paramset_key: ParamsetKey
|
|
253
256
|
) -> dict[str, ParameterData] | None:
|
|
254
257
|
"""Get paramset description from the backend."""
|
|
255
258
|
if not self._local_resources:
|
|
@@ -277,6 +280,7 @@ class ClientLocal(Client): # pragma: no cover
|
|
|
277
280
|
@inspector(measure_performance=True)
|
|
278
281
|
async def put_paramset(
|
|
279
282
|
self,
|
|
283
|
+
*,
|
|
280
284
|
channel_address: str,
|
|
281
285
|
paramset_key_or_link_address: ParamsetKey | str,
|
|
282
286
|
values: Any,
|
|
@@ -312,6 +316,7 @@ class ClientLocal(Client): # pragma: no cover
|
|
|
312
316
|
|
|
313
317
|
async def _load_all_json_files(
|
|
314
318
|
self,
|
|
319
|
+
*,
|
|
315
320
|
anchor: str,
|
|
316
321
|
resource: str,
|
|
317
322
|
include_list: list[str] | None = None,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|