About 12,700 results
Open links in new tab
  1. python - Architecture Flask vs FastAPI - Stack Overflow

    Jul 19, 2020 · I have been tinkering around Flask and FastAPI to see how it acts as a server. One of the main things that I would like to know is how Flask and FastAPI deal with multiple …

  2. Benchmarks of FastAPI vs async Flask? - Stack Overflow

    May 21, 2023 · According to a benchmark study by Miguel Grinberg, FastAPI can be faster or slower than async Flask, depending on the web server and the Flask async type. Generally …

  3. python - FastAPI performs worse than Flask - Stack Overflow

    Jun 29, 2022 · Previously I used Flask in combination with Gunicorn to develop and deploy APIs In Redhat OpenShift. Multiple sources claim that FastAPI is faster, so I thought I will make two …

  4. What is the difference between Uvicorn and Gunicorn+Uvicorn?

    Feb 25, 2021 · What is the difference between deploying FastAPI apps dockerized using Uvicorn and Tiangolo's Gunicorn+Uvicorn? And why do my results show that I get a better result when …

  5. Java's Spring Boot vs Python's FastAPI: Threads

    Jun 14, 2024 · He was advocating for Python's FastAPI, because horizontally it scales better than Spring boot. One of the reasons he mentioned is that FastAPI is single-threaded. When the …

  6. Session object in FastAPI similar to Flask - Stack Overflow

    Jan 7, 2022 · I am trying to use session to pass variables across view functions in fastapi. However, I do not find any doc which specifically says of about session object. Everywhere I …

  7. FastAPI UploadFile is slow compared to Flask - Stack Overflow

    FastAPI UploadFile is slow compared to Flask Asked 4 years, 10 months ago Modified 4 months ago Viewed 18k times

  8. Serving React app from FastAPI: advantages vs disadvantages

    Jun 3, 2022 · 1 I’m gradually moving away from Flask/Dash for development of my Data Science and Machine Learning apps, and towards a combination of FastAPI + React due to many …

  9. How to assign a function to a route functionally, without a route ...

    Apr 25, 2022 · How to assign a function to a route functionally, without a route decorator in FastAPI? Asked 3 years, 6 months ago Modified 2 years, 8 months ago Viewed 6k times

  10. python - migrating flask web application currently using uWSGI …

    Feb 18, 2020 · FastAPI is based on Starlette, which uses the newer standard for asynchronous web frameworks: ASGI. Starlette would be more comparable to Flask, in being a pure “micro …