pysmarlaapi 0.10.3__tar.gz → 0.11.0__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.

Potentially problematic release.


This version of pysmarlaapi might be problematic. Click here for more details.

Files changed (22) hide show
  1. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/PKG-INFO +1 -1
  2. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/__init__.py +1 -1
  3. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/__init__.py +20 -0
  4. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/LICENSE +0 -0
  5. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/README.md +0 -0
  6. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pyproject.toml +0 -0
  7. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/classes/__init__.py +0 -0
  8. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/classes/auth_token.py +0 -0
  9. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/classes/connection.py +0 -0
  10. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/connection_hub/__init__.py +0 -0
  11. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/classes/__init__.py +0 -0
  12. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/classes/property.py +0 -0
  13. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/classes/service.py +0 -0
  14. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/services/__init__.py +0 -0
  15. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/services/analyser_service.py +0 -0
  16. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/services/babywiege_service.py +0 -0
  17. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/services/info_service.py +0 -0
  18. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/services/system_service.py +0 -0
  19. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/types/__init__.py +0 -0
  20. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/types/send_diag_status.py +0 -0
  21. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/types/spring_status.py +0 -0
  22. {pysmarlaapi-0.10.3 → pysmarlaapi-0.11.0}/pysmarlaapi/federwiege/types/update_status.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pysmarlaapi
3
- Version: 0.10.3
3
+ Version: 0.11.0
4
4
  Summary: Swing2Sleep Smarla API
5
5
  Author-email: Robin Lintermann <robin.lintermann@explicatis.com>
6
6
  Requires-Python: >=3.11
@@ -1,4 +1,4 @@
1
- __version__ = "0.10.3"
1
+ __version__ = "0.11.0"
2
2
 
3
3
  from .classes import Connection
4
4
  from .federwiege import Federwiege
@@ -1,6 +1,8 @@
1
1
  import asyncio
2
2
  import threading
3
3
 
4
+ import aiohttp
5
+
4
6
  from ..classes import Connection
5
7
  from ..connection_hub import ConnectionHub
6
8
  from .classes import Service
@@ -25,6 +27,7 @@ class Federwiege:
25
27
 
26
28
  def __init__(self, event_loop: asyncio.AbstractEventLoop, connection: Connection):
27
29
  self.serial_number = connection.token.serialNumber
30
+ self.connection = connection
28
31
  self.hub = ConnectionHub(event_loop, connection, self.on_connection_change)
29
32
  self.services: dict[str, Service] = {
30
33
  "babywiege": BabywiegeService(self.hub),
@@ -38,6 +41,23 @@ class Federwiege:
38
41
 
39
42
  self.available = False
40
43
 
44
+ async def check_firmware_update(self) -> tuple[str, str] | None:
45
+ await self.connection.refresh_token()
46
+
47
+ try:
48
+ async with aiohttp.ClientSession(self.connection.url) as session:
49
+ response = await session.get(
50
+ "/api/Firmware/CheckFirmwareUpdate",
51
+ headers={"accept": "*/*", "Content-Type": "application/json", "Authorization": f"Bearer {self.connection.get_token()}"},
52
+ )
53
+ if response.status != 200:
54
+ return None
55
+ content = await response.json()
56
+ except (aiohttp.ClientError, asyncio.TimeoutError):
57
+ return None
58
+
59
+ return (content["targetFirmware"], content["releaseNotes"])
60
+
41
61
  def get_service(self, key: str):
42
62
  if key not in self.services:
43
63
  return None
File without changes
File without changes