- Sort Score
- Num 10 results
- Language All
Results 211 - 220 of 290 for PIP (0.04 seconds)
-
docs/tr/docs/tutorial/security/oauth2-jwt.md
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 | Bilgi RSA veya ECDSA gibi dijital imza algoritmaları kullanmayı planlıyorsanız, `pyjwt[crypto]` bağımlılığı olan `cryptography` kütüphanesini kurmalısınız.
Created: 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/zh/docs/advanced/templates.md
在 Starlette 的支持下,**FastAPI** 应用可以直接使用工具轻易地配置 Jinja2。 ## 安装依赖项 { #install-dependencies } 确保你创建一个[虚拟环境](../virtual-environments.md),激活它,并安装 `jinja2`: <div class="termy"> ```console $ pip install jinja2 ---> 100% ``` </div> ## 使用 `Jinja2Templates` { #using-jinja2templates } * 导入 `Jinja2Templates` * 创建可复用的 `templates` 对象 * 在返回模板的*路径操作*中声明 `Request` 参数Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 3K bytes - Click Count (0) -
docs/de/docs/tutorial/request-forms.md
Erstellen Sie unbedingt eine [virtuelle Umgebung](../virtual-environments.md), aktivieren Sie diese und installieren Sie dann das Paket, zum Beispiel: ```console $ pip install python-multipart ``` /// ## `Form` importieren { #import-form } Importieren Sie `Form` von `fastapi`: {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *}
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 3.1K bytes - Click Count (0) -
docs/ja/docs/tutorial/request-form-models.md
/// 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 14:07:17 GMT 2026 - 2.7K bytes - Click Count (0) -
.bazelrc
common:windows --copt=-D_ENABLE_EXTENDED_ALIGNED_STORAGE common:windows --host_copt=-D_ENABLE_EXTENDED_ALIGNED_STORAGE # Enable the runfiles symlink tree on Windows. This makes it possible to build # the pip package on Windows without an intermediate data-file archive, as the # build_pip_package script in its current form (as of Aug 2023) uses the # runfiles symlink tree to decide what to put into the Python wheel.
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Mar 28 04:33:01 GMT 2026 - 58.9K bytes - Click Count (0) -
docs/de/docs/tutorial/security/oauth2-jwt.md
Stellen Sie sicher, dass Sie eine [virtuelle Umgebung](../../virtual-environments.md) erstellen, sie aktivieren und dann `pyjwt` installieren: <div class="termy"> ```console $ pip install pyjwt ---> 100% ``` </div> /// info | Info Wenn Sie planen, digitale Signaturalgorithmen wie RSA oder ECDSA zu verwenden, sollten Sie die Kryptografie-Abhängigkeit `pyjwt[crypto]` installieren.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 12.9K bytes - Click Count (0) -
docs/es/docs/tutorial/security/oauth2-jwt.md
Necesitamos instalar `PyJWT` para generar y verificar los tokens JWT en Python. Asegúrate de crear un [entorno virtual](../../virtual-environments.md), activarlo y luego instalar `pyjwt`: <div class="termy"> ```console $ pip install pyjwt ---> 100% ``` </div> /// info | Información Si planeas usar algoritmos de firma digital como RSA o ECDSA, deberías instalar la dependencia del paquete de criptografía `pyjwt[crypto]`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 11.5K bytes - Click Count (0) -
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 } * Importa `Jinja2Templates`. * Crea un objeto `templates` que puedas reutilizar más tarde.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) -
docs/ja/docs/tutorial/testing.md
/// info `TestClient` を使用するには、まず [`httpx`](https://www.python-httpx.org) をインストールします。 [仮想環境](../virtual-environments.md) を作成し、それを有効化してから、例えば以下のようにインストールしてください: ```console $ pip install httpx ``` /// `TestClient` をインポートします。 `TestClient` を作成し、**FastAPI** に渡します。 `test_` から始まる名前の関数を作成します (これは `pytest` の標準的なコンベンションです)。 `httpx` と同じ様に `TestClient` オブジェクトを使用します。
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) -
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 } - Importez `Jinja2Templates`. - Créez un objet `templates` que vous pourrez réutiliser par la suite.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)