Skip to content

Taipy.core.submit

Submit a scenario, sequence or task entity for execution.

This function submits the given entity for execution and returns the created job(s).

If the entity is a sequence or a scenario, all the tasks of the entity are submitted for execution.

Parameters:

Name Type Description Default
entity Union[Scenario, Sequence, Task]

The scenario, sequence or task to submit.

required
force bool

If True, the execution is forced even if for skippable tasks.

False
wait bool

Wait for the orchestrated jobs created from the submission to be finished in asynchronous mode.

False
timeout Union[float, int]

The optional maximum number of seconds to wait for the jobs to be finished before returning.

None
**properties dict[str, any]

A keyworded variable length list of user additional arguments that will be stored within the Submission. It can be accessed via Submission.properties.

{}

Returns:

Type Description
Submission

The created Submission containing the information about the submission.