Refinitiv Data Library for Python

get_data

Sends a request to the Refinitiv Data Platform to retrieve the data described in esg.standard_scores.Definition object.

Module

refinitiv.data.content.esg.standard_scores

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 User-defined callback function to process the retrieved data. Callable Yes None

Returned value

Response

Usage

The following example demonstrates how to retrieve ESG standard scores data for BNPP.PA for the last four years:

from refinitiv.data.content import esg

response = esg.standard_scores.Definition(universe="BNPP.PA", start=0, end=-3).get_data()
print(response.data.df.to_markdown())
Response
Instrument Period End Date ESG Combined Score ESG Score ESG Controversies Score Environment Pillar Score Social Pillar Score Governance Pillar Score Resource Use Score Emissions Score Innovation Score Workforce Score Human Rights Score Community Score Product Responsibility Score Management Score Shareholders Score CSR Strategy Score ESG Reporting Scope ESG Report Auditor Name ESG Period Last Update Date
0 BNPP.PA 2020-12-31 00:00:00 58.9211 94.6279 23.2143 94.2078 95.9246 93.0094 87.1869 92.1903 96.4674 97.7509 95.6989 92.7912 96.4591 97.6804 77.0619 93.5754 33.824 PricewaterhouseCoopers Audit 2022-11-03 00:00:00
1 BNPP.PA 2019-12-31 00:00:00 56.1677 93.8888 18.4466 94.9314 96.2402 90.2319 83.2176 97.7273 97.1609 98.1051 95.6592 93.4597 96.5969 96.5625 79.0625 75.3333 90 PricewaterhouseCoopers Audit 2022-09-30 00:00:00
2 BNPP.PA 2018-12-31 00:00:00 77.2881 93.2666 61.3095 95.2943 96.557 87.9221 84.4972 97.1545 97.5285 98.3289 95.5426 94.1845 97.0326 91.1765 82.6797 79.5139 77 PricewaterhouseCoopers Audit 2022-09-30 00:00:00

None.