🌐
GitHub
github.com › pallets › flask
GitHub - pallets/flask: The Python micro framework for building web applications. · GitHub
$ flask run * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
Starred by 71.4K users
Forked by 16.8K users
Languages   Python
🌐
Palletsprojects
palletsprojects.com › projects › flask
Flask
# app.py from flask import Flask app = Flask(__name__) @app.route("/") def greet(): return "Hello, World!"
🌐
Flask
flask.palletsprojects.com › en › stable › quickstart
Quickstart — Flask Documentation (3.1.x)
The debugger allows executing arbitrary Python code from the browser. It is protected by a pin, but still represents a major security risk. Do not run the development server or debugger in a production environment. To enable debug mode, use the --debug option. $ flask --app hello run --debug * Serving Flask app 'hello' * Debug mode: on * Running on http://127.0.0.1:5000 (Press CTRL+C to quit) * Restarting with stat * Debugger is active!
Python web framework
Flask is a micro web framework written in Python. It is classified as a microframework because it does not require particular tools or libraries. It has no database abstraction layer, form validation, … Wikipedia
Factsheet
Developer Armin Ronacher
Initial release 1 April 2010; 16 years ago (2010-04-01)
Stable release 3.1.3
/ 19 February 2026; 50 days ago (19 February 2026)
Factsheet
Developer Armin Ronacher
Initial release 1 April 2010; 16 years ago (2010-04-01)
Stable release 3.1.3
/ 19 February 2026; 50 days ago (19 February 2026)
🌐
Flask
flask.palletsprojects.com
Welcome to Flask — Flask Documentation (3.1.x)
Flask provides configuration and conventions, with sensible defaults, to get started. This section of the documentation explains the different parts of the Flask framework and how they can be used, customized, and extended.
🌐
Full Stack Python
fullstackpython.com › flask-code-examples.html
Flask Example Projects and Code
Flask · Bottle · Pyramid · TurboGears · Falcon · Morepath · Sanic · Other web frameworks · Jinja2 · Mako · Django Templates · HTML · CSS · Responsive Design · Minification · Bootstrap · Foundation · React · Vue.js · Angular · Celery · Redis Queue (RQ) Dramatiq · Pelican · Lektor · MkDocs · Unit testing · Integration testing · Debugging · Code Metrics ·
🌐
Full Stack Python
fullstackpython.com › flask.html
Flask - Full Stack Python
Flask's success created a lot of additional work in issue tickets and pull requests. Armin eventually created The Pallets Projects collection of open source code libraries after he had been managing Flask under his own GitHub account for several years.
Find elsewhere
🌐
GeeksforGeeks
geeksforgeeks.org › python › flask-projects
Python Flask Projects with Source Code (Beginners to Advanced) - GeeksforGeeks
July 23, 2025 - In this article, we’ve curated a list of the best Python Flask projects for all skill levels, from beginner, intermediate to advanced. So, get ready to build amazing Flask-based projects and enhance your data science and machine learning skills!
🌐
PyPI
pypi.org › project › Flask
Flask · PyPI
Download URL: flask-3.1.3.tar.gz · Upload date: Feb 19, 2026 · Size: 759.0 kB · Tags: Source · Uploaded using Trusted Publishing? Yes · Uploaded via: twine/6.1.0 CPython/3.13.7 · See more details on using hashes here.
      » pip install Flask
    
Published   Feb 19, 2026
Version   3.1.3
🌐
Real Python
realpython.com › flask-project
Build a Scalable Flask Web Project From Scratch – Real Python
March 22, 2024 - At the end of this tutorial, you’ll have created a working Flask web application that you can use to bootstrap your future Flask projects. Get Your Code: Click here to download the free source code that shows you how to build a Flask project boilerplate.
🌐
Codeanywhere
codeanywhere.com › languages › flask
flask · Run source code examples online · AI Cloud IDE · Codeanywhere
Clone flask GitHub repository source code and run examples instantly in our online editor.
🌐
GitHub
github.com › pallets › flask › blob › main › src › flask › app.py
flask/src/flask/app.py at main · pallets/flask
if "FLASK_DEBUG" in os.environ: self.debug = get_debug_flag() · # debug passed to method overrides all other sources · if debug is not None: self.debug = bool(debug) · server_name = self.config.get("SERVER_NAME") sn_host = sn_port = None ·
Author   pallets
🌐
Visual Studio Code
code.visualstudio.com › docs › python › tutorial-flask
Flask Tutorial in Visual Studio Code
November 3, 2021 - You now have a self-contained environment ready for writing Flask code. VS Code activates the environment automatically when you open a new terminal. If you open a separate command prompt or terminal outside VS Code, activate the environment by running source .venv/bin/activate (Linux/macOS) or .venv\Scripts\Activate.ps1 (Windows).
🌐
SourceForge
sourceforge.net › home › open source software › software development › frameworks › flask
Download 3.0.3 source code.zip (Flask)
Being a “micro” framework does not mean that your whole web application must fit into a single Python file (although it can) or that it be limited; rather it means that Flask aims to keep the core simple but extensible. Flask offers suggestions, but it won’t make any decisions for you such as what database to use or what dependencies or project layout to choose.
🌐
GitHub
github.com › miguelgrinberg › flask-examples
GitHub - miguelgrinberg/flask-examples: Code for my "Python Web Development with Flask" presentation.
This repository contains the source code that I demonstrate in my "Python Web Development with Flask" presentation.
Starred by 102 users
Forked by 121 users
Languages   Python 77.8% | HTML 22.2% | Python 77.8% | HTML 22.2%
🌐
GitHub
github.com › miguelgrinberg › flasky
GitHub - miguelgrinberg/flasky: Companion code to my O'Reilly book "Flask Web Development", second edition. · GitHub
This repository contains the source code examples for the second edition of my O'Reilly book Flask Web Development.
Starred by 8.8K users
Forked by 4.2K users
Languages   Python 81.3% | HTML 16.1% | CSS 1.7% | Mako 0.4% | Dockerfile 0.3% | Shell 0.2%
🌐
GitHub
github.com › microsoft › python-sample-vscode-flask-tutorial
GitHub - microsoft/python-sample-vscode-flask-tutorial: Sample code for the Flask tutorial in the VS Code documentation · GitHub
Sample code for the Flask tutorial in the VS Code documentation - microsoft/python-sample-vscode-flask-tutorial
Starred by 387 users
Forked by 6.6K users
Languages   HTML 34.1% | Python 29.2% | Dockerfile 26.3% | CSS 10.4%
🌐
Medium
sharmaji27.medium.com › 10-unique-flask-projects-with-source-code-a15d226b7bb9
10+ Unique Flask Projects with Source Code | by Abhishek Sharma | Medium
August 25, 2023 - Create Your Own To-Do List Flask App Using Python: Step-by-Step Guide with Source Code Included!