From Flask#
ASGI vs WSGI#
Flask is a WSGI framework, whereas Litestar is built using the modern ASGI standard. A key difference is that ASGI is built with async in mind.
While Flask has added support for async/await
, it remains synchronous at its core;
The async support in Flask is limited to individual endpoints.
What this means is that while you can use async def
to define endpoints in Flask,
they will not run concurrently - requests will still be processed one at a time.
Flask handles asynchronous endpoints by creating an event loop for each request, run the
endpoint function in it, and then return its result.
ASGI on the other hand does the exact opposite; It runs everything in a central event loop. Litestar then adds support for synchronous functions by running them in a non-blocking way on the event loop. What this means is that synchronous and asynchronous code both run concurrently.
Routing#
from flask import Flask
app = Flask(__name__)
@app.route("/")
def index():
return "Index Page"
@app.route("/hello")
def hello():
return "Hello, World"
from litestar import Litestar, get
@get("/")
def index() -> str:
return "Index Page"
@get("/hello")
def hello() -> str:
return "Hello, World"
app = Litestar([index, hello])
Path parameters#
from flask import Flask
app = Flask(__name__)
@app.route("/user/<username>")
def show_user_profile(username):
return f"User {username}"
@app.route("/post/<int:post_id>")
def show_post(post_id):
return f"Post {post_id}"
@app.route("/path/<path:subpath>")
def show_subpath(subpath):
return f"Subpath {subpath}"
from litestar import Litestar, get
from pathlib import Path
@get("/user/{username:str}")
def show_user_profile(username: str) -> str:
return f"User {username}"
@get("/post/{post_id:int}")
def show_post(post_id: int) -> str:
return f"Post {post_id}"
@get("/path/{subpath:path}")
def show_subpath(subpath: Path) -> str:
return f"Subpath {subpath}"
app = Litestar([show_user_profile, show_post, show_subpath])
See also
To learn more about path parameters, check out this chapter in the documentation:
Request object#
In Flask, the current request can be accessed through a global request
variable. In Litestar,
the request can be accessed through an optional parameter in the handler function.
from flask import Flask, request
app = Flask(__name__)
@app.get("/")
def index():
print(request.method)
from litestar import get, Request
@get("/")
def index(request: Request) -> None:
print(request.method)
Request methods#
Flask |
Litestar |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Use |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
See also
To learn more about requests, check out these chapters in the documentation
Static files#
Like Flask, Litestar also has capabilities for serving static files, but while Flask
will automatically serve files from a static
folder, this has to be configured explicitly
in Litestar.
from litestar import Litestar
from litestar.static_files import StaticFilesConfig
app = Litestar(
[], static_files_config=[StaticFilesConfig(path="/static", directories=["static"])]
)
Templates#
Flask comes with the Jinja templating
engine built-in. You can use Jinja with Litestar as well, but you’ll need to install it
explicitly. You can do by installing Litestar with pip install litestar[jinja]
.
In addition to Jinja, Litestar supports Mako and Minijinja templates as well.
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/hello/<name>")
def hello(name):
return render_template("hello.html", name=name)
from litestar import Litestar, get
from litestar.contrib.jinja import JinjaTemplateEngine
from litestar.response import Template
from litestar.template.config import TemplateConfig
@get("/hello/{name:str}")
def hello(name: str) -> Template:
return Template(response_name="hello.html", context={"name": name})
app = Litestar(
[hello],
template_config=TemplateConfig(directory="templates", engine=JinjaTemplateEngine),
)
Redirects#
For redirects, instead of redirect
use Redirect
:
from flask import Flask, redirect, url_for
app = Flask(__name__)
@app.get("/")
def index():
return "hello"
@app.get("/hello")
def hello():
return redirect(url_for("index"))
from litestar import Litestar, get
from litestar.response import Redirect
@get("/")
def index() -> str:
return "hello"
@get("/hello")
def hello() -> Redirect:
return Redirect(path="index")
app = Litestar([index, hello])
Raising HTTP errors#
Instead of using the abort
function, raise an HTTPException
:
from flask import Flask, abort
app = Flask(__name__)
@app.get("/")
def index():
abort(400, "this did not work")
from litestar import Litestar, get
from litestar.exceptions import HTTPException
@get("/")
def index() -> None:
raise HTTPException(status_code=400, detail="this did not work")
app = Litestar([index])
See also
To learn more about exceptions, check out this chapter in the documentation:
Setting status codes#
from flask import Flask
app = Flask(__name__)
@app.get("/")
def index():
return "not found", 404
from litestar import Litestar, get, Response
@get("/static", status_code=404)
def static_status() -> str:
return "not found"
@get("/dynamic")
def dynamic_status() -> Response[str]:
return Response("not found", status_code=404)
app = Litestar([static_status, dynamic_status])
Serialization#
Flask uses a mix of explicit conversion (such as jsonify
) and inference (i.e. the type
of the returned data) to determine how data should be serialized. Litestar instead assumes
the data returned is intended to be serialized into JSON and will do so unless told otherwise.
from flask import Flask, Response
app = Flask(__name__)
@app.get("/json")
def get_json():
return {"hello": "world"}
@app.get("/text")
def get_text():
return "hello, world!"
@app.get("/html")
def get_html():
return Response("<strong>hello, world</strong>", mimetype="text/html")
from litestar import Litestar, get, MediaType
@get("/json")
def get_json() -> dict[str, str]:
return {"hello": "world"}
@get("/text", media_type=MediaType.TEXT)
def get_text() -> str:
return "hello, world"
@get("/html", media_type=MediaType.HTML)
def get_html() -> str:
return "<strong>hello, world</strong>"
app = Litestar([get_json, get_text, get_html])
Error handling#
from flask import Flask
from werkzeug.exceptions import HTTPException
app = Flask(__name__)
@app.errorhandler(HTTPException)
def handle_exception(e): ...
from litestar import Litestar, Request, Response
from litestar.exceptions import HTTPException
def handle_exception(request: Request, exception: Exception) -> Response: ...
app = Litestar([], exception_handlers={HTTPException: handle_exception})
See also
To learn more about exception handling, check out this chapter in the documentation: