pysmarlaapi 0.2.1__py3-none-any.whl → 0.2.2__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 pysmarlaapi might be problematic. Click here for more details.

pysmarlaapi/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "0.2.1"
1
+ __version__ = "0.2.2"
2
2
 
3
3
  from .classes import Connection
4
4
  from .federwiege import Federwiege
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.3
2
+ Name: pysmarlaapi
3
+ Version: 0.2.2
4
+ Summary: Swing2Sleep Smarla API via websocket with signalr protocol
5
+ Author-email: Robin Lintermann <robin.lintermann@explicatis.com>
6
+ Requires-Python: >=3.11.9
7
+ Description-Content-Type: text/markdown
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Requires-Dist: aiohttp~=3.11.11
12
+ Requires-Dist: jsonpickle~=4.0.0
13
+ Requires-Dist: pysignalr~=1.1.0
14
+
15
+ # pysmarlaapi
16
+ A python library providing an API for Swing2Sleep Smarla.
17
+
18
+ This library will let you control your Swing2Sleep Smarla device.
19
+
20
+ It requires the firmware of the Smarla device to be version 1.6.X or newer. Otherwise you cannot properly connect/pair to your device.
21
+
22
+ ## Library usage
23
+ Install pysmarlaapi using pip
24
+
25
+ ### Example usage
26
+ Please refer to the examples provided in the repository.
27
+
@@ -1,4 +1,4 @@
1
- pysmarlaapi/__init__.py,sha256=bHJSpTFoTKf3KeNsCiFVLdNERSeIBY6Ly5PTLHudnVQ,94
1
+ pysmarlaapi/__init__.py,sha256=hz3b1EZ2p3knTkM64QEHa3f-XKAcdKjpZuUFDI3_Iqs,94
2
2
  pysmarlaapi/classes/__init__.py,sha256=4F4LRzLQtj6AmzrXn74iHEZl-YElpMkb7MhEGkab504,71
3
3
  pysmarlaapi/classes/auth_token.py,sha256=FgLkZ0xPETfh1ZMQfWhwW6tkPnqFYeHhDUBLBFbauwA,663
4
4
  pysmarlaapi/classes/connection.py,sha256=vNh9vG4xAewl2gmkducwSd3u7osjYw5gwtZTZ48rqVo,1291
@@ -10,6 +10,6 @@ pysmarlaapi/federwiege/classes/service.py,sha256=J_4WjL0SyyxwlvBp-zpO9EaXNUUcTnO
10
10
  pysmarlaapi/federwiege/services/__init__.py,sha256=F_54VQIYWAZaGm2ITzCJeG7G-6ARW2PfWvqaut56WN8,96
11
11
  pysmarlaapi/federwiege/services/analyser_service.py,sha256=tQb6ijNlrtbz4igH7awdoBnOVHu4TO6SPJmMW5yeT3A,1340
12
12
  pysmarlaapi/federwiege/services/babywiege_service.py,sha256=SJFPAsZaf4nSRmt6ojJq-9MtWqk1MdtcaPzBmTN3H0Y,2167
13
- pysmarlaapi-0.2.1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
14
- pysmarlaapi-0.2.1.dist-info/METADATA,sha256=7P3-L0UgSh5bXHX4io29JTT6Qaaw3dWil_7QdF-hwBI,763
15
- pysmarlaapi-0.2.1.dist-info/RECORD,,
13
+ pysmarlaapi-0.2.2.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
14
+ pysmarlaapi-0.2.2.dist-info/METADATA,sha256=R-BuS7cfxwXSo2MEhLkeCUEm5blsJuPTQHoU0dQoUIU,898
15
+ pysmarlaapi-0.2.2.dist-info/RECORD,,
@@ -1,29 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: pysmarlaapi
3
- Version: 0.2.1
4
- Summary: Swing2Sleep Smarla API via websocket with signalr protocol
5
- Author-email: Robin Lintermann <robin.lintermann@explicatis.com>
6
- Requires-Python: >=3.11.9
7
- Description-Content-Type: text/markdown
8
- Classifier: Development Status :: 1 - Planning
9
- Classifier: Programming Language :: Python :: 3 :: Only
10
- Classifier: Programming Language :: Python :: 3.11
11
- Requires-Dist: aiohttp~=3.11.11
12
- Requires-Dist: jsonpickle~=4.0.0
13
- Requires-Dist: pysignalr~=1.1.0
14
-
15
- # Federwiege Python API
16
-
17
- Swing2Sleep Smarla API via websocket with signalr protocol.
18
-
19
- See tests for example usage.
20
-
21
- ## Development Setup
22
-
23
- - `pip3 install -r requirements_dev.txt`
24
- - `pre-commit install`
25
-
26
- ## Publishing
27
-
28
- - Use flit to publish package to pypi
29
-