You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.
In [1]: import pyEX
In [2]: client = pyEX.client.Client()
In [3]: client.internationalSymbols(exchange='LON')
[...]
PyEXception: ('Response 404 - ', 'Not Found')
There is an incorrect endpoint in refdata.py, Line 314
return _getJson('ref-data/exchange/{exchange}/exchange'.format(exchange=exchange), token, version, filter)
should be
return _getJson('ref-data/exchange/{exchange}/symbols'.format(exchange=exchange), token, version, filter)
The text was updated successfully, but these errors were encountered:
How to reproduce:
In [1]: import pyEX
In [2]: client = pyEX.client.Client()
In [3]: client.internationalSymbols(exchange='LON')
[...]
PyEXception: ('Response 404 - ', 'Not Found')
There is an incorrect endpoint in refdata.py, Line 314
return _getJson('ref-data/exchange/{exchange}/exchange'.format(exchange=exchange), token, version, filter)
should be
return _getJson('ref-data/exchange/{exchange}/symbols'.format(exchange=exchange), token, version, filter)
The text was updated successfully, but these errors were encountered: