- Sort Score
- Num 10 results
- Language All
Results 1551 - 1560 of 2,275 for inf1 (0.08 seconds)
-
docs/ko/docs/alternatives.md
Webargs는 Flask를 포함한 여러 framework 위에서 이를 제공하기 위해 만들어진 도구입니다. 내부적으로 Marshmallow를 사용해 데이터 검증을 수행합니다. 그리고 같은 개발자들이 만들었습니다. 아주 훌륭한 도구이며, 저도 **FastAPI**를 만들기 전에 많이 사용했습니다. /// info | 정보 Webargs는 Marshmallow와 같은 개발자들이 만들었습니다. /// /// check | **FastAPI**에 영감을 준 것 들어오는 요청 데이터의 자동 검증을 갖기. /// ### [APISpec](https://apispec.readthedocs.io/en/stable/) { #apispec }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 26.3K bytes - Click Count (0) -
docs/es/docs/tutorial/server-sent-events.md
Esto es similar a [Stream JSON Lines](stream-json-lines.md), pero usa el formato `text/event-stream`, que los navegadores soportan de forma nativa con la [`EventSource` API](https://developer.mozilla.org/en-US/docs/Web/API/EventSource). /// info | Información Añadido en FastAPI 0.135.0. /// ## ¿Qué son los Server-Sent Events? { #what-are-server-sent-events } SSE es un estándar para hacer streaming de datos desde el servidor al cliente sobre HTTP.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:12:26 GMT 2026 - 5K bytes - Click Count (0) -
docs/fr/docs/advanced/response-directly.md
/// ## Renvoyer une `Response` { #return-a-response } Vous pouvez renvoyer une `Response` ou n'importe laquelle de ses sous-classes. /// info `JSONResponse` est elle-même une sous-classe de `Response`. /// Et lorsque vous renvoyez une `Response`, **FastAPI** la transmet directement.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 4.8K bytes - Click Count (0) -
docs/es/docs/how-to/separate-openapi-schemas.md
En ese caso, puedes desactivar esta funcionalidad en **FastAPI**, con el parámetro `separate_input_output_schemas=False`. /// info | Información El soporte para `separate_input_output_schemas` fue agregado en FastAPI `0.102.0`. 🤓 /// {* ../../docs_src/separate_openapi_schemas/tutorial002_py310.py hl[10] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:41:41 GMT 2026 - 4.7K bytes - Click Count (0) -
docs/es/docs/tutorial/body-multiple-params.md
```Python q: str | None = None ``` Por ejemplo: {* ../../docs_src/body_multiple_params/tutorial004_an_py310.py hl[28] *} /// info | Información `Body` también tiene todos los mismos parámetros de validación y metadatos extras que `Query`, `Path` y otros que verás luego. ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:41:41 GMT 2026 - 5.1K bytes - Click Count (0) -
docs/en/docs/tutorial/server-sent-events.md
This is similar to [Stream JSON Lines](stream-json-lines.md), but uses the `text/event-stream` format, which is supported natively by browsers with the [`EventSource` API](https://developer.mozilla.org/en-US/docs/Web/API/EventSource). /// info Added in FastAPI 0.135.0. /// ## What are Server-Sent Events? { #what-are-server-sent-events } SSE is a standard for streaming data from the server to the client over HTTP.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 4.6K bytes - Click Count (0) -
docs/ja/docs/tutorial/debugging.md
# その他のコード ``` その場合、`myapp.py` 内の自動的に作成された変数 `__name__` は、値として `"__main__"` を持ちません。 したがって、以下の行: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` は実行されません。 /// info | 情報 より詳しい情報は、[公式Pythonドキュメント](https://docs.python.org/3/library/__main__.html)を参照してください。 /// ## デバッガーでコードを実行 { #run-your-code-with-your-debugger }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 3.1K bytes - Click Count (0) -
docs/pt/docs/how-to/separate-openapi-schemas.md
Nesse caso, você pode desativar esse recurso no **FastAPI**, com o parâmetro `separate_input_output_schemas=False`. /// info | Informação O suporte para `separate_input_output_schemas` foi adicionado no FastAPI `0.102.0`. 🤓 /// {* ../../docs_src/separate_openapi_schemas/tutorial002_py310.py hl[10] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Jan 20 20:40:17 GMT 2026 - 4.8K bytes - Click Count (0) -
docs/uk/docs/tutorial/cors.md
Будь-які запити із заголовком `Origin`. У цьому випадку проміжне програмне забезпечення пропустить запит як звичайний, але додасть відповідні CORS-заголовки у відповідь. ## Додаткова інформація { #more-info } Більше про <abbr title="Cross-Origin Resource Sharing - Обмін ресурсами між різними джерелами">CORS</abbr> можна дізнатися в [документації Mozilla про CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS).Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 8.3K bytes - Click Count (0) -
docs/zh/docs/tutorial/dependencies/sub-dependencies.md
* 同时,该函数还声明了类型是 `str` 的可选 cookie(`last_query`) * 用户未提供查询参数 `q` 时,则使用上次使用后保存在 cookie 中的查询 ## 使用依赖项 { #use-the-dependency } 接下来,就可以使用依赖项: {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[23] *} /// info | 信息 注意,这里在*路径操作函数*中只声明了一个依赖项,即 `query_or_cookie_extractor` 。 但 **FastAPI** 必须先处理 `query_extractor`,以便在调用 `query_or_cookie_extractor` 时使用 `query_extractor` 返回的结果。 /// ```mermaid graph TBCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:37:57 GMT 2026 - 3.8K bytes - Click Count (0)