@nstrelow i get this error:
python3 philips_2016.py --host 192.168.1.28 pair
Traceback (most recent call last):
File “philips_2016.py”, line 2, in
import homeassistant.helpers.config_validation as cv
ModuleNotFoundError: No module named ‘homeassistant’
tilen-4:~ tilenmatejcervek$ python3 philips.py --host 192.168.1.28 pair
Starting pairing request
Traceback (most recent call last):
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/packages/urllib3/connection.py”, line 141, in _new_conn
(self.host, self.port), self.timeout, **extra_kw)
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/packages/urllib3/util/connection.py”, line 83, in create_connection
raise err
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/packages/urllib3/util/connection.py”, line 73, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 61] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/packages/urllib3/connectionpool.py”, line 600, in urlopen
chunked=chunked)
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/packages/urllib3/connectionpool.py”, line 345, in _make_request
self._validate_conn(conn)
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/packages/urllib3/connectionpool.py”, line 844, in _validate_conn
conn.connect()
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/packages/urllib3/connection.py”, line 284, in connect
conn = self._new_conn()
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/packages/urllib3/connection.py”, line 150, in _new_conn
self, “Failed to establish a new connection: %s” % e)
requests.packages.urllib3.exceptions.NewConnectionError: <requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x10631fa90>: Failed to establish a new connection: [Errno 61] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/adapters.py”, line 423, in send
timeout=timeout
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/packages/urllib3/connectionpool.py”, line 649, in urlopen
_stacktrace=sys.exc_info()[2])
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/packages/urllib3/util/retry.py”, line 376, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
requests.packages.urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host=‘192.168.1.28’, port=1926): Max retries exceeded with url: /6/pair/request (Caused by NewConnectionError(’<requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x10631fa90>: Failed to establish a new connection: [Errno 61] Connection refused’))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “philips.py”, line 123, in
main()
File “philips.py”, line 90, in main
pair(config)
File “philips.py”, line 41, in pair
r = requests.post(“https://” + config[‘address’] + “:1926/6/pair/request”, json=data, verify=False)
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/api.py”, line 110, in post
return request(‘post’, url, data=data, json=json, **kwargs)
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/api.py”, line 56, in request
return session.request(method=method, url=url, **kwargs)
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/sessions.py”, line 488, in request
resp = self.send(prep, **send_kwargs)
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/sessions.py”, line 609, in send
r = adapter.send(request, **kwargs)
File “/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/requests/adapters.py”, line 487, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host=‘192.168.1.28’, port=1926): Max retries exceeded with url: /6/pair/request (Caused by NewConnectionError(’<requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x10631fa90>: Failed to establish a new connection: [Errno 61] Connection refused’))
or this in hassio:
core-ssh:~# /config/custom_components/media_player/philips_2016.py --host 192.168.1.28 pair
/config/custom_components/media_player/philips_2016.py: line 1: Philips TV: command not found
/config/custom_components/media_player/philips_2016.py: line 2: import: command not found
/config/custom_components/media_player/philips_2016.py: line 3: import: command not found
/config/custom_components/media_player/philips_2016.py: line 4: import: command not found
/config/custom_components/media_player/philips_2016.py: line 5: import: command not found
/config/custom_components/media_player/philips_2016.py: line 6: import: command not found
/config/custom_components/media_player/philips_2016.py: line 7: import: command not found
/config/custom_components/media_player/philips_2016.py: line 8: import: command not found
/config/custom_components/media_player/philips_2016.py: line 9: import: command not found
/config/custom_components/media_player/philips_2016.py: line 10: import: command not found
/config/custom_components/media_player/philips_2016.py: line 11: import: command not found
/config/custom_components/media_player/philips_2016.py: line 13: from: command not found
/config/custom_components/media_player/philips_2016.py: line 14: from: command not found
/config/custom_components/media_player/philips_2016.py: line 15: syntax error near unexpected token `(’
/config/custom_components/media_player/philips_2016.py: line 15: `from homeassistant.components.media_player import (SUPPORT_STOP, SUPPORT_PLAY, SUPPORT_NEXT_TRACK, SUPPORT_PAUSE,’
core-ssh:~# /config/custom_components/media_player/philips.py --host 192.168.1.28 pair
/config/custom_components/media_player/philips.py: line 1: from: command not found
/config/custom_components/media_player/philips.py: line 2: from: command not found
/config/custom_components/media_player/philips.py: line 3: from: command not found
/config/custom_components/media_player/philips.py: line 4: import: command not found
/config/custom_components/media_player/philips.py: line 5: import: command not found
/config/custom_components/media_player/philips.py: line 6: import: command not found
/config/custom_components/media_player/philips.py: line 7: import: command not found
/config/custom_components/media_player/philips.py: line 8: import: command not found
/config/custom_components/media_player/philips.py: line 9: from: command not found
/config/custom_components/media_player/philips.py: line 10: from: command not found
/config/custom_components/media_player/philips.py: line 11: import: command not found
/config/custom_components/media_player/philips.py: line 20: syntax error near unexpected token `def’
/config/custom_components/media_player/philips.py: line 20: `def createDeviceId():’
core-ssh:~#