Package: taipy.core
¶
Types¶
CycleId
: Type that holds aCycle
identifier.DataNodeId
: Type that holds aDataNode
identifier.JobId
: Type that holds aJob
identifier.PipelineId
: Type that holds aPipeline
identifier.ScenarioId
: Type that holds aScenario
identifier.TaskId
: Type that holds aTask
identifier.
Functions¶
cancel_job()
: Cancel a job and set the status of the subsequent jobs to ABANDONED.clean_all_entities()
: Delete all entities from the Taipy data folder.compare_scenarios()
: Compare the data nodes of several scenarios.create_pipeline()
: Create and return a new pipeline from a pipeline configuration.create_scenario()
: Create and return a new scenario from a scenario configuration.delete()
: Delete an entity and its nested entities.delete_job()
: Delete a job.delete_jobs()
: Delete all jobs.get()
: Get an entity from its identifier.get_cycles()
: Return the list of all existing cycles.get_data_nodes()
: Return all the existing data nodes.get_jobs()
: Return all the existing jobs.get_latest_job()
: Return the latest job of a task.get_pipelines()
: Return all existing pipelines.get_primary()
: Return the primary scenario of a cycle.get_primary_scenarios()
: Return the list of all primary scenarios.get_scenarios()
: Return the list of all existing scenarios filtered by a cycle or a tag.get_tasks()
: Return the list of all existing tasks.set()
: Save or update an entity.set_primary()
: Promote a scenario as the primary scenario of its cycle.submit()
: Submit an entity for execution.subscribe_pipeline()
: Subscribe a function to be called on job status change.subscribe_scenario()
: Subscribe a function to be called on job status change.tag()
: Add a tag to a scenario.unsubscribe_pipeline()
: Unsubscribe a function that is called when the status of a Job changes.unsubscribe_scenario()
: Unsubscribe a function that is called when the status of aJob
changes.untag()
: Remove a tag from a scenario.
Classes¶
Core
: Core serviceCycle
: An iteration of a recurrent work pattern.DataNode
: Reference to a dataset.Job
: Execution of aTask
.Pipeline
: List ofTask
s and additional attributes representing a set of data processing elements connected as a direct acyclic graph.Scenario
: Instance of a Business case to solve.Status
: Execution status of aJob
.Task
: Hold a user function that will be executed, its parameters and the results.