- Sort Score
- Num 10 results
- Language All
Results 171 - 180 of 786 for Environments (0.09 seconds)
-
docs/ja/docs/tutorial/request-forms-and-files.md
`File`と`Form`を同時に使うことでファイルとフォームフィールドを定義することができます。 /// info | 情報 アップロードされたファイルやフォームデータを受信するには、まず[`python-multipart`](https://github.com/Kludex/python-multipart)をインストールします。 [仮想環境](../virtual-environments.md)を作成し、それを有効化してから、例えば次のようにインストールしてください: ```console $ pip install python-multipart ``` /// ## `File`と`Form`のインポート { #import-file-and-form }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 1.9K bytes - Click Count (0) -
docs/pt/docs/tutorial/request-form-models.md
/// info | Informação Para utilizar formulários, instale primeiramente o [`python-multipart`](https://github.com/Kludex/python-multipart). Certifique-se de criar um [ambiente virtual](../virtual-environments.md), ativá-lo, e então instalar. Por exemplo: ```console $ pip install python-multipart ``` /// /// note | Nota Isto é suportado desde a versão `0.113.0` do FastAPI. 🤓 ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 2.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/MapsTest.java
* * <p>As of jdk7u40, HashMap has an empty-map optimization. The argument to new HashMap(int) is * noted, but the initial table is a zero-length array. * * <p>This test may fail miserably on non-OpenJDK environments... */ @J2ktIncompatible @GwtIncompatible // reflection @AndroidIncompatible // relies on assumptions about OpenJDK public void testNewHashMapWithExpectedSize_wontGrow() throws Exception {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 63.2K bytes - Click Count (0) -
docs/es/docs/tutorial/request-forms.md
/// info | Información Para usar formularios, primero instala [`python-multipart`](https://github.com/Kludex/python-multipart). Asegúrate de crear un [entorno virtual](../virtual-environments.md), activarlo, y luego instalarlo, por ejemplo: ```console $ pip install python-multipart ``` /// ## Importar `Form` { #import-form } Importar `Form` desde `fastapi`:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 2.9K bytes - Click Count (0) -
docs/uk/docs/advanced/templates.md
## Встановіть залежності { #install-dependencies } Переконайтеся, що ви створили [віртуальне оточення](../virtual-environments.md), активували його та встановили `jinja2`: <div class="termy"> ```console $ pip install jinja2 ---> 100% ``` </div> ## Використання `Jinja2Templates` { #using-jinja2templates }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 4.9K bytes - Click Count (0) -
docs/tr/docs/tutorial/security/oauth2-jwt.md
## `PyJWT` Kurulumu { #install-pyjwt } Python'da JWT token'larını üretmek ve doğrulamak için `PyJWT` kurmamız gerekiyor. Bir [sanal ortam](../../virtual-environments.md) oluşturduğunuzdan emin olun, aktif edin ve ardından `pyjwt` kurun: <div class="termy"> ```console $ pip install pyjwt ---> 100% ``` </div> /// info | BilgiCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 12.1K bytes - Click Count (0) -
docs/ko/docs/tutorial/testing.md
## `TestClient` 사용하기 { #using-testclient } /// info | 정보 `TestClient` 사용하려면, 우선 [`httpx`](https://www.python-httpx.org)를 설치해야 합니다. [가상 환경](../virtual-environments.md)을 만들고, 활성화한 뒤 설치하세요. 예시: ```console $ pip install httpx ``` /// `TestClient`를 임포트하세요. **FastAPI** 애플리케이션을 전달하여 `TestClient`를 만드세요. 이름이 `test_`로 시작하는 함수를 만드세요(`pytest`의 표준적인 관례입니다).Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 6.8K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/request-form-models.md
# 表單模型 { #form-models } 你可以使用 **Pydantic 模型** 在 FastAPI 中宣告 **表單欄位**。 /// 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:05:38 GMT 2026 - 2K bytes - Click Count (0) -
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) -
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)