Hi Gerard,
Having a lot of trouble getting the script to run with /bin/python (in my Synology).
Using Python 3.5 starts something, but get error on a ‘*’:
sudo python3.5 ./bmwcdapi.py
File “./bmwcdapi.py”, line 97
self.update_interval = update_interval = * 60 # Change to seconds
^
SyntaxError: can’t use starred expression here
If I take out the ‘*’ this is what I get back:
/volume1/@appstore/py3k/usr/local/bin$ sudo python3.5 ./bmwcdapi.py
…running bmwcdapi.py
None: current credentials from BMW Connected Drive API still valid (token: VXbWuRcjq5BdFDUJJ1sTFiXVZylFRliU expires at: 2018-02-03 15:40:00)
Traceback (most recent call last):
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/urllib3/connection.py”, line 141, in _new_conn
(self.host, self.port), self.timeout, **extra_kw)
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/urllib3/util/connection.py”, line 60, in create_connection
for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/socket.py”, line 732, in getaddrinfo
for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
socket.gaierror: [Errno -2] Name or service not known
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/urllib3/connectionpool.py”, line 601, in urlopen
chunked=chunked)
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/urllib3/connectionpool.py”, line 346, in _make_request
self._validate_conn(conn)
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/urllib3/connectionpool.py”, line 850, in _validate_conn
conn.connect()
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/urllib3/connection.py”, line 284, in connect
conn = self._new_conn()
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/urllib3/connection.py”, line 150, in _new_conn
self, “Failed to establish a new connection: %s” % e)
urllib3.exceptions.NewConnectionError: <urllib3.connection.VerifiedHTTPSConnection object at 0x7f42634b4dd8>: Failed to establish a new connection: [Errno -2] Name or service not known
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/requests/adapters.py”, line 440, in send
timeout=timeout
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/urllib3/connectionpool.py”, line 639, in urlopen
_stacktrace=sys.exc_info()[2])
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/urllib3/util/retry.py”, line 388, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host=‘none’, port=443): Max retries exceeded with url: /api/vehicle/dynamic/v1/WBS1H9109HV918157?offset=-60 (Caused by NewConnectionError(’<urllib3.connection.VerifiedHTTPSConnection object at 0x7f42634b4dd8>: Failed to establish a new connection: [Errno -2] Name or service not known’,))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “./bmwcdapi.py”, line 467, in
main()
File “./bmwcdapi.py”, line 436, in main
c = ConnectedDrive()
File “./bmwcdapi.py”, line 119, in init
self.get_car_data()
File “./bmwcdapi.py”, line 236, in get_car_data
data_response = requests.get(self.bmw_url+’/dynamic/v1/’+self.bmw_vin+’?offset=-60’, headers=headers, allow_redirects=True)
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/requests/api.py”, line 72, in get
return request(‘get’, url, params=params, **kwargs)
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/requests/api.py”, line 58, in request
return session.request(method=method, url=url, **kwargs)
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/requests/sessions.py”, line 508, in request
resp = self.send(prep, **send_kwargs)
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/requests/sessions.py”, line 618, in send
r = adapter.send(request, **kwargs)
File “/volume1/@appstore/py3k/usr/local/lib/python3.5/site-packages/requests/adapters.py”, line 508, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host=‘none’, port=443): Max retries exceeded with url: /api/vehicle/dynamic/v1/WBS1H9109HV918157?offset=-60 (Caused by NewConnectionError(’<urllib3.connection.VerifiedHTTPSConnection object at 0x7f42634b4dd8>: Failed to establish a new connection: [Errno -2] Name or service not known’,))
//Robert