I have issues using the python api. The code is working when colleagues run it but I get errors on the port 9000. Se attached file. I have followed your tutorial,
https://developers.lseg.com/en/article-catalog/article/eikon-data-api-python-troubleshooting-refinitiv
, and do get "positive" results all the way but the logging tells me other. You can find the log in the attached file. The API port is set to 9000 in my Workspace.
The full code is this:import eikon as ekek.set_app_key('')frn_bond_data = pd.read_excel(filename, sheet_name = 'Liquidity Portfolio').convert_dtypes(str)rics,e3 = ek.get_data(list(frn_bond_data['ISIN']),"TR.RIC")eikon_data,e3 = ek.get_data(list(rics['RIC'].unique()),["TR.FiIndustrySectorDescription","TR.FiIndustrySubSectorDescription","TR.FiIssuerName","TR.FiMaturityDate","TR.FiIssueDate",\ "TR.CouponRate","TR.FiCouponFrequency","TR.ADF_MARGIN","TR.ACCRUEDINTEREST","TR.FiOriginalAmountIssued","TR.FiFaceIssuedTotal","TR.IssuerRating","TR.FiIssuerSPLongRating"])
Please see the attached file