Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for isSame (0.15 sec)

  1. docs/en/docs/tutorial/metadata.md

    It takes a list containing one dictionary for each tag.
    
    Each dictionary can contain:
    
    * `name` (**required**): a `str` with the same tag name you use in the `tags` parameter in your *path operations* and `APIRouter`s.
    * `description`: a `str` with a short description for the tag. It can have Markdown and will be shown in the docs UI.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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/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)
  6. docs/en/docs/advanced/openapi-callbacks.md

    The process that happens when your API app calls the *external API* is named a "callback". Because the software that the external developer wrote sends a request to your API and then your API *calls back*, sending a request to an *external API* (that was probably created by the same developer).
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  7. docs/en/docs/features.md

    This also means that in many cases you can pass the same object you get from a request **directly to the database**, as everything is validated automatically.
    
    The same applies the other way around, in many cases you can just pass the object you get from the database **directly to the client**.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/request-files.md

        ```Python hl_lines="7  13"
        {!> ../../../docs_src/request_files/tutorial001_03.py!}
        ```
    
    ## Multiple File Uploads
    
    It's possible to upload several files at the same time.
    
    They would be associated to the same "form field" sent using "form data".
    
    To use that, declare a list of `bytes` or `UploadFile`:
    
    === "Python 3.9+"
    
        ```Python hl_lines="10  15"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/websockets.md

    <img src="/img/tutorial/websockets/image04.png">
    
    And all of them will use the same WebSocket connection.
    
    ## Using `Depends` and others
    
    In WebSocket endpoints you can import from `fastapi` and use:
    
    * `Depends`
    * `Security`
    * `Cookie`
    * `Header`
    * `Path`
    * `Query`
    
    They work the same way as for other FastAPI endpoints/*path operations*:
    
    === "Python 3.10+"
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/query-params-str-validations.md

    So:
    
    ```Python
    q: Union[str, None] = Query(default=None)
    ```
    
    ...makes the parameter optional, with a default value of `None`, the same as:
    
    ```Python
    q: Union[str, None] = None
    ```
    
    And in Python 3.10 and above:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 25.7K bytes
    - Viewed (0)
Back to top