Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 791 - 800 of 850 for tutoriel (0.06 seconds)

  1. docs/ko/docs/features.md

    ### 보안과 인증 { #security-and-authentication }
    
    보안과 인증이 통합되어 있습니다. 데이터베이스나 데이터 모델과 타협하지 않습니다.
    
    다음을 포함해 OpenAPI에 정의된 모든 보안 스키마:
    
    * HTTP Basic.
    * **OAuth2**(**JWT tokens** 또한 포함). [JWT를 사용한 OAuth2](tutorial/security/oauth2-jwt.md) 자습서를 확인해 보세요.
    * 다음에 들어 있는 API 키:
        * 헤더.
        * 쿼리 매개변수.
        * 쿠키 등.
    
    추가로 Starlette의 모든 보안 기능(**세션 쿠키** 포함)도 제공합니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  2. docs/fr/docs/tutorial/dependencies/dependencies-with-yield.md

    Les « Context Managers » sont des objets Python que vous pouvez utiliser dans une instruction `with`.
    
    Par exemple, [vous pouvez utiliser `with` pour lire un fichier](https://docs.python.org/3/tutorial/inputoutput.html#reading-and-writing-files) :
    
    ```Python
    with open("./somefile.txt") as f:
        contents = f.read()
        print(contents)
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  3. docs/ko/docs/tutorial/dependencies/index.md

    ///
    
    ## OpenAPI와 통합 { #integrated-with-openapi }
    
    모든 요청 선언, 검증과 의존성(및 하위 의존성)에 대한 요구 사항은 동일한 OpenAPI 스키마에 통합됩니다.
    
    따라서 대화형 문서에 이러한 의존성에 대한 모든 정보 역시 포함하고 있습니다:
    
    <img src="/img/tutorial/dependencies/image01.png">
    
    ## 간단한 사용법 { #simple-usage }
    
    이를 보면, *경로 처리 함수*는 *경로*와 *작동*이 매칭되면 언제든지 사용되도록 정의되었으며, **FastAPI**는 올바른 매개변수를 가진 함수를 호출하고 해당 요청에서 데이터를 추출합니다.
    
    사실, 모든 (혹은 대부분의) 웹 프레임워크는 이와 같은 방식으로 작동합니다.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  4. docs/de/docs/tutorial/dependencies/dependencies-with-yield.md

    „Kontextmanager“ (Englisch „Context Manager“) sind bestimmte Python-Objekte, die Sie in einer `with`-Anweisung verwenden können.
    
    Beispielsweise können Sie [„with“ verwenden, um eine Datei auszulesen](https://docs.python.org/3/tutorial/inputoutput.html#reading-and-writing-files):
    
    ```Python
    with open("./somefile.txt") as f:
        contents = f.read()
        print(contents)
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 14.4K bytes
    - Click Count (0)
  5. docs/ko/docs/_llm-test.md

    * <dfn title="입력과 출력 계층 사이에 수많은 은닉 계층을 둔 인공 신경망을 사용하는 머신 러닝 방법으로, 이를 통해 포괄적인 내부 구조를 형성합니다">딥 러닝</dfn>
    
    ## 제목 { #headings }
    
    //// tab | 테스트
    
    ### 웹앱 개발하기 - 튜토리얼 { #develop-a-webapp-a-tutorial }
    
    안녕하세요.
    
    ### 타입 힌트와 -애너테이션 { #type-hints-and-annotations }
    
    다시 안녕하세요.
    
    ### super- 및 subclasses { #super-and-subclasses }
    
    다시 안녕하세요.
    
    ////
    
    //// tab | 정보
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  6. docs/en/docs/contributing.md

    /// tip
    
    You don't need to see the code in `./scripts/docs.py`, you just use it in the command line.
    
    ///
    
    All the documentation is in Markdown format in the directory `./docs/en/`.
    
    Many of the tutorials have blocks of code.
    
    In most of the cases, these blocks of code are actual complete applications that can be run as is.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:59:26 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  7. docs/ja/docs/advanced/openapi-callbacks.md

    ### ドキュメントを確認 { #check-the-docs }
    
    アプリを起動して [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs) にアクセスします。
    
    あなたの *path operation* に「Callbacks」セクションが含まれ、*外部 API* がどうあるべきかが表示されているのが確認できます:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 9.3K bytes
    - Click Count (0)
  8. helm/minio/values.yaml

    ## See https://docs.min.io/community/minio-object-store/operations/external-iam/configure-openid-external-identity-management.html for a tutorial on using these variables.
    oidc:
      enabled: false
      configUrl: "https://identity-provider-url/.well-known/openid-configuration"
      clientId: "minio"
      clientSecret: ""
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 19.7K bytes
    - Click Count (1)
  9. docs/ja/docs/tutorial/body-nested-models.md

    以下のように:
    
    {* ../../docs_src/body_nested_models/tutorial008_py310.py hl[13] *}
    
    ## あらゆる場所でのエディタサポート { #editor-support-everywhere }
    
    そして、あらゆる場所でエディタサポートを得られます。
    
    以下のようにリストの中の項目でも:
    
    <img src="/img/tutorial/body-nested-models/image01.png">
    
    Pydanticモデルではなく、`dict`を直接使用している場合はこのようなエディタのサポートは得られません。
    
    しかし、それらについて心配する必要はありません。入力されたdictは自動的に変換され、出力も自動的にJSONに変換されます。
    
    ## 任意の`dict`のボディ { #bodies-of-arbitrary-dicts }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  10. docs/ja/docs/tutorial/dependencies/index.md

    ///
    
    ## OpenAPIとの統合 { #integrated-with-openapi }
    
    依存関係(およびサブ依存関係)のすべてのリクエスト宣言、検証、および要件は、同じOpenAPIスキーマに統合されます。
    
    つまり、対話型ドキュメントにはこれらの依存関係から得られる全ての情報も含まれているということです:
    
    <img src="/img/tutorial/dependencies/image01.png">
    
    ## 簡単な使い方 { #simple-usage }
    
    見てみると、*path*と*operation*が一致した時に*path operation 関数*が宣言されていて、**FastAPI** が正しいパラメータで関数を呼び出してリクエストからデータを抽出する処理をしています。
    
    実は、すべての(あるいはほとんどの)Webフレームワークは、このように動作します。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
Back to Top