Refinitiv Data Library for Python

esg.standard_measures.Definition object

This object defines the ESG standard measures data to retrieve.

Module

refinitiv.data.content.esg.standard_measures

Syntax

esg.standard_measures.Definition(universe, start, end, use_field_names_in_headers)

Parameters

Value Description Data type Optional Default value
universe Single instrument or list of instruments. str or list(str) No -
start Initial range of financial years to return. int Yes None
end End range of financial years to return. int Yes None
use_field_names_in_headers Boolean that indicates whether or not to add field names in the headers. bool Yes None

Returned value

esg.standard_measures.Definition instance

Usage

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

from refinitiv.data.content import esg

definition = esg.standard_measures.Definition(universe="BNPP.PA", start=0, end=-3)

None.