Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 0 0

Eikon API Code for TRBC

Hi, I was wondering if there was an Eikon API code for "TRBC - Refinitiv Business Classification"

#contentpython api
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvotes
Accepted
6.2k 18 2 8

Hi @cole ,


You can search for Data Item Browser (DIB) in Eikon/Workspace app and search for the relevant TRBC field:


screenshot-2023-12-05-at-092946.pngThen, you can use Refinitiv Data Libraries for Python to retrieve the field values:

import refinitiv.data as rd
rd.open_session()

rd.get_data(['LSEG.L', 'MSFT.O'], fields = ['TR.TRBCIndustry'])

screenshot-2023-12-05-at-093053.png

Hope this helps.


Best regards,

Haykaz


icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.