aioccl 2024.12.12__tar.gz → 2025.3.1__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.
- {aioccl-2024.12.12 → aioccl-2025.3.1}/PKG-INFO +15 -4
- {aioccl-2024.12.12 → aioccl-2025.3.1}/aioccl/server.py +1 -1
- {aioccl-2024.12.12 → aioccl-2025.3.1}/aioccl.egg-info/PKG-INFO +15 -4
- {aioccl-2024.12.12 → aioccl-2025.3.1}/setup.py +3 -3
- {aioccl-2024.12.12 → aioccl-2025.3.1}/LICENSE +0 -0
- {aioccl-2024.12.12 → aioccl-2025.3.1}/README.md +0 -0
- {aioccl-2024.12.12 → aioccl-2025.3.1}/aioccl/__init__.py +0 -0
- {aioccl-2024.12.12 → aioccl-2025.3.1}/aioccl/device.py +0 -0
- {aioccl-2024.12.12 → aioccl-2025.3.1}/aioccl/sensor.py +0 -0
- {aioccl-2024.12.12 → aioccl-2025.3.1}/aioccl.egg-info/SOURCES.txt +0 -0
- {aioccl-2024.12.12 → aioccl-2025.3.1}/aioccl.egg-info/dependency_links.txt +0 -0
- {aioccl-2024.12.12 → aioccl-2025.3.1}/aioccl.egg-info/requires.txt +0 -0
- {aioccl-2024.12.12 → aioccl-2025.3.1}/aioccl.egg-info/top_level.txt +0 -0
- {aioccl-2024.12.12 → aioccl-2025.3.1}/setup.cfg +0 -0
@@ -1,9 +1,9 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: aioccl
|
3
|
-
Version:
|
3
|
+
Version: 2025.3.1
|
4
4
|
Summary: A Python library for CCL API server
|
5
|
-
Home-page: https://github.com/
|
6
|
-
Download-URL: https://github.com/
|
5
|
+
Home-page: https://github.com/CCL-Electronics-Ltd/aioccl
|
6
|
+
Download-URL: https://github.com/CCL-Electronics-Ltd/aioccl
|
7
7
|
Author: fkiscd
|
8
8
|
Author-email: fkiscd@gmail.com
|
9
9
|
License: Apache License, Version 2.0
|
@@ -17,6 +17,17 @@ Classifier: Programming Language :: Python :: 3.12
|
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
License-File: LICENSE
|
19
19
|
Requires-Dist: aiohttp>3
|
20
|
+
Dynamic: author
|
21
|
+
Dynamic: author-email
|
22
|
+
Dynamic: classifier
|
23
|
+
Dynamic: description
|
24
|
+
Dynamic: description-content-type
|
25
|
+
Dynamic: download-url
|
26
|
+
Dynamic: home-page
|
27
|
+
Dynamic: license
|
28
|
+
Dynamic: license-file
|
29
|
+
Dynamic: requires-dist
|
30
|
+
Dynamic: summary
|
20
31
|
|
21
32
|
# aioCCL
|
22
33
|
A Python library for CCL API server
|
@@ -22,7 +22,7 @@ class CCLServer:
|
|
22
22
|
@staticmethod
|
23
23
|
def register(device: CCLDevice) -> None:
|
24
24
|
"""Register a device with a passkey."""
|
25
|
-
CCLServer.devices
|
25
|
+
CCLServer.devices[device.passkey] = device
|
26
26
|
_LOGGER.debug("Device registered: %s", device.passkey)
|
27
27
|
|
28
28
|
@staticmethod
|
@@ -1,9 +1,9 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: aioccl
|
3
|
-
Version:
|
3
|
+
Version: 2025.3.1
|
4
4
|
Summary: A Python library for CCL API server
|
5
|
-
Home-page: https://github.com/
|
6
|
-
Download-URL: https://github.com/
|
5
|
+
Home-page: https://github.com/CCL-Electronics-Ltd/aioccl
|
6
|
+
Download-URL: https://github.com/CCL-Electronics-Ltd/aioccl
|
7
7
|
Author: fkiscd
|
8
8
|
Author-email: fkiscd@gmail.com
|
9
9
|
License: Apache License, Version 2.0
|
@@ -17,6 +17,17 @@ Classifier: Programming Language :: Python :: 3.12
|
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
License-File: LICENSE
|
19
19
|
Requires-Dist: aiohttp>3
|
20
|
+
Dynamic: author
|
21
|
+
Dynamic: author-email
|
22
|
+
Dynamic: classifier
|
23
|
+
Dynamic: description
|
24
|
+
Dynamic: description-content-type
|
25
|
+
Dynamic: download-url
|
26
|
+
Dynamic: home-page
|
27
|
+
Dynamic: license
|
28
|
+
Dynamic: license-file
|
29
|
+
Dynamic: requires-dist
|
30
|
+
Dynamic: summary
|
20
31
|
|
21
32
|
# aioCCL
|
22
33
|
A Python library for CCL API server
|
@@ -3,7 +3,7 @@
|
|
3
3
|
from pathlib import Path
|
4
4
|
from setuptools import find_packages, setup
|
5
5
|
|
6
|
-
VERSION = "
|
6
|
+
VERSION = "2025.3.1"
|
7
7
|
|
8
8
|
ROOT_DIR = Path(__file__).parent.resolve()
|
9
9
|
|
@@ -17,8 +17,8 @@ setup(
|
|
17
17
|
long_description_content_type="text/markdown",
|
18
18
|
author="fkiscd",
|
19
19
|
author_email="fkiscd@gmail.com",
|
20
|
-
url="https://github.com/
|
21
|
-
download_url="https://github.com/
|
20
|
+
url="https://github.com/CCL-Electronics-Ltd/aioccl",
|
21
|
+
download_url="https://github.com/CCL-Electronics-Ltd/aioccl",
|
22
22
|
install_requires=[
|
23
23
|
"aiohttp>3"
|
24
24
|
],
|
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
|