Config
The Config
class is the entrypoint for 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 pipeline configurations as a dictionary of
PipelineConfig
s:1 2 3
from taipy import Config Config.pipelines
- 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 Confi.job_config
- the global configuration as a
GlobalAppConfig
:1 2 3
from taipy import Config Confi.global_config