call_report.config.get_config#
- call_report.config.get_config() dict[str, Any][source]#
Return a copy of the current thread’s package configuration.
Every reader in the package consults this configuration to decide which dataframe library and eagerness to build its return value with.
- Returns:
- dict[str, Any]
A copy with keys
"dataframe_backend"and"lazy". Mutating the returned dict has no effect on the package configuration.
Examples
>>> get_config() {'dataframe_backend': 'pandas', 'lazy': False}