Hello,
I am trying to download the Private Equity/VC data through the API.
import refinitiv.data as rd
from refinitiv.data.discovery import Screener
rd.open_session(name='platform.rdp',
config_name="./refinitiv-data.config.json")
screenr = "SCREEN(U(IN(Equity(private))), BETWEEN(TR.PEInvestRoundDate,20251225,20251231), CURN=USD)"
fields = [
"TR.PEInvestCompanyName",
"TR.PEInvestFirminvestorName",
"TR.PEInvestRoundFinancingStage"
]
results = rd.get_data(screenr, fields)
results.to_excel("private_equity.xlsx", index=False)
print("finished")
The code above works and saves the data into an excel file. But when I compare the data with the screener from workspace (from the Private Equity/VC section with the default options) nearly 5% of the records are different. Why is there a difference? Am I downloading the same dataset? How can I get the right code for the same data? I checked CODECR and selected the fields in the code above, but it does not show any python code. CODECR seems to be not working.
Thanks for your help in advance.