About 400 results
Open links in new tab
  1. FastAPI

    " If anyone is looking to build a production Python API, I would highly recommend FastAPI. It is beautifully designed, simple to use and highly scalable, it has become a key component in our …

  2. Tutorial - User Guide - FastAPI

    FastAPI framework, high performance, easy to learn, fast to code, ready for production

  3. First Steps - FastAPI

    It streamlines the process of building, deploying, and accessing an API with minimal effort. It brings the same developer experience of building apps with FastAPI to deploying them to the …

  4. Learn - FastAPI

    FastAPI framework, high performance, easy to learn, fast to code, ready for production

  5. Features - FastAPI

    Just standard modern Python. If you need a 2 minute refresher of how to use Python types (even if you don't use FastAPI), check the short tutorial: Python Types.

  6. Python Types Intro - FastAPI

    In Python 3.6 and above (including Python 3.10) you can use the Union type from typing and put inside the square brackets the possible types to accept. In Python 3.10 there's also a new …

  7. Path Parameters - FastAPI

    Again, just with that same Python type declaration, FastAPI gives you automatic, interactive documentation (integrating Swagger UI). Notice that the path parameter is declared to be an …

  8. Run a Server Manually - FastAPI - tiangolo

    FastAPI framework, high performance, easy to learn, fast to code, ready for production

  9. Form Data - FastAPI

    FastAPI framework, high performance, easy to learn, fast to code, ready for production

  10. Request Body - FastAPI

    Your API almost always has to send a response body. But clients don't necessarily need to send request bodies all the time, sometimes they only request a path, maybe with some query …