aiohomematic-test-support 2025.12.40__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-test-support might be problematic. Click here for more details.
- aiohomematic_test_support/__init__.py +48 -0
- aiohomematic_test_support/const.py +262 -0
- aiohomematic_test_support/data/device_translation.json +364 -0
- aiohomematic_test_support/data/full_session_randomized_ccu.zip +0 -0
- aiohomematic_test_support/data/full_session_randomized_pydevccu.zip +0 -0
- aiohomematic_test_support/factory.py +314 -0
- aiohomematic_test_support/helper.py +47 -0
- aiohomematic_test_support/mock.py +741 -0
- aiohomematic_test_support/py.typed +0 -0
- aiohomematic_test_support-2025.12.40.dist-info/METADATA +12 -0
- aiohomematic_test_support-2025.12.40.dist-info/RECORD +13 -0
- aiohomematic_test_support-2025.12.40.dist-info/WHEEL +5 -0
- aiohomematic_test_support-2025.12.40.dist-info/top_level.txt +1 -0
|
File without changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aiohomematic-test-support
|
|
3
|
+
Version: 2025.12.40
|
|
4
|
+
Summary: Support-only package for AioHomematic (tests/dev). Not part of production builds.
|
|
5
|
+
Author-email: SukramJ <sukramj@icloud.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/SukramJ/aiohomematic
|
|
7
|
+
Classifier: Development Status :: 3 - Alpha
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
12
|
+
Requires-Python: >=3.13
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
aiohomematic_test_support/__init__.py,sha256=23K925Xn5_wy5fWU_Uo1U2qrtdnMdoemKy_XPnLoqvw,1642
|
|
2
|
+
aiohomematic_test_support/const.py,sha256=tLyvqZJlaDCs1F2OBRnJ94hUB0pu7RKk--CQGlVC_58,6430
|
|
3
|
+
aiohomematic_test_support/factory.py,sha256=FoemfxruooVRViShZdW4uxHc09pCIUFSCG_goxvpVmg,12191
|
|
4
|
+
aiohomematic_test_support/helper.py,sha256=Ue2tfy10_fiuMjYsc1jYPvo5sEtMF2WVKjvLnTZ0TzU,1360
|
|
5
|
+
aiohomematic_test_support/mock.py,sha256=GhJjKXPIYwzmHanKQSEIjGb8-wuixa3n7cFW-m-oiKY,31097
|
|
6
|
+
aiohomematic_test_support/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
aiohomematic_test_support/data/device_translation.json,sha256=owHLpCGvtMJzfCMOMMgnn7-LgN-BMKSYzi4NKINw1WQ,13290
|
|
8
|
+
aiohomematic_test_support/data/full_session_randomized_ccu.zip,sha256=kKHMtJouCskAHkXaP1hHRSoWZO2cZDJ9P_EwuJuywJQ,733017
|
|
9
|
+
aiohomematic_test_support/data/full_session_randomized_pydevccu.zip,sha256=_QFWSP03dkiMFdD_w-R98DS6ur4PYDQXw-DCkbJEGg4,1293240
|
|
10
|
+
aiohomematic_test_support-2025.12.40.dist-info/METADATA,sha256=y0RKBJgxS2hkKzz-AlULAfBSE9mYMK-D-9bpROFcg58,536
|
|
11
|
+
aiohomematic_test_support-2025.12.40.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
12
|
+
aiohomematic_test_support-2025.12.40.dist-info/top_level.txt,sha256=KmK-OiDDbrmawIsIgPWNAkpkDfWQnOoumYd9MXAiTHc,26
|
|
13
|
+
aiohomematic_test_support-2025.12.40.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
aiohomematic_test_support
|