About 10,900,000 results
Open links in new tab
  1. python - How can I install fastapi properly? - Stack Overflow

    Dec 26, 2021 · The OP is trying to install fastapi[all] which seems to require compiling from source. No, I don't agree with you, I just provided the viable solution and I use it all the time. …

  2. Python FastAPI base path control - Stack Overflow

    Dec 3, 2021 · When I use FastAPI , how can I sepcify a base path for the web-service? To put it another way - are there arguments to the FastAPI object that can set the end-point and any …

  3. How to tell FastAPI which host and port to bind to [duplicate]

    Aug 13, 2024 · Usually with FastAPI you'd use a WSGI server process like uvicorn or gunicorn, and those will generally have a --host and --port argument. gunicorn combines them into a -b …

  4. How to log raw HTTP request/response in FastAPI?

    Oct 22, 2021 · We are writing a web service using FastAPI that is going to be hosted in Kubernetes. For auditing purposes, we need to save the raw JSON body of the …

  5. How can I run the FastAPI server using Pycharm? - Stack Overflow

    Jul 12, 2020 · uvicorn main:app Since we are not calling any python file directly, it is not possible to call uvicorn command from Pycharm. So, How can I run the fast-api server using Pycharm?

  6. FastAPI StreamingResponse not streaming with generator function

    Mar 15, 2023 · from fastapi import FastAPI from fastapi.responses import StreamingResponse import asyncio app = FastAPI() async def fake_data_streamer(): for i in range(10): yield …

  7. A minimal fastapi example loading index.html - Stack Overflow

    Jan 27, 2021 · In my project folder I have a basic index.html file plus static files (js, css) as well as my main.py: from fastapi.staticfiles import StaticFiles from fastapi.templating import …

  8. What are the best practices for structuring a FastAPI project?

    Nov 21, 2020 · The problem that I want to solve related the project setup: Good names of directories so that their purpose is clear. Keeping all project files (including virtualenv) in one …

  9. FastAPI - adding route prefix to TestClient - Stack Overflow

    Sep 13, 2021 · I have a FastAPI app with a route prefix as /api/v1. When I run the test it throws 404. I see this is because the TestClient is not able to find the route at /ping, and works …

  10. python - How can I enable CORS in FastAPI? - Stack Overflow

    Jan 8, 2021 · I'm trying to enable CORS in this very basic FastAPI example, however it doesn't seem to be working. from fastapi import FastAPI from fastapi.middleware.cors import …