Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for AppType (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fastapi/applications.py

    from starlette.routing import BaseRoute
    from starlette.types import ASGIApp, ExceptionHandler, Lifespan, Receive, Scope, Send
    from typing_extensions import deprecated
    
    AppType = TypeVar("AppType", bound="FastAPI")
    
    
    class FastAPI(Starlette):
        """
        `FastAPI` app class, the main entrypoint to use FastAPI.
    
        Read more in the
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 176.3K bytes
    - Click Count (0)
Back to Top