- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 645 for Pythons (0.16 sec)
-
docs/zh/docs/tutorial/first-steps.md
你还可以使用它自动生成与你的 API 进行通信的客户端代码。例如 web 前端,移动端或物联网嵌入程序。 ## 分步概括 ### 步骤 1:导入 `FastAPI` {* ../../docs_src/first_steps/tutorial001.py hl[1] *} `FastAPI` 是一个为你的 API 提供了所有功能的 Python 类。 /// note | 技术细节 `FastAPI` 是直接从 `Starlette` 继承的类。 你可以通过 `FastAPI` 使用所有的 <a href="https://www.starlette.dev/" class="external-link" target="_blank">Starlette</a> 的功能。 ///Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Oct 11 17:48:49 UTC 2025 - 10.5K bytes - Viewed (0) -
docs/zh/docs/tutorial/body-multiple-params.md
}, "importance": 5 } ``` 同样的,它将转换数据类型,校验,生成文档等。 ## 多个请求体参数和查询参数 当然,除了请求体参数外,你还可以在任何需要的时候声明额外的查询参数。 由于默认情况下单一值被解释为查询参数,因此你不必显式地添加 `Query`,你可以仅执行以下操作: ```Python q: str = None ``` 比如: {* ../../docs_src/body_multiple_params/tutorial004_an_py310.py hl[27] *} /// info `Body` 同样具有与 `Query`、`Path` 以及其他后面将看到的类完全相同的额外校验和元数据参数。 ///Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.7K bytes - Viewed (0) -
docs/ru/docs/advanced/path-operation-advanced-configuration.md
/// /// warning | Предупреждение Если вы делаете это, убедитесь, что каждая из ваших *функций-обработчиков пути* имеет уникальное имя. Даже если они находятся в разных модулях (файлах Python). /// ## Исключить из OpenAPI { #exclude-from-openapi }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 11.5K bytes - Viewed (0) -
docs/en/docs/advanced/path-operation-advanced-configuration.md
/// /// warning If you do this, you have to make sure each one of your *path operation functions* has a unique name. Even if they are in different modules (Python files). /// ## Exclude from OpenAPI { #exclude-from-openapi }
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 7.2K bytes - Viewed (0) -
docs/pt/docs/deployment/concepts.md
### O que é um Programa { #what-is-a-program } A palavra **programa** é comumente usada para descrever muitas coisas: * O **código** que você escreve, os **arquivos Python**. * O **arquivo** que pode ser **executado** pelo sistema operacional, por exemplo: `python`, `python.exe` ou `uvicorn`. * Um programa específico enquanto está **em execução** no sistema operacional, usando a CPU e armazenando coisas na memória. Isso também é chamado de **processo**.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Nov 12 16:23:57 UTC 2025 - 20.5K bytes - Viewed (0) -
docs/zh-hant/llm-prompt.md
### Preferred translations / glossary 1. Should avoid using simplified Chinese characters and terms. Always examine if the translation can be easily comprehended by the Traditional Chinese readers. 2. For some Python-specific terms like "pickle", "list", "dict" etc, we don't have to translate them. 3. Use the following preferred translations when they apply in documentation prose: - request (HTTP): 請求 - response (HTTP): 回應
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 18:49:46 UTC 2025 - 2.2K bytes - Viewed (0) -
docs/zh/docs/advanced/path-operation-advanced-configuration.md
/// tip 如果你手动调用 `app.openapi()`,你应该在此之前更新 `operationId`。 /// /// warning 如果你这样做,务必确保你的每个 *路径操作函数* 的名字唯一。 即使它们在不同的模块中(Python 文件)。 /// ## 从 OpenAPI 中排除 使用参数 `include_in_schema` 并将其设置为 `False` ,来从生成的 OpenAPI 方案中排除一个 *路径操作*(这样一来,就从自动化文档系统中排除掉了)。 {* ../../docs_src/path_operation_advanced_configuration/tutorial003.py hl[6] *}
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/lambda/README.md
## Example Lambda handler Install the necessary dependencies. ```sh pip install flask requests ``` Following is an example lambda handler. ```py
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.7K bytes - Viewed (0) -
docs/de/docs/benchmarks.md
Aber bei der Betrachtung von Benchmarks und Vergleichen sollten Sie Folgendes beachten.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Sep 20 15:10:09 UTC 2025 - 4K bytes - Viewed (0) -
docs/ru/docs/advanced/testing-dependencies.md
FastAPI всё равно сможет её переопределить. /// Затем вы можете сбросить переопределения (удалить их), установив `app.dependency_overrides` в пустой `dict`: ```Python app.dependency_overrides = {} ``` /// tip | СоветRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 30 11:37:11 UTC 2025 - 4.3K bytes - Viewed (0)