Config
The Config
class is a singleton as the entry point for the Taipy Core configuration. It is accessible
using the following import:
1 |
|
It exposes all the necessary attributes and methods to manage the configuration. In particular, it holds:
- The Data node configurations as a dictionary of
DataNodeConfig
s:1 2 3
from taipy import Config Config.data_nodes
- The Task configurations as a dictionary of
TaskConfig
s:1 2 3
from taipy import Config Config.tasks
- The Scenario configurations as a dictionary of
ScenarioConfig
s:1 2 3
from taipy import Config Config.scenarios
- The Job configuration as a
JobConfig
:1 2 3
from taipy import Config Config.job_config
- The Core configuration as a
CoreSection
:1 2 3
from taipy import Config Config.core
- The Global configuration as a
GlobalAppConfig
:1 2 3
from taipy import Config Config.global_config