Search Options

Results per page
Sort
Preferred Languages
Advance

Results 571 - 580 of 681 for Python3 (0.08 sec)

  1. docs/pt/docs/how-to/configure-swagger-ui.md

    ```JavaScript
    presets: [
        SwaggerUIBundle.presets.apis,
        SwaggerUIBundle.SwaggerUIStandalonePreset
    ]
    ```
    
    Esses são objetos **JavaScript**, não strings, então você não pode passá-los diretamente do código Python.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. docs/en/docs/management-tasks.md

        * Unless it's a feature we want to discourage, like support for a corner case that we don't want users to use.
    * The docs should include a source example file, not write Python directly in Markdown.
    * If the source example(s) file can have different syntax for Python 3.8, 3.9, 3.10, there should be different versions of the file, and they should be shown in tabs in the docs.
    * There should be tests testing the source example.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. docs/es/docs/benchmarks.md

    Pero al revisar benchmarks y comparaciones, debes tener en cuenta lo siguiente.
    
    ## Benchmarks y velocidad
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 17:46:44 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/templates.md

    In the HTML that contains:
    
    {% raw %}
    
    ```jinja
    Item ID: {{ id }}
    ```
    
    {% endraw %}
    
    ...it will show the `id` taken from the "context" `dict` you passed:
    
    ```Python
    {"id": id}
    ```
    
    For example, with an ID of `42`, this would render:
    
    ```html
    Item ID: 42
    ```
    
    ### Template `url_for` Arguments { #template-url-for-arguments }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  5. docs/ko/docs/how-to/configure-swagger-ui.md

    FastAPI는 이러한 JavaScript 전용 `presets` 설정을 포함하고 있습니다:
    
    ```JavaScript
    presets: [
        SwaggerUIBundle.presets.apis,
        SwaggerUIBundle.SwaggerUIStandalonePreset
    ]
    ```
    
    이들은 문자열이 아닌 **JavaScript** 객체이므로 Python 코드에서 직접 전달할 수 없습니다.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 09 12:25:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. docs/ja/docs/tutorial/body-multiple-params.md

    }
    ```
    
    繰り返しになりますが、データ型の変換、検証、文書化などを行います。
    
    ## 複数のボディパラメータとクエリ
    
    もちろん、ボディパラメータに加えて、必要に応じて追加のクエリパラメータを宣言することもできます。
    
    デフォルトでは、単数値はクエリパラメータとして解釈されるので、明示的に `Query` を追加する必要はありません。
    
    ```Python
    q: str = None
    ```
    
    以下において:
    
    {* ../../docs_src/body_multiple_params/tutorial004.py hl[27] *}
    
    /// info | 情報
    
    `Body`もまた、後述する `Query` や `Path` などと同様に、すべての検証パラメータとメタデータパラメータを持っています。
    
    ///
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. docs/ja/docs/tutorial/query-params.md

    ```
    
    ...クエリパラメータは:
    
    * `skip`: 値は `0`
    * `limit`: 値は `10`
    
    これらはURLの一部なので、「自然に」文字列になります。
    
    しかしPythonの型を宣言すると (上記の例では `int` として)、その型に変換されバリデーションが行われます。
    
    パスパラメータに適用される処理と完全に同様な処理がクエリパラメータにも施されます:
    
    * エディターサポート (明らかに)
    * データ「<abbr title="HTTPリクエストで受け取った文字列をPythonデータへ変換する">解析</abbr>」
    * データバリデーション
    * 自動ドキュメント生成
    
    ## デフォルト
    
    クエリパラメータはパスの固定部分ではないので、オプショナルとしたり、デフォルト値をもつことができます。
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. docs/ko/docs/advanced/advanced-dependencies.md

    ## 인스턴스를 의존성으로 사용하기
    
    그런 다음, `Depends(FixedContentQueryChecker)` 대신 `Depends(checker)`에서 이 `checker` 인스턴스를 사용할 수 있으며,
    클래스 자체가 아닌 인스턴스 `checker`가 의존성이 됩니다.
    
    의존성을 해결할 때 **FastAPI**는 이 `checker`를 다음과 같이 호출합니다:
    
    ```Python
    checker(q="somequery")
    ```
    
    ...그리고 이때 반환되는 값을 *경로 연산 함수*의 `fixed_content_included` 매개변수로 전달합니다:
    
    {* ../../docs_src/dependencies/tutorial011_an_py39.py hl[22] *}
    
    /// tip | 참고
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. docs/pt/docs/benchmarks.md

    Mas quando se checa _benchmarks_ e comparações você deveria ter o seguinte em mente.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/11-language-change.yml

      - type: input
        id: author-other-languages-experience
        attributes:
          label: "Other Languages Experience"
          description: "What other languages do you have experience with?"
          placeholder: "Go, Python, JS, Rust"
        validations:
          required: false
    
      - type: checkboxes
        id: related-idea
        attributes:
          label: "Related Idea"
          options:
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Aug 08 19:02:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top