Refinitiv Data Library for Python

reset_files

Resets all the previously downloaded local files that belong to particular ESG data package.

Module

refinitiv.data.content.esg.bulk

Syntax

reset_files()

Parameters

None.

Returned value

None.

Usage

The following example demonstrates how to reset previously downloaded ESG package files:

from refinitiv.data.content.esg import PackageManager

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

# Reset all previously downloaded files that belong to this data package

pkg.reset_files()

None.