Hacker News new | ask | show | jobs
by est 1653 days ago
FastAPI is a framework, the server underneath FastAPI would be uvicorn, which is also based on libuv
1 comments

Actually you can use any ASGI-compatible web server[1] with FastAPI, uvicorn is generally preferred though because it is apparently the fastest.

[1] https://asgi.readthedocs.io/en/latest/implementations.html