snippets

🔌 Toolbox of short, reusable pieces of code and knowledge.

View the Project on GitHub rosikand/snippets

Flask "Hello, World!" example

Simple Python Flask app that displays the string "Hello, World!" in the browser.

from flask import Flask
app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'Hello, World!'

Run locally:

export FLASK_APP=app.py
export FLASK_DEBUGGING=1
flask run