Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for endroits (0.04 sec)

  1. scripts/translate.py

        Result:
    
            <abbr title="{translation of description}">{translation of text}</abbr>
    
    Examples:
    
        Source (English):
    
            «««
            <abbr title="also known as: endpoints, routes">path</abbr>
            <abbr title="a program that checks for code errors">linter</abbr>
            <abbr title="converting the string that comes from an HTTP request into Python data">parsing</abbr>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
  2. fastapi/routing.py

        func: Callable[[WebSocket], Awaitable[None]],
    ) -> ASGIApp:
        """
        Takes a coroutine `func(session)`, and returns an ASGI application.
        """
        # assert asyncio.iscoroutinefunction(func), "WebSocket endpoints must be async"
    
        async def app(scope: Scope, receive: Receive, send: Send) -> None:
            session = WebSocket(scope, receive=receive, send=send)
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 174.6K bytes
    - Viewed (0)
Back to top