I'm using the following to convert from ISIN to RIC:
ld.open_session()
response = symbol_conversion.Definition(symbols = ['TH8319010Z06'],
from_symbol_type = symbol_conversion.SymbolTypes.ISIN,
to_symbol_types = symbol_conversion.SymbolTypes.RIC,
asset_class = symbol_conversion.AssetClass.EQUITIES,
).get_data()
eikon_map = response.data.df
ld.close_session()
It used to work but then I think because the stock has become delisted it doesn't return a value.
Ideally I'd like to specify an as of date / effective date to run the query for so I can reliably reproduce the same data and not be impacted by delistings.
Kind Regards
Jasdeep