Hi @arij ,
The search function can be used; the Workspace's Advanced Search application can help you in finding available filters and export them into Python code. How to do so, in details can be found in Find content and functionality using the Data Library with Workspace Advanced Search | Devportal
Hi @arij,
Thanks for your question!
If you already have the ISINs, you can directly retrieve the corresponding RICs using the LSEG Data Library for Python as shown below:
import lseg.data as ld ld.open_session() RICs = ld.get_data( universe = ['US0378331005'], #Passing ISINs as universe fields = ['TR.RIC', 'TR.CompanyName'] #Requesting RICs corresponding to the ISINs ) display(RICs) ld.close_session()