Refinitiv Data Library for Python

cleanup_db

Cleans up the local in-memory database of particular ESG data that was previously created.

Module

dataplatform_project/refinitiv/data/content/esg/bulk/_package_manager_facade.py

Syntax

cleanup_db()

Parameters

None.

Returned value

None.

Usage

The following example demonstrates how to clean up the local in-memory database of specific ESG data that was created previously:

from refinitiv.data.content.esg import PackageManager

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

# Cleanup the local database.

pkg.cleanup_db()

None.