Dictster

Flask

Flask is a lightweight web framework written in Python. It's designed to be simple, flexible, and easy to get started with, making it ideal for beginners and professionals alike. Flask doesn't enforce dependencies or project layout, which means you have the freedom to build your application however you want.


Key Features


Basic Example

from flask import Flask

app = Flask(__name__)

@app.route("/")
def home():
    return "Hello, Flask!"

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

Common Use Cases


Sitemap

Flask Web Framework Flask Application Object