Refinitiv Data Library for Python

esg.bulk.Definition object

This object defines the ESG full measures data to retrieve.

Module

refinitiv.data.content.esg.bulk

Syntax

esg.bulk.Definition(package_name, universe, fields)

Parameters

Value Description Data type Optional Default value
package_name Name of the package to download. str No -
universe Single instrument or list of instruments. str or list(str) No -
fields List of fields to return. str or list(str) Yes None

Returned value

esg.bulk.Definition instance

Usage

The following example demonstrates how to create the definition to retrieve the ESG data in "esg.standard_scores" scope for particular instrument.

from refinitiv.data.content import esg


definition = esg.bulk.Definition("esg.standard_scores", universe = "4295865175")

None.