WorkflowsApr 2, 2026·2 min read
Taipy — Build Data & AI Web Apps in Python
Full-stack Python framework for data dashboards and AI pipelines. GUI builder + workflow orchestration in one package. 15K+ stars.
TO
TokRepo精选 · Community
Quick Use
Use it first, then decide how deep to go
This block should tell both the user and the agent what to copy, install, and apply first.
```bash
pip install taipy
```
```python
import taipy.gui.builder as tgb
from taipy.gui import Gui
value = "Hello World"
with tgb.Page() as page:
tgb.text("# My AI App", mode="md")
tgb.input("{value}", label="Enter text")
tgb.text("You typed: {value}")
Gui(page=page).run()
```
This launches a web app at `http://localhost:5000`. For AI pipeline orchestration:
```python
from taipy import Config
# Define data nodes and tasks
input_cfg = Config.configure_data_node("raw_data", path="data.csv")
clean_cfg = Config.configure_data_node("clean_data")
model_cfg = Config.configure_data_node("predictions")
clean_task = Config.configure_task("clean", clean_function, [input_cfg], [clean_cfg])
predict_task = Config.configure_task("predict", predict_function, [clean_cfg], [model_cfg])
scenario_cfg = Config.configure_scenario("ml_pipeline", [clean_task, predict_task])
```
---
Intro
Taipy is a full-stack Python framework with 15,000+ GitHub stars for building production data and AI web applications. It combines a **GUI builder** (create interactive dashboards without JavaScript) with a **workflow orchestrator** (manage data pipelines, ML training, scenario comparison). With Taipy, a single Python developer can build what normally requires a frontend engineer + backend engineer + DevOps. Used in production by enterprises for AI dashboards, what-if scenario analysis, and ML pipeline management.
Works with: Python, Pandas, scikit-learn, TensorFlow, PyTorch, any Python ML library. Best for data scientists and ML engineers who want to build full web apps without learning React/Vue. Setup time: under 3 minutes.
---
🙏
Source & Thanks
> Created by [Avaiga](https://github.com/Avaiga). Licensed under Apache-2.0.
>
> [taipy](https://github.com/Avaiga/taipy) — ⭐ 15,000+
Thanks to the Avaiga team for making full-stack AI app development accessible to Python developers.
Discussion
Sign in to join the discussion.
No comments yet. Be the first to share your thoughts.
Related Assets
LaVague — Natural Language Web Automation
Give a text objective, LaVague drives the browser to accomplish it. Large Action Model framework for web agents. 6.3K+ stars.
TokRepo精选
Trae Agent — AI Coding Agent by ByteDance
Open-source autonomous coding agent for software engineering tasks. Multi-provider LLM support. By ByteDance. 11K+ stars.
TokRepo精选
bolt.diy — AI Full-Stack App Builder, Any LLM
Community fork of Bolt.new. Prompt, edit, and deploy full-stack web apps with any LLM provider. 19K+ GitHub stars.
TokRepo精选