Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 644 for Environments (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/zh/docs/tutorial/request-forms.md

    # 表单数据 { #form-data }
    
    当你需要接收表单字段而不是 JSON 时,可以使用 `Form`。
    
    /// info
    
    要使用表单,首先安装 [`python-multipart`](https://github.com/Kludex/python-multipart)。
    
    请先创建并激活一个[虚拟环境](../virtual-environments.md),然后再进行安装,例如:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## 导入 `Form` { #import-form }
    
    从 `fastapi` 导入 `Form`:
    
    {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  2. scripts/general-llm-prompt.md

    Example:
    
    Source (English):
    
    ```
    Create a [virtual environment](../virtual-environments.md){.internal-link target=_blank}
    ```
    
    Wrong translation in German - Anchor added to the URL.
    
    ```
    Erstelle eine [virtuelle Umgebung](../virtual-environments.md#create-a-virtual-environment){.internal-link target=_blank}
    ```
    
    Good translation (German) - URL stays like in the English source.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Mar 18 10:55:36 GMT 2026
    - 14.6K bytes
    - Click Count (0)
  3. docs/pt/docs/tutorial/request-forms.md

    /// info | Informação
    
    Para usar formulários, primeiro instale [`python-multipart`](https://github.com/Kludex/python-multipart).
    
    Certifique-se de criar um [ambiente virtual](../virtual-environments.md), ativá-lo e então instalá-lo, por exemplo:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## Importe `Form` { #import-form }
    
    Importe `Form` de `fastapi`:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  4. docs/fr/docs/tutorial/request-forms.md

    /// info
    
    Pour utiliser les formulaires, installez d'abord [`python-multipart`](https://github.com/Kludex/python-multipart).
    
    Assurez-vous de créer un [environnement virtuel](../virtual-environments.md), de l'activer, puis installez-le, par exemple :
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## Importer `Form` { #import-form }
    
    Importez `Form` depuis `fastapi` :
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  5. docs/zh/docs/tutorial/request-form-models.md

    # 表单模型 { #form-models }
    
    你可以在 FastAPI 中使用 **Pydantic 模型**声明**表单字段**。
    
    /// info | 信息
    
    要使用表单,首先安装 [`python-multipart`](https://github.com/Kludex/python-multipart)。
    
    确保你创建一个[虚拟环境](../virtual-environments.md),激活它,然后再安装,例如:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    /// note | 注意
    
    自 FastAPI 版本 `0.113.0` 起支持此功能。🤓
    
    ///
    
    ## 表单的 Pydantic 模型 { #pydantic-models-for-forms }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  6. docs/es/docs/advanced/templates.md

    ## Instala dependencias { #install-dependencies }
    
    Asegúrate de crear un [entorno virtual](../virtual-environments.md), activarlo e instalar `jinja2`:
    
    <div class="termy">
    
    ```console
    $ pip install jinja2
    
    ---> 100%
    ```
    
    </div>
    
    ## Usando `Jinja2Templates` { #using-jinja2templates }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  7. docs/zh-hant/docs/tutorial/request-forms.md

    # 表單資料 { #form-data }
    
    當你需要接收表單欄位而不是 JSON 時,可以使用 `Form`。
    
    /// info
    
    要使用表單,請先安裝 [`python-multipart`](https://github.com/Kludex/python-multipart)。
    
    請先建立並啟用一個[虛擬環境](../virtual-environments.md),然後再安裝,例如:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## 匯入 `Form` { #import-form }
    
    從 `fastapi` 匯入 `Form`:
    
    {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  8. docs/ja/docs/tutorial/testing.md

    これを使用すると、**FastAPI** と共に [pytest](https://docs.pytest.org/) を直接利用できます。
    
    ## `TestClient` を使用 { #using-testclient }
    
    /// info
    
    `TestClient` を使用するには、まず [`httpx`](https://www.python-httpx.org) をインストールします。
    
    [仮想環境](../virtual-environments.md) を作成し、それを有効化してから、例えば以下のようにインストールしてください:
    
    ```console
    $ pip install httpx
    ```
    
    ///
    
    `TestClient` をインポートします。
    
    `TestClient` を作成し、**FastAPI** に渡します。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  9. docs/ko/docs/tutorial/request-forms.md

    # 폼 데이터 { #form-data }
    
    JSON 대신 폼 필드를 받아야 하는 경우 `Form`을 사용할 수 있습니다.
    
    /// info | 정보
    
    폼을 사용하려면, 먼저 [`python-multipart`](https://github.com/Kludex/python-multipart)를 설치하세요.
    
    [가상 환경](../virtual-environments.md)을 생성하고 활성화한 다음, 예를 들어 다음과 같이 설치하세요:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## `Form` 임포트하기 { #import-form }
    
    `fastapi`에서 `Form`을 임포트합니다:
    
    {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *}
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 3K bytes
    - Click Count (0)
  10. docs/fr/docs/advanced/templates.md

    ## Installer les dépendances { #install-dependencies }
    
    Vous devez créer un [environnement virtuel](../virtual-environments.md), l'activer, puis installer `jinja2` :
    
    <div class="termy">
    
    ```console
    $ pip install jinja2
    
    ---> 100%
    ```
    
    </div>
    
    ## Utiliser `Jinja2Templates` { #using-jinja2templates }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3.7K bytes
    - Click Count (0)
Back to Top