🔌 Toolbox of short, reusable pieces of code and knowledge.
"Hello, World!"
exampleSimple 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