Refinitiv Data Library for Python

update_db

Updates a local in-memory database with the latest downloaded files.

Module

refinitiv.data.content.esg.bulk

Syntax

update_db()

Parameters

None.

Returned value

None.

Usage

The following example demonstrates how to update a local in-memory database with the latest downloaded files for a previously defined ESG package:

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()

# update a local database
pkg.update_db()

None.