PySwitchbot 0.40.1__tar.gz → 0.41.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.
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/PKG-INFO +8 -1
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/PySwitchbot.egg-info/PKG-INFO +8 -1
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/PySwitchbot.egg-info/SOURCES.txt +2 -1
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/setup.py +1 -1
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parser.py +6 -0
- PySwitchbot-0.41.0/tests/test_adv_parser.py +1434 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/LICENSE +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/MANIFEST.in +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/PySwitchbot.egg-info/dependency_links.txt +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/PySwitchbot.egg-info/requires.txt +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/PySwitchbot.egg-info/top_level.txt +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/README.md +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/setup.cfg +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/__init__.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/__init__.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/blind_tilt.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/bot.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/bulb.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/ceiling_light.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/contact.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/curtain.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/humidifier.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/light_strip.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/lock.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/meter.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/motion.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/adv_parsers/plug.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/api_config.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/const.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/__init__.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/base_light.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/blind_tilt.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/bot.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/bulb.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/ceiling_light.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/contact.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/curtain.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/device.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/humidifier.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/light_strip.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/lock.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/meter.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/motion.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/devices/plug.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/discovery.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/enum.py +0 -0
- {PySwitchbot-0.40.1 → PySwitchbot-0.41.0}/switchbot/models.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PySwitchbot
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.41.0
|
|
4
4
|
Summary: A library to communicate with Switchbot
|
|
5
5
|
Home-page: https://github.com/Danielhiversen/pySwitchbot/
|
|
6
6
|
Author: Daniel Hjelseth Hoyer
|
|
@@ -13,3 +13,10 @@ Classifier: Programming Language :: Python
|
|
|
13
13
|
Classifier: Topic :: Home Automation
|
|
14
14
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
15
15
|
License-File: LICENSE
|
|
16
|
+
Requires-Dist: async_timeout>=4.0.1
|
|
17
|
+
Requires-Dist: bleak>=0.19.0
|
|
18
|
+
Requires-Dist: bleak-retry-connector>=2.9.0
|
|
19
|
+
Requires-Dist: cryptography>=39.0.0
|
|
20
|
+
Requires-Dist: pyOpenSSL>=23.0.0
|
|
21
|
+
Requires-Dist: boto3>=1.20.24
|
|
22
|
+
Requires-Dist: requests>=2.28.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PySwitchbot
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.41.0
|
|
4
4
|
Summary: A library to communicate with Switchbot
|
|
5
5
|
Home-page: https://github.com/Danielhiversen/pySwitchbot/
|
|
6
6
|
Author: Daniel Hjelseth Hoyer
|
|
@@ -13,3 +13,10 @@ Classifier: Programming Language :: Python
|
|
|
13
13
|
Classifier: Topic :: Home Automation
|
|
14
14
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
15
15
|
License-File: LICENSE
|
|
16
|
+
Requires-Dist: async_timeout>=4.0.1
|
|
17
|
+
Requires-Dist: bleak>=0.19.0
|
|
18
|
+
Requires-Dist: bleak-retry-connector>=2.9.0
|
|
19
|
+
Requires-Dist: cryptography>=39.0.0
|
|
20
|
+
Requires-Dist: pyOpenSSL>=23.0.0
|
|
21
|
+
Requires-Dist: boto3>=1.20.24
|
|
22
|
+
Requires-Dist: requests>=2.28.1
|
|
@@ -124,6 +124,12 @@ SUPPORTED_TYPES: dict[str, SwitchbotSupportedType] = {
|
|
|
124
124
|
"func": process_woceiling,
|
|
125
125
|
"manufacturer_id": 2409,
|
|
126
126
|
},
|
|
127
|
+
"n": {
|
|
128
|
+
"modelName": SwitchbotModel.CEILING_LIGHT,
|
|
129
|
+
"modelFriendlyName": "Ceiling Light Pro",
|
|
130
|
+
"func": process_woceiling,
|
|
131
|
+
"manufacturer_id": 2409,
|
|
132
|
+
},
|
|
127
133
|
"e": {
|
|
128
134
|
"modelName": SwitchbotModel.HUMIDIFIER,
|
|
129
135
|
"modelFriendlyName": "Humidifier",
|