Refinitiv Data Library for Python

get_data

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

Module

refinitiv.data.content.estimates.view_summary_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 the estimates summary values for KPI measures for annual periods for BNPP.PA:

response = estimates.view_summary_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 - High Non Performing Loan - Low Non Performing Loan - Mean Non Performing Loan - Median Non Performing Loan - Num Inc Est Non Performing Loan - Num of Est Non Performing Loan - Std Dev Core Tier 1 Capital Ratio - High Core Tier 1 Capital Ratio - Low Core Tier 1 Capital Ratio - Mean Core Tier 1 Capital Ratio - Median Core Tier 1 Capital Ratio - Num Inc Est Core Tier 1 Capital Ratio - Num of Est Core Tier 1 Capital Ratio - StdDev
0 BNPP.PA 2023-12-31 00:00:00 FY2023 FY2 28378000000 0 16367033330 20723100000 3 4 11987749540 109074000000 95003000000 102210666670 102555000000 3 6 5749619370
1 BNPP.PA 2022-12-31 00:00:00 FY2022 FY1 28097000000 0 16414333330 21146000000 3 4 11948552330 104612000000 91167000000 98279000000 99058000000 3 6 5516468500
2 BNPP.PA 2021-12-31 00:00:00 FY2021 FY0 30372000000 24465000000 28279000000 30000000000 3 4 2701177890 102522000000 92509000000 97418714290 99287000000 7 8 4072981070
3 BNPP.PA 2020-12-31 00:00:00 FY2020 FY-1 30086000000 23331000000 27805666670 30000000000 3 4 3164261930 99033000000 87630000000 94676833330 96721500000 6 6 4288460460

None