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!"
Videos
Creating a New Flask Project - Try Flask API Development
11:20
First Flask Project - Flask Tutorial Series #1 - YouTube
04:14:01
Learn Flask Web Development for Python | Python Flask Tutorial ...
22:33
Creating a Simple Python Web Application With Flask and Testing ...
06:21:04
Flask Course - Python Web Application Development - YouTube
17:09
Python Flask Tutorial: Full-Featured Web App Part 1 - Getting Started ...
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!
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)
/ 19 February 2026; 50 days ago (19 February 2026)
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)
/ 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 ·
Reddit
reddit.com › r/flask › where can i read the source code for flask's "development" server that runs on `flask run`?
r/flask on Reddit: Where can I read the source code for Flask's "development" server that runs on `flask run`?
May 19, 2022 -
I know flask source is available on github but how do you navigate it? Find where things are?
SOLVED: thanks for help!!!
run() funtion in app.py in flask package
... from werzeug.serving import run_simple try: run_simple(...) ...
Top answer 1 of 3
5
The flask development server is part of the werkzeug package. https://werkzeug.palletsprojects.com/en/2.1.x/serving/ Which is also on GitHub https://github.com/pallets/werkzeug/blob/bb21bf90b0b121e3ed45b9950b823e4b43a81fd8/src/werkzeug/serving.py#L933
2 of 3
4
Search for where the parameters are specified for the command line. Then find the run command. Then find what it calls. I’m not a flask dev but that’s the high level path I’d follow. Looking for command line parsing imports like click, argparse etc. can help find the entry point in many apps.
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
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%