pyControl4 1.2.0__tar.gz → 1.2.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.
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/PKG-INFO +1 -1
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4/director.py +1 -1
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4.egg-info/PKG-INFO +1 -1
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/setup.py +1 -1
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/LICENSE +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/README.md +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4/__init__.py +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4/account.py +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4/alarm.py +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4/blind.py +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4/error_handling.py +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4/light.py +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4/relay.py +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4/room.py +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4/websocket.py +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4.egg-info/SOURCES.txt +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4.egg-info/dependency_links.txt +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4.egg-info/requires.txt +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/pyControl4.egg-info/top_level.txt +0 -0
- {pycontrol4-1.2.0 → pycontrol4-1.2.1}/setup.cfg +0 -0
|
@@ -134,7 +134,7 @@ class C4Director:
|
|
|
134
134
|
`item_id` - The Control4 item ID.
|
|
135
135
|
"""
|
|
136
136
|
return await self.sendPostRequest(
|
|
137
|
-
"/api/v1/items/{}/commands".format(item_id), "GET_SETUP",
|
|
137
|
+
"/api/v1/items/{}/commands".format(item_id), "GET_SETUP", {}, False
|
|
138
138
|
)
|
|
139
139
|
|
|
140
140
|
async def getItemVariables(self, item_id):
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
|
|
5
5
|
|
|
6
6
|
setuptools.setup(
|
|
7
7
|
name="pyControl4", # Replace with your own username
|
|
8
|
-
version="1.2.
|
|
8
|
+
version="1.2.1",
|
|
9
9
|
author="lawtancool",
|
|
10
10
|
author_email="contact@lawrencetan.ca",
|
|
11
11
|
description="Python 3 asyncio package for interacting with Control4 systems",
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|