I am trying to get the Eikon DATA API samples up and running and am coming across this error. It is working fine in Codebook but has all of a sudden stopped working in my personal environment.
Can you please look into what could be causing this?
Intento esto:
sedols = ['B1YW440', '0673123', 'B02J639', 'B1XZS82']
ek.get_symbology(sedols, to_symbol_type="ISIN")
Aquí el error:
EikonError Traceback (most recent call last)
<ipython-input-4-6308c7c1b287> in <module>
----> 1 ek.get_symbology(sedols, to_symbol_type="ISIN")
C:\ProgramData\Anaconda3\lib\site-packages\eikon\symbology.py in get_symbology(symbol, from_symbol_type, to_symbol_type, raw_output, debug, bestMatch)
111
112 payload = {'symbols': symbol, 'from': from_symbol_type, 'to': to_symbol_type, 'bestMatchOnly': bestMatch}
--> 113 result = eikon.json_requests.send_json_request(Symbology_UDF_endpoint, payload, debug=debug)
114
115 if raw_output:
C:\ProgramData\Anaconda3\lib\site-packages\eikon\json_requests.py in send_json_request(entity, payload, debug)
128return result
129 else:
--> 130_raise_for_status(response)
131
132 except requests_async.exceptions.ConnectionError as connectionError:
C:\ProgramData\Anaconda3\lib\site-packages\eikon\json_requests.py in _raise_for_status(response)
251 if error_msg:
252 logger.error('Error code {} | {}'.format(response.status_code, error_msg))
--> 253 raise EikonError(response.status_code, error_msg)
EikonError: Error code 404 | Client Error: 404 page not found