violet-poolController-api 0.0.16__tar.gz → 0.0.17__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.
Files changed (22) hide show
  1. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/PKG-INFO +8 -2
  2. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/README.md +1 -1
  3. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/pyproject.toml +13 -2
  4. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/setup.py +5 -5
  5. violet_poolcontroller_api-0.0.17/tests/__init__.py +1 -0
  6. violet_poolcontroller_api-0.0.17/tests/test_api.py +810 -0
  7. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/violet_poolController_api.egg-info/PKG-INFO +8 -2
  8. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/violet_poolController_api.egg-info/SOURCES.txt +1 -0
  9. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/violet_poolController_api.egg-info/top_level.txt +1 -0
  10. violet_poolcontroller_api-0.0.17/violet_poolcontroller_api/__init__.py +47 -0
  11. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/violet_poolcontroller_api/api.py +281 -322
  12. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/violet_poolcontroller_api/circuit_breaker.py +31 -27
  13. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/violet_poolcontroller_api/const_api.py +6 -6
  14. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/violet_poolcontroller_api/const_devices.py +25 -18
  15. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/violet_poolcontroller_api/utils_rate_limiter.py +58 -51
  16. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/violet_poolcontroller_api/utils_sanitizer.py +505 -497
  17. violet_poolcontroller_api-0.0.16/tests/test_api.py +0 -418
  18. violet_poolcontroller_api-0.0.16/violet_poolcontroller_api/__init__.py +0 -19
  19. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/LICENSE +0 -0
  20. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/setup.cfg +0 -0
  21. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/violet_poolController_api.egg-info/dependency_links.txt +0 -0
  22. {violet_poolcontroller_api-0.0.16 → violet_poolcontroller_api-0.0.17}/violet_poolController_api.egg-info/requires.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: violet-poolController-api
3
- Version: 0.0.16
3
+ Version: 0.0.17
4
4
  Summary: Asynchronous Python client for the Violet Pool Controller.
5
5
  Home-page: https://github.com/Xerolux/violet-poolController-api
6
6
  Author: Basti (Xerolux)
@@ -9,7 +9,13 @@ License: AGPL-3.0-or-later
9
9
  Project-URL: Homepage, https://github.com/Xerolux/violet-poolController-api
10
10
  Project-URL: Bug Tracker, https://github.com/Xerolux/violet-poolController-api/issues
11
11
  Project-URL: License, https://www.gnu.org/licenses/agpl-3.0.html
12
+ Project-URL: Changelog, https://github.com/Xerolux/violet-poolController-api/blob/main/CHANGELOG.md
13
+ Keywords: pool,violet,controller,home-assistant,async
12
14
  Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Framework :: AsyncIO
13
19
  Classifier: Operating System :: OS Independent
14
20
  Classifier: Intended Audience :: Developers
15
21
  Classifier: Topic :: Home Automation
@@ -159,7 +165,7 @@ GNU Affero General Public License v3.0 or later (AGPLv3+)
159
165
 
160
166
  ## About the Violet Pool Controller
161
167
 
