I need to get all available RICs possible for a certain ISIN through python via lseg-data library as I need to get all contributors available. Before, I can do this using Eikon library as shown below.
data = ek.get_symbology("GB00BFWFPP71", to_symbol_type='RIC', best_match=False)
Tried, using symbology and symbol_conversion functions/classes but they only return one RIC. The search function can fetch multiple RICs but this is incomplete.
Is there an approach that uses lseg library instead of Eikon? I noticed that the module will be unsupported in the upcoming patches so if possible I want the solution using lseg module.