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.interim.Definition object.

Module

refinitiv.data.content.estimates.view_summary_kpi.interim

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 interim periods for BNPP.PA:

response = estimates.view_summary_kpi.interim.Definition(
    universe="BNPP.PA",
).get_data()

print(response.data.df.to_markdown())

None