162
- Der **VIOLET Pool Controller** von [PoolDigital GmbH & Co. KG](https://www.pooldigital.de/) ist ein Premium Smart Pool Automation System aus deutscher Entwicklung mit JSON API für nahtlose Home Assistant Integration.
168
+ The **VIOLET Pool Controller** by [PoolDigital GmbH & Co. KG](https://www.pooldigital.de/) is a premium smart pool automation system developed in Germany, featuring a JSON API for seamless Home Assistant integration.
163
169
 
164
170
  - **Offizieller Shop:** [pooldigital.de](https://www.pooldigital.de/)
165
171
  - **Community:** [PoolDigital Forum](http://forum.pooldigital.de/)
@@ -131,7 +131,7 @@ GNU Affero General Public License v3.0 or later (AGPLv3+)
131
131
 
132
132
  ## About the Violet Pool Controller
133
133
 
134
- Der **VIOLET Pool Controller** von [PoolDigital GmbH & Co. KG](https://www.pooldigital.de/) ist ein Premium Smart Pool Automation System aus deutscher Entwicklung mit JSON API für nahtlose Home Assistant Integration.
134
+ The **VIOLET Pool Controller** by [PoolDigital GmbH & Co. KG](https://www.pooldigital.de/) is a premium smart pool automation system developed in Germany, featuring a JSON API for seamless Home Assistant integration.
135
135
 
136
136
  - **Offizieller Shop:** [pooldigital.de](https://www.pooldigital.de/)
137
137
  - **Community:** [PoolDigital Forum](http://forum.pooldigital.de/)
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "violet-poolController-api"
7
- version = "0.0.16"
7
+ version = "0.0.17"
8
8
  authors = [
9
9
  { name="Basti (Xerolux)", email="git@xerolux.de" },
10
10
  ]
@@ -12,8 +12,13 @@ description = "Asynchronous Python client for the Violet Pool Controller."
12
12
  readme = "README.md"
13
13
  requires-python = ">=3.12"
14
14
  license = { text = "AGPL-3.0-or-later" }
15
+ keywords = ["pool", "violet", "controller", "home-assistant", "async"]
15
16
  classifiers = [
16
17
  "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3.12",
19
+ "Programming Language :: Python :: 3.13",
20
+ "Programming Language :: Python :: 3.14",
21
+ "Framework :: AsyncIO",
17
22
  "Operating System :: OS Independent",
18
23
  "Intended Audience :: Developers",
19
24
  "Topic :: Home Automation",
@@ -33,14 +38,20 @@ test = [
33
38
  "Homepage" = "https://github.com/Xerolux/violet-poolController-api"
34
39
  "Bug Tracker" = "https://github.com/Xerolux/violet-poolController-api/issues"
35
40
  "License" = "https://www.gnu.org/licenses/agpl-3.0.html"
41
+ "Changelog" = "https://github.com/Xerolux/violet-poolController-api/blob/main/CHANGELOG.md"
36
42
 
37
43
  [tool.pytest.ini_options]
38
44
  asyncio_mode = "auto"
39
45
 
40
46
  [tool.ruff]
41
47
  line-length = 100
42
- target-version = "0.0.16"
48
+ target-version = "0.0.17"
43
49
 
44
50
  [tool.ruff.lint]
45
51
  select = ["E", "F", "W", "I", "UP"]
46
52
  ignore = ["E501"]
53
+
54
+ [tool.mypy]
55
+ python_version = "0.0.17"
56
+ warn_return_any = true
57
+ warn_unused_configs = true
@@ -1,11 +1,11 @@
1
1
  from setuptools import setup, find_packages
2
2
  setup(
3
3
  name="violet-poolController-api",
4
- version="0.0.16",
4
+ version="0.0.17",
5
5
  author="Basti (Xerolux)",
6
6
  author_email="git@xerolux.de",
7
7
  description="Asynchronous Python client for the Violet Pool Controller.",
8
- long_description=open("README.md").read(),
8
+ long_description=open("README.md", encoding="utf-8").read(),
9
9
  long_description_content_type="text/markdown",
10
10
  url="https://github.com/Xerolux/violet-poolController-api",
11
11
  packages=find_packages(),
@@ -23,9 +23,9 @@ setup(
23
23
  ],
24
24
  extras_require={
25
25
  "test": [
26
- "aioresponses>=0.7.7",
27
- "pytest>=8.3",
28
- "pytest-asyncio>=0.24",
26
+ "aioresponses>=0.7.6",
27
+ "pytest>=8.0",
28
+ "pytest-asyncio>=0.23",
29
29
  ],
30
30
  },
31
31
  project_urls={
@@ -0,0 +1 @@
1
+ """Test suite for violet-poolController-api."""