Refinitiv Data Library for Python

get_data

Sends a request to the Refinitiv Data Platform to retrieve the data described in the estimates.view_actuals_kpi.annual.Definition object.

Module

refinitiv.data.content.estimates.view_actuals_kpi.annual

Syntax

get_data(session, on_response)

Parameters

Value Description Data type Optional Default value
session Session object. If it's not passed the default session will be used. Session object Yes None
on_response Callable function to process the retrieved data. Callable Yes None

Returned value

Response

Usage

The following example demonstrates how to retrieve estimates actuals values for KPI Measures for reported annual periods for BNPP.PA:

response = estimates.view_actuals_kpi.annual.Definition(universe="BNPP.PA").get_data()

print(response.data.df.to_markdown())
Response
Instrument Period End Date Financial Period Absolute Financial Period Relative Non Performing Loan - Actual Non Performing Loan - Standard Unexpected Earnings Non Performing Loan - Standard Unexpected Earnings 60 Day Non Performing Loan - Actual Surprise Non Performing Loan - Actual Surprise 60 Day Core Tier 1 Capital Ratio - Actual Core Tier 1 Capital Ratio - Actual Core Tier 1 Capital Ratio - Standard Unexpected Earnings 60 Day Core Tier 1 Capital Ratio - Actual Surprise Core Tier 1 Capital Ratio - Actual Surprise 60 Day
0 BNPP.PA 2021-12-31 00:00:00 FY2021 FY0 27905000000 -0.13846 -0.13846 -1.323 -1.323 91976000000 -1.3363 -1.15137 -5.587 -4.917
1 BNPP.PA 2020-12-31 00:00:00 FY2020 FY-1 30150000000 0.74088 0.30381 8.431 4.372 88800000000 -1.37038 -1.33184 -6.207 -6.328

None