About 50 results
Open links in new tab
  1. FastAPI

    FastAPI is a modern, fast (high-performance), web framework for building APIs with Python based on standard Python type hints. The key features are: Fast: Very high performance, on par with NodeJS …

  2. Configure Swagger UI - FastAPI - tiangolo

    FastAPI Learn How To - Recipes Configure Swagger UI You can configure some extra Swagger UI parameters. To configure them, pass the swagger_ui_parameters argument when creating the …

  3. OpenAPI docs - FastAPI

    FastAPI Reference OpenAPI OpenAPI docs Utilities to handle OpenAPI automatic UI documentation, including Swagger UI (by default at /docs) and ReDoc (by default at /redoc).

  4. FastAPI Cloud - 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 cloud. 🎉 It will also …

  5. Features - FastAPI

    Features FastAPI features FastAPI gives you the following: Based on open standards OpenAPI for API creation, including declarations of path operations, parameters, request bodies, security, etc. …

  6. Simple OAuth2 with Password and Bearer - FastAPI - tiangolo

    FastAPI Learn Tutorial - User Guide Security Simple OAuth2 with Password and Bearer Now let's build from the previous chapter and add the missing parts to have a complete security flow. Get the …

  7. FastAPI People - FastAPI

    FastAPI receives a lot of support from the community. And I want to highlight their contributions. These are the people that: Help others with questions in GitHub. Create Pull Requests. Review Pull …

  8. Metadata and Docs URLs - FastAPI - tiangolo

    FastAPI Learn Tutorial - User Guide Metadata and Docs URLs You can customize several metadata configurations in your FastAPI application. Metadata for API You can set the following fields that are …

  9. Reference - FastAPI

    Here's the reference or code API, the classes, functions, parameters, attributes, and all the FastAPI parts you can use in your applications. If you want to learn FastAPI you are much better off reading …

  10. Templates - FastAPI

    Using Jinja2Templates Import Jinja2Templates. Create a templates object that you can reuse later. Declare a Request parameter in the path operation that will return a template. Use the templates you …