Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
92cd511
Update requirements.txt
flatsiedatsie Jan 25, 2023
41bccd5
Update ipc.py
flatsiedatsie Jan 25, 2023
46cfd7d
Update setup.py
flatsiedatsie Jan 25, 2023
0c90aef
Update requirements.txt
flatsiedatsie Feb 1, 2023
c13686b
Update setup.py
flatsiedatsie Feb 1, 2023
d08db71
Update property.py
flatsiedatsie Nov 6, 2025
9a71dc9
Update property.py
flatsiedatsie Dec 18, 2025
33d9ef7
Update device.py
flatsiedatsie Dec 27, 2025
1baac43
Update ipc.py
flatsiedatsie Dec 27, 2025
3525041
Update ipc.py
flatsiedatsie Jan 28, 2026
1afe9c1
Update ipc.py
flatsiedatsie Jan 28, 2026
f1ab876
Update ipc.py
flatsiedatsie Jan 29, 2026
63cb19d
Update ipc.py
flatsiedatsie Jan 29, 2026
5df0dcd
Update ipc.py
flatsiedatsie Jan 29, 2026
b3d26fb
Update ipc.py
flatsiedatsie Jan 29, 2026
79baa34
Update addon_manager_proxy.py
flatsiedatsie Jan 29, 2026
585e2d4
Update addon_manager_proxy.py
flatsiedatsie Jan 29, 2026
bec6e5c
Update addon_manager_proxy.py
flatsiedatsie Jan 29, 2026
7394b28
Update addon_manager_proxy.py
flatsiedatsie Jan 29, 2026
9148d2f
Update addon_manager_proxy.py
flatsiedatsie Jan 29, 2026
e62b77f
Update ipc.py
flatsiedatsie Mar 1, 2026
2999aa3
Update property.py
flatsiedatsie Apr 6, 2026
445cc15
Update addon_manager_proxy.py
flatsiedatsie Apr 20, 2026
7b3ad4b
Update addon_manager_proxy.py
flatsiedatsie Apr 20, 2026
3efd5f0
Update setup.py
flatsiedatsie Apr 22, 2026
434ab93
Add files via upload
flatsiedatsie Apr 22, 2026
0039cee
Update setup.py
flatsiedatsie Apr 22, 2026
adfa01a
Update setup.cfg
flatsiedatsie Apr 22, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gateway_addon/ipc.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def __init__(self, plugin_id, on_message, verbose=False):
while not self.registered:
time.sleep(0.01)

def on_open(self):
def on_open(self, _):
"""Event handler for WebSocket opening."""
if self.verbose:
print('IpcClient: Connected to server, registering...')
Expand All @@ -102,7 +102,7 @@ def on_open(self):
print('IpcClient: Failed to send message: {}'.format(e))
return

def on_message(self, message):
def on_message(self, _, message):
"""
Event handler for WebSocket messages.

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
jsonschema==3.2.0
singleton-decorator==1.0.0
websocket-client==0.57.0
websocket-client==1.5.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[bdist_wheel]
# This wheel supports both Python 2.x and Python 3.x.
universal=1
#universal=1
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
requirements = [
'jsonschema==3.2.0',
'singleton-decorator==1.0.0',
'websocket-client==0.57.0',
'websocket-client==1.5.0',
]

setup(
name='gateway_addon',
version='1.1.1',
description='Bindings for WebThings Gateway add-ons',
description='Bindings for WebThings Gateway / Candle Controller add-ons',
long_description=long_description,
url='https://github.com/WebThingsIO/gateway-addon-python',
author='WebThingsIO',
keywords='webthings gateway addon add-on',
url='https://github.com/createcandle/gateway-addon-python@no_meta',
author='WebThingsIO and CandleSmartHome.com',
keywords='webthings gateway Candle controller addon add-on',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
package_data={'': ['schema/schema.json', 'schema/**/*.json']},
install_requires=requirements,
Expand Down
Loading