matter-python-client 0.4.1a0.dev20260220__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.
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: matter-python-client
3
+ Version: 0.4.1a0.dev20260220
4
+ Summary: Python Client for the OHF Matter Server
5
+ Author-email: Open Home Foundation <hello@openhomefoundation.io>
6
+ License-Expression: Apache-2.0
7
+ Platform: any
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Classifier: Programming Language :: Python :: 3.13
12
+ Classifier: Topic :: Home Automation
13
+ Requires-Python: >=3.12
14
+ Requires-Dist: aiohttp
15
+ Requires-Dist: orjson
16
+ Requires-Dist: home-assistant-chip-clusters==2025.7.0
17
+ Provides-Extra: test
18
+ Requires-Dist: pytest>=9.0; extra == "test"
19
+ Requires-Dist: pytest-asyncio>=0.24; extra == "test"
20
+ Requires-Dist: pytest-aiohttp>=1.0; extra == "test"
@@ -0,0 +1,22 @@
1
+ matter_server/__init__.py,sha256=lJ6xyVLSMGtiHvq36VPSDb75ksxfNKYmKEEE-ZwJdhQ,47
2
+ matter_server/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ matter_server/client/__init__.py,sha256=pZzjJp-7C5BmYGZJjIo5SpyjGLU0FcqBa2nJ558y-Is,97
4
+ matter_server/client/client.py,sha256=6zcVKB0UkxFl3mYeK66GN6gBVq8tciIDQkLZB2piYwk,30438
5
+ matter_server/client/connection.py,sha256=ye7jbDHpHuBXfJPnBiO8tsQN0A4SiyOh98V4H-2D8cc,6180
6
+ matter_server/client/exceptions.py,sha256=741JkGMBQFJYZ70zX80B-Dn_NtgHffb6jDHC83tCL2U,1901
7
+ matter_server/client/models/__init__.py,sha256=pT16UC2evZVw2trjun2xJZpaOR55ky7i_8znlA3Mreo,63
8
+ matter_server/client/models/device_types.py,sha256=vwsCU0OJuAnOycqWGbn-l6eBY4yOsiS3B9FDgFrzlgk,23341
9
+ matter_server/client/models/node.py,sha256=MF4YwWWG7bGIJeh9COBTYc9PoqHbHkFPP1hFS6D7KqU,15420
10
+ matter_server/common/__init__.py,sha256=y4EeCH05sUYifS2b624oweA6omnY5k-rLNHHv4t4p7Q,50
11
+ matter_server/common/const.py,sha256=hTu0siAgpQvAz6oYavTGuqgkXaQH2glQxUQuGyPnn1o,256
12
+ matter_server/common/custom_clusters.py,sha256=pxP_WOUjmCRjWQIBNCyqvu2PWh0h8Ui3Quy7ijhXaas,48280
13
+ matter_server/common/errors.py,sha256=ryZQXg3cS8g0aBt-6r1y0q4LO7D-gl-GZFRlv0IIuNo,2154
14
+ matter_server/common/models.py,sha256=nuhvQoE0T5Qj6kgqtbSDoOvnH-_Uv4tFqIK0UPJchbU,7689
15
+ matter_server/common/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ matter_server/common/helpers/api.py,sha256=ePJjzR0KhdWrXtfiXJGOZbq__DUVcv1zR5xC9no9w-o,2039
17
+ matter_server/common/helpers/json.py,sha256=6JZb9gS6z9oMHB9gUQ0DrMYF_wdyC6QpyW4jHm7lE3w,1306
18
+ matter_server/common/helpers/util.py,sha256=QQ4-rvJNi6mJN4WVSnQSjiigFy8DEyZtAuZOWYpv1yc,12883
19
+ matter_python_client-0.4.1a0.dev20260220.dist-info/METADATA,sha256=NMhDWMp6AOMGCs51BxgRSfXHbNZjiI1O0LhDXQKZEKE,756
20
+ matter_python_client-0.4.1a0.dev20260220.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
21
+ matter_python_client-0.4.1a0.dev20260220.dist-info/top_level.txt,sha256=RnN_dXPV-BJticdofUc0tEiC3yaXXPKKCIy5ApS7nn8,14
22
+ matter_python_client-0.4.1a0.dev20260220.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ """Python Client for the OHF Matter Server."""
@@ -0,0 +1,5 @@
1
+ """Client for the MatterServer."""
2
+
3
+ from .client import MatterClient
4
+
5
+ __all__ = ["MatterClient"]