Refinitiv Data Library for Python

update_files

Downloads the latest init and delta files of ESG package data and uncompresses them.

Module

refinitiv.data.content.esg.bulk

Syntax

update_files()

Parameters

None.

Returned value

None

Usage

The following example demonstrates how to download the latest init and delta files of a previously defined ESG package and uncompress them:

from refinitiv.data.content.esg import PackageManager

# Define package of ESG data to retrieve.
pkg = PackageManager('esg.standard_scores')

# download and uncompress files
pkg.update_files()

None.