MVC Architecture with Streamlit in Python

Streamlit is a powerful framework for building data-driven web applications in Python, but it lacks built-in support for Model-View-Controller (MVC) architecture. However, you can structure your Streamlit app using an MVC-like pattern to improve maintainability and scalability.

1. Understanding MVC in Streamlit

  • Model (M) β†’ Manages data, fetching, processing, and storage.
  • View (V) β†’ Handles UI, displays data, and interacts with the user.
  • Controller (C) β†’ Manages user input and updates the model/view accordingly.

Since Streamlit is UI-centric, it does not have a strict controller, but we can manage business logic using functions.

2. Folder Structure for MVC in Streamlit

A well-structured Streamlit project might look like this:

3. Implementing MVC in Streamlit

1️⃣ Model (Data Handling)

Create a file models/data_loader.py to fetch and process data.

2️⃣ View (UI)

Create a file views/home.py for the home page UI.

Create another file views/dashboard.py for the dashboard UI.

3️⃣ Controller (Application Logic)

Create a file controllers/app_controller.py to control app logic.

4️⃣ Main Application (app.py)

This is the entry point for running the app.

4. Running the Streamlit App

To start the app, run:

5. Benefits of Using MVC with Streamlit

βœ… Separation of concerns β†’ Easier to maintain and scale
βœ… Modularity β†’ Allows reusability of components
βœ… Improved organization β†’ Code is neatly structured for better readability

Use Case: Handle daily file updates in the backend, perform calculations, and display results in front end

Solution Overview
  1. Backend (Model)
    • A script that automatically processes daily files (CSV, Excel, etc.).
    • Store processed results in a database or cache for quick access.
  2. Controller
    • Loads and updates data from the backend.
    • Provides functions for performing calculations.
  3. Frontend (View)
    • Streamlit app displays processed results.
    • Users can select a date or trigger a manual refresh.

1️⃣ Backend – Handle Daily File Updates

Let’s assume files are stored in a “data/” folder and arrive daily.

File Processing (models/file_processor.py)

2️⃣ Controller – Load Data & Handle Processing

Controller Logic (controllers/app_controller.py)

3️⃣ Streamlit App (View)

Frontend UI (app.py)
4️⃣ Running the App
  1. Place your daily CSV files in the “data/” folder.
  2. Run the Streamlit app: shCopyEdit

5️⃣ Automating Daily Processing

Instead of manually clicking the button, you can schedule automatic processing.

Option 1: Automate Using a Cron Job (Linux/macOS)

Option 2: Automate with Windows Task Scheduler

  1. Open Task Scheduler β†’ Create Basic Task.
  2. Set it to run python file_processor.py daily.

βœ… Automatic File Handling β†’ Picks the latest file every day.
βœ… Efficient Processing β†’ Only processes new data.
βœ… Real-Time UI Updates β†’ Users always see the latest results.

You May Love