Skip to main content

list_dataflows

list all available IMF dataflows.

Returns an OBBject containing either a JSON dictionary of dataflows or a markdown string under the 'results' attribute.

Examples

from openbb import obb
# lists all known dataflows available from the IMF in JSON format.
obb.imf_utils.list_dataflows(output_format='json')
# Return the content as a markdown-formatted summary instead of a JSON table.
obb.imf_utils.list_dataflows(output_format='markdown')
# lists all known dataflows available from the IMF.
imf_dataflows = obb.imf.utils.list_dataflows()
print(imf_dataflows)

Parameters

output_format: Literal['json', 'markdown']
Default: json


Returns

results: Any

Serializable results.

provider: str

Provider name.

warnings: Optional[list[Warning_]]

list of warnings.

chart: Optional[Chart]

Chart object.

extra: dict[str, Any]

Extra info.