LSEG Data Library for Python

esg.full_scores.Definition object

This object defines the ESG full scores data to retrieve.

Module

lseg.data.content.esg.full_scores

Syntax

esg.full_scores.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 to add field names in the headers. bool Yes None

Returned value

esg.full_scores.Definition instance

Usage

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

from lseg.data.content import esg

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

None.

93 words (0:29 mins)