Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 225 for tutorial001_an (0.07 sec)

  1. docs/zh/docs/tutorial/body-multiple-params.md

    ```Python hl_lines="18-20"
    {!> ../../docs_src/body_multiple_params/tutorial001_an_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="19-21"
    {!> ../../docs_src/body_multiple_params/tutorial001_an.py!}
    ```
    
    ////
    
    //// tab | Python 3.10+ non-Annotated
    
    /// tip
    
    尽可能选择使用 `Annotated` 的版本。
    
    ///
    
    ```Python hl_lines="17-19"
    {!> ../../docs_src/body_multiple_params/tutorial001_py310.py!}
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. docs/zh/docs/tutorial/security/first-steps.md

    把下面的示例代码复制到 `main.py`:
    
    //// tab | Python 3.9+
    
    ```Python
    {!> ../../docs_src/security/tutorial001_an_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python
    {!> ../../docs_src/security/tutorial001_an.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+ non-Annotated
    
    /// tip
    
    尽可能选择使用 `Annotated` 的版本。
    
    ///
    
    ```Python
    {!> ../../docs_src/security/tutorial001.py!}
    ```
    
    ////
    
    ## 运行
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/query-params-str-validations.md

    In versions of Python below Python 3.9 you import `Annotated` from `typing_extensions`.
    
    It will already be installed with FastAPI.
    
    ```Python hl_lines="3-4"
    {!> ../../docs_src/query_params_str_validations/tutorial002_an.py!}
    ```
    
    ////
    
    /// info
    
    FastAPI added support for `Annotated` (and started recommending it) in version 0.95.0.
    
    If you have an older version, you would get errors when trying to use `Annotated`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. docs/ru/docs/tutorial/query-params-str-validations.md

    В версиях Python ниже Python 3.9 `Annotation` импортируется из `typing_extensions`.
    
    Эта библиотека будет установлена вместе с FastAPI.
    
    ```Python hl_lines="3-4"
    {!> ../../docs_src/query_params_str_validations/tutorial002_an.py!}
    ```
    
    ////
    
    ## `Annotated` как тип для query-параметра `q`
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/query-params-str-validations.md

    In Versionen unter Python 3.9 importieren Sie `Annotated` von `typing_extensions`.
    
    Es wird bereits mit FastAPI installiert sein.
    
    ```Python hl_lines="3-4"
    {!> ../../docs_src/query_params_str_validations/tutorial002_an.py!}
    ```
    
    ////
    
    /// info
    
    FastAPI unterstützt (und empfiehlt die Verwendung von) `Annotated` seit Version 0.95.0.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. pyproject.toml

    "docs_src/custom_request_and_route/tutorial002.py" = ["B904"]
    "docs_src/dependencies/tutorial008_an.py" = ["F821"]
    "docs_src/dependencies/tutorial008_an_py39.py" = ["F821"]
    "docs_src/query_params_str_validations/tutorial012_an.py" = ["B006"]
    "docs_src/query_params_str_validations/tutorial012_an_py39.py" = ["B006"]
    "docs_src/query_params_str_validations/tutorial013_an.py" = ["B006"]
    "docs_src/query_params_str_validations/tutorial013_an_py39.py" = ["B006"]
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 22 14:19:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. docs_src/query_params_str_validations/tutorial004_an.py

    Sebastián Ramírez <******@****.***> 1698179166 +0400
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 24 20:26:06 UTC 2023
    - 410 bytes
    - Viewed (0)
  8. docs_src/query_params_str_validations/tutorial009_an.py

    Sebastián Ramírez <******@****.***> 1679142599 +0100
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 356 bytes
    - Viewed (0)
  9. docs_src/query_params_str_validations/tutorial010_an.py

    Sebastián Ramírez <******@****.***> 1698179166 +0400
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 24 20:26:06 UTC 2023
    - 664 bytes
    - Viewed (0)
  10. docs_src/request_files/tutorial002_an.py

    Sebastián Ramírez <******@****.***> 1679142599 +0100
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 861 bytes
    - Viewed (0)
Back to top