About 8,450,000 results
Open links in new tab
  1. python - How to create a FastAPI endpoint that can accept either File ...

    Dec 31, 2024 · 8 I would like to create an endpoint in FastAPI that might receive either multipart/form-data or JSON body. Is there a way I can make such an endpoint accept either, or detect which type …

  2. 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?

  3. 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. Thanks. The question …

  4. 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 others I define, to …

  5. 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 b'some fake …

  6. How to run FastAPI app on multiple ports? - Stack Overflow

    Oct 20, 2021 · I have a FastAPI application that I am running on port 30000 using Uvicorn programmatically. Now I want to run the same application on port 8443 too. The same application …

  7. FastAPI/uvicorn not working when specifying host [duplicate]

    The FastAPI/uvicorn server is not working when specifying the host.

  8. FastAPI python: How to run a thread in the background?

    Jan 27, 2022 · I'm making a server in python using FastAPI, and I want a function that is not related to my API, to run in the background every 5 minutes (like checking stuff from an API and printing stuff …

  9. FastAPI - Unable to render Swagger in production

    Feb 18, 2022 · I faced the same problem having a similar architecture: nginx proxying fastapi running on port 8000 through the /api path. I was able to solve the problem using the root_path parameter as …

  10. How to initialize a global object or variable and reuse it in every ...

    from fastapi import FastAPI, Request from contextlib import asynccontextmanager @asynccontextmanager async def lifespan(app: FastAPI): ''' Run at startup Initialize the Client and …