- Sort Score
- Num 10 results
- Language All
Results 681 - 690 of 850 for tutoriel (0.06 seconds)
-
docs/ja/docs/tutorial/bigger-applications.md
* `app/internal/` サブディレクトリにも `__init__.py` があるので、別の「Python サブパッケージ」: `app.internal` です。 * `app/internal/admin.py` は別のサブモジュール: `app.internal.admin` です。 <img src="/img/tutorial/bigger-applications/package.drawio.svg"> 同じファイル構成にコメントを付けると次のとおりです: ```bash . ├── app # "app" は Python パッケージ │ ├── __init__.py # このファイルにより "app" は「Python パッケージ」になる
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 22.8K bytes - Click Count (0) -
docs/ja/docs/advanced/settings.md
[大規模アプリケーション - 複数ファイル](../tutorial/bigger-applications.md) で見たように、これらの設定を別のモジュールファイルに置くこともできます。 たとえば、`config.py` というファイルに次のように書けます: {* ../../docs_src/settings/app01_py310/config.py *} そして、`main.py` というファイルでそれを使います: {* ../../docs_src/settings/app01_py310/main.py hl[3,11:13] *} /// tip | 豆知識 [大規模アプリケーション - 複数ファイル](../tutorial/bigger-applications.md) で見たように、`__init__.py` ファイルも必要です。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 12.7K bytes - Click Count (0) -
docs/fr/docs/tutorial/response-model.md
Dans la documentation automatique, vous pouvez vérifier que le modèle d'entrée et le modèle de sortie auront chacun leur propre JSON Schema : <img src="/img/tutorial/response-model/image01.png"> Et les deux modèles seront utilisés pour la documentation API interactive : <img src="/img/tutorial/response-model/image02.png"> ## Autres annotations de type de retour { #other-return-type-annotations }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 18.1K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/query-params-str-validations.md
```JSON { "q": [ "foo", "bar" ] } ``` /// tip | 提示 要宣告型別為 `list` 的查詢參數(如上例),需要明確使用 `Query`,否則它會被解讀為請求本文。 /// 互動式 API 文件也會相應更新,以便支援多個值: <img src="/img/tutorial/query-params-str-validations/image02.png"> ### 查詢參數清單/多個值的預設值 { #query-parameter-list-multiple-values-with-defaults } 也可以在未提供任何值時,定義 `list` 型別的預設值:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 14.8K bytes - Click Count (0) -
docs/es/docs/async.md
### Dependencias { #dependencies } Lo mismo aplica para las [dependencias](tutorial/dependencies/index.md). Si una dependencia es una función estándar `def` en lugar de `async def`, se ejecuta en el threadpool externo. ### Sub-dependencias { #sub-dependencies }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 24.8K bytes - Click Count (0) -
docs/ru/docs/advanced/openapi-callbacks.md
Вы увидите документацию, включающую раздел «Callbacks» для вашей *операции пути*, который показывает, как должен выглядеть *внешний API*:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 12.4K bytes - Click Count (0) -
docs/ko/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md
Pydantic에는 v1에서 v2로의 공식 [마이그레이션 가이드](https://docs.pydantic.dev/latest/migration/)가 있습니다. 여기에는 무엇이 바뀌었는지, 검증이 이제 어떻게 더 정확하고 엄격해졌는지, 가능한 주의사항 등도 포함되어 있습니다. 변경된 내용을 더 잘 이해하기 위해 읽어보면 좋습니다. ## 테스트 { #tests } 앱에 대한 [테스트](../tutorial/testing.md)가 있는지 확인하고, 지속적 통합(CI)에서 테스트를 실행하세요. 이렇게 하면 업그레이드를 진행하면서도 모든 것이 기대한 대로 계속 동작하는지 확인할 수 있습니다. ## `bump-pydantic` { #bump-pydantic }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 6.3K bytes - Click Count (0) -
docs/ko/docs/advanced/path-operation-advanced-configuration.md
{* ../../docs_src/path_operation_advanced_configuration/tutorial005_py310.py hl[6] *} 자동 API 문서를 열면, 해당 특정 *경로 처리*의 하단에 확장이 표시됩니다. <img src="/img/tutorial/path-operation-advanced-configuration/image01.png"> 또한 API의 `/openapi.json`에서 결과 OpenAPI를 보면, 특정 *경로 처리*의 일부로 확장이 포함된 것도 확인할 수 있습니다: ```JSON hl_lines="22" { "openapi": "3.1.0", "info": {Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 7.6K bytes - Click Count (0) -
docs/de/docs/tutorial/query-params-str-validations.md
/// Die interaktive API-Dokumentation wird entsprechend aktualisiert, um mehrere Werte zu erlauben: <img src="/img/tutorial/query-params-str-validations/image02.png"> ### Query-Parameter-Liste / Mehrere Werte mit Defaults { #query-parameter-list-multiple-values-with-defaults }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 18.7K bytes - Click Count (0) -
docs/ko/docs/python-types.md
/// info | 정보 Pydantic에 대해 더 알아보려면 [문서를 확인하세요](https://docs.pydantic.dev/). /// **FastAPI**는 모두 Pydantic에 기반을 두고 있습니다. 이 모든 것은 [자습서 - 사용자 안내서](tutorial/index.md)에서 실제로 많이 보게 될 것입니다. ## 메타데이터 애너테이션이 있는 타입 힌트 { #type-hints-with-metadata-annotations } 파이썬에는 `Annotated`를 사용해 이러한 타입 힌트에 **추가 <dfn title="데이터에 대한 데이터, 여기서는 타입에 대한 정보(예: 설명)">메타데이터</dfn>**를 넣을 수 있는 기능도 있습니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 13K bytes - Click Count (0)