portfolio_holdings CUSIP.pdf Attached are the portfolio holdings I have retrieved from the 13F holdings from Refinitiv. The column name "CUSIP" provides the company 8-digit CUSIP. My next step is to obtain the Scope 1 and Scope 2 emissions from each company listed here. This is only a small part of my dataset; therefore, I wish to automate this to ensure efficiency through a Python environment.
Created below on CODEBK
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = [
'594918104','02079K305','037833100'
],
fields = [
'TR.RIC',
'TR.CO2DirectScope1',
'TR.CO2IndirectScope2'
]
)
display(df)
But client requests to automate this on Python environment using the attached CUSIP.