Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for geturl (0.16 sec)

  1. tests/test_include_router_defaults_overrides.py

        callbacks=callback_router1.routes,
        dependencies=[Depends(dep1)],
        response_class=ResponseLevel1,
    )
    async def path1_override(level1: str):
        return level1
    
    
    @app.get("/default1")
    async def path1_default(level1: str):
        return level1
    
    
    @router2_override.get(
        "/override3",
        tags=["path3a", "path3b"],
        responses={
            403: {"description": "Client error level 3"},
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Jun 30 18:25:16 GMT 2023
    - 358.6K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    * 📝 Add External Link: FastAPI lambda container: serverless simplified. PR [#5784](https://github.com/tiangolo/fastapi/pull/5784) by [@rafrasenberg](https://github.com/rafrasenberg).
    
    ### Translations
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
Back to top