About 23,200 results
Open links in new tab
    • Data Science Partners
      datasciencepartners.nl › back-end › development
      About our ads

      Flask training - API development training

      SponsoredLeer professionele Python backends bouwen. Van database tot deployment. Praktische training: bouw in één cursus je eigen Python webapplicatie.
  1. Build a Scalable Flask Web Project From Scratch - Real Python

    In this tutorial, you'll explore the process of creating a boilerplate for a Flask web project. It's a great starting point for any scalable Flask web app that you wish to d

    Real Python
    How to Build a Flask Python Web Application from Scratch - Educative

    Flask is a micro-framework developed in Python that provides only the essential components - things like routing, request handling, sessions, and so on. It provides …

    Educative
  1. Flask is a lightweight Python web framework ideal for quickly creating web pages and scalable applications. Below is a step-by-step guide to building a simple Flask web page from scratch.

    1. Set Up the Environment

    Create project folder & virtual environment:

    mkdir my_flask_app
    cd my_flask_app
    python -m venv venv
    source venv/bin/activate # On Windows: venv\Scripts\activate
    Copied!

    Install Flask:

    pip install Flask
    Copied!

    2. Create the Application

    Inside your project folder, create app.py:

    from flask import Flask, render_template

    app = Flask(__name__)

    @app.route("/")
    def home():
    return render_template("index.html")

    if __name__ == "__main__":
    app.run(debug=True)
    Copied!

    3. Add Templates

    Flask uses Jinja2 for templating. Create a templates folder and inside it, add index.html:

    <!DOCTYPE html>
    <html>
    <head>
    <title>My Flask Page</title>
    </head>
    <body>
    <h1>Welcome to My Flask Web Page!</h1>
    <p>This page is powered by Python & Flask.</p>
    </body>
    </html>
    Copied!

    4. Run the Server

    With your virtual environment active:

    Feedback
  2. Introduction to Web development using Flask - GeeksforGeeks

    • See More

    5 days ago · After installing Flask, one can create a basic web application by defining routes and running a local development server. Below is an example to understand how a Flask app works.

  3. Build a Scalable Flask Web Project From Scratch - Real Python

    • See More

    In this tutorial, you'll explore the process of creating a boilerplate for a Flask web project. It's a great starting point for any scalable Flask web app that you wish to develop in the future, from basic web …

  4. How to Build a Flask Python Web Application from …

    Mar 10, 2026 · Flask is a micro-framework developed in Python that provides only the essential components - things like routing, request handling, sessions, and so …

  5. Web Development with Flask & Python: Build Dynamic …

    Apr 23, 2025 · In this step-by-step tutorial, I'll show you how to build dynamic web applications using Flask, one of Python's most popular micro-frameworks.

  6. Building a Web App with Flask: From Setup to Deployment

    This blog post will guide you through the entire process of building a web app with Flask, from setting up the project to deploying it on a live server. By the end of this guide, you'll have a solid understanding of …

  7. How to Build Your First Flask Application (Step-by-Step Guide for ...

    Nov 29, 2025 · If you're learning Python web development, building your first Flask app is the perfect starting point. This beginner-friendly guide will walk you through how to create, run, and understand …