Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 103 for isSame (0.15 sec)

  1. docs/en/docs/release-notes.md

    * Add note to docs: [Include the same router multiple times with different `prefix`](https://fastapi.tiangolo.com/tutorial/bigger-applications/#include-the-same-router-multiple-times-with-different-prefix). PR [#348](https://github.com/tiangolo/fastapi/pull/348).
    
    * Fix OpenAPI/JSON Schema generation for two functions with the same name (in different modules) with the same composite bodies.
    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)
  2. docs/em/docs/tutorial/sql-databases.md

    #### ๐Ÿ—’
    
    โŒ:
    
    ```Python
    connect_args={"check_same_thread": False}
    ```
    
    ...๐Ÿ’ช ๐Ÿ•ด `SQLite`. โšซ๏ธ ๐Ÿšซ ๐Ÿ’ช ๐ŸŽ ๐Ÿ’ฝ.
    
    !!! info "๐Ÿ“ก โ„น"
    
        ๐Ÿ”ข ๐Ÿ—„ ๐Ÿ”œ ๐Ÿ•ด โœ” 1๏ธโƒฃ ๐Ÿงต ๐Ÿ”— โฎ๏ธ โšซ๏ธ, ๐Ÿค” ๐Ÿ‘ˆ ๐Ÿ”  ๐Ÿงต ๐Ÿ”œ ๐Ÿต ๐Ÿ”ฌ ๐Ÿ“จ.
    
        ๐Ÿ‘‰ โŽ ๐Ÿ˜ซ ๐Ÿค ๐ŸŽ ๐Ÿ”— ๐ŸŽ ๐Ÿ‘œ (๐ŸŽ ๐Ÿ“จ).
    
        โœ‹๏ธ FastAPI, โš™๏ธ ๐Ÿ˜ ๐Ÿ”ข (`def`) ๐ŸŒ… ๐ŸŒ˜ 1๏ธโƒฃ ๐Ÿงต ๐Ÿ’ช ๐Ÿ”— โฎ๏ธ ๐Ÿ’ฝ ๐ŸŽ ๐Ÿ“จ, ๐Ÿ‘ฅ ๐Ÿ’ช โš’ ๐Ÿ—„ ๐Ÿ’ญ ๐Ÿ‘ˆ โšซ๏ธ ๐Ÿ”œ โœ” ๐Ÿ‘ˆ โฎ๏ธ `connect_args={"check_same_thread": False}`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 25.2K bytes
    - Viewed (1)
  3. docs/de/docs/newsletter.md

    # FastAPI und Freunde Newsletter
    
    <iframe data-w-type="embedded" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://xr4n4.mjt.lu/wgt/xr4n4/hj5/form?c=40a44fa4" width="100%" style="height: 0;"></iframe>
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Feb 18 12:18:33 GMT 2024
    - 322 bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/dependencies/index.md

    This will be especially useful when you use it in a **large code base** where you use **the same dependencies** over and over again in **many *path operations***.
    
    ## To `async` or not to `async`
    
    As dependencies will also be called by **FastAPI** (the same as your *path operation functions*), the same rules apply while defining your functions.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  5. docs/en/overrides/main.html

          </a>
        </div>
        <div class="item">
    HTML
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Mar 25 23:10:11 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    query_or_cookie_extractor(["query_or_cookie_extractor"])
    
    read_query["/items/"]
    
    query_extractor --> query_or_cookie_extractor --> read_query
    ```
    
    ## Using the same dependency multiple times
    
    If one of your dependencies is declared multiple times for the same *path operation*, for example, multiple dependencies have a common sub-dependency, **FastAPI** will know to call that sub-dependency only once per request.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Oct 17 05:59:11 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/query-params.md

    http://127.0.0.1:8000/items/
    ```
    
    would be the same as going to:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    But if you go to, for example:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    The parameter values in your function will be:
    
    * `skip=20`: because you set it in the URL
    * `limit=10`: because that was the default value
    
    ## Optional parameters
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Oct 20 09:08:42 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

        !!! tip
            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="17"
        {!> ../../../docs_src/dependencies/tutorial006.py!}
        ```
    
    These dependencies will be executed/solved the same way as normal dependencies. But their value (if they return any) won't be passed to your *path operation function*.
    
    !!! tip
        Some editors check for unused function parameters, and show them as errors.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Oct 17 05:59:11 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/response-status-code.md

    {!../../../docs_src/response_status_code/tutorial002.py!}
    ```
    
    They are just a convenience, they hold the same number, but that way you can use the editor's autocomplete to find them:
    
    <img src="/img/tutorial/response-status-code/image02.png">
    
    !!! note "Technical Details"
        You could also use `from starlette import status`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Aug 29 14:02:58 GMT 2020
    - 4K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/openapi-webhooks.md

    ```Python hl_lines="9-13  36-53"
    {!../../../docs_src/openapi_webhooks/tutorial001.py!}
    ```
    
    The webhooks that you define will end up in the **OpenAPI** schema and the automatic **docs UI**.
    
    !!! info
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 2.8K bytes
    - Viewed (0)
Back to top