Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 2051 - 2060 of 2,110 for py$ (0.28 seconds)

  1. docs/ja/docs/advanced/response-change-status-code.md

    *path operation* 関数で `Response` 型のパラメータを宣言できます(Cookie やヘッダーと同様です)。
    
    そして、その*一時的な*レスポンスオブジェクトに `status_code` を設定できます。
    
    {* ../../docs_src/response_change_status_code/tutorial001_py310.py hl[1,9,12] *}
    
    その後は通常どおり、必要な任意のオブジェクト(`dict`、データベースモデルなど)を返せます。
    
    そして `response_model` を宣言していれば、返したオブジェクトのフィルタと変換には引き続きそれが使われます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 2K bytes
    - Click Count (0)
  2. docs/ja/docs/tutorial/static-files.md

    `StaticFiles` を使用して、ディレクトリから静的ファイルを自動的に提供できます。
    
    ## `StaticFiles` の使用 { #use-staticfiles }
    
    * `StaticFiles` をインポート。
    * `StaticFiles()` インスタンスを特定のパスに「マウント」。
    
    {* ../../docs_src/static_files/tutorial001_py310.py hl[2,6] *}
    
    /// note | 技術詳細
    
    `from starlette.staticfiles import StaticFiles` も使用できます。
    
    **FastAPI**は、開発者の利便性のために、`starlette.staticfiles` と同じ `fastapi.staticfiles` を提供します。しかし、実際にはStarletteから直接渡されています。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  3. docs/ru/docs/advanced/openapi-webhooks.md

    {* ../../docs_src/openapi_webhooks/tutorial001_py310.py hl[9:12,15:20] *}
    
    Определенные вами вебхуки попадут в схему **OpenAPI** и в автоматический **интерфейс документации**.
    
    /// info | Информация
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  4. ci/official/wheel.sh

      python_bin=python3
      # TODO(belitskiy): Add a `python3` alias/symlink to Windows Docker image.
      if [[ $(uname -s) = MSYS_NT* ]]; then
        python_bin="python"
      fi
      tfrun "$python_bin" tensorflow/tools/ci_build/update_version.py --nightly
      # replace tensorflow to tf_nightly in the wheel name
      export TFCI_BUILD_PIP_PACKAGE_WHEEL_NAME_ARG="$(echo $TFCI_BUILD_PIP_PACKAGE_WHEEL_NAME_ARG | sed 's/tensorflow/tf_nightly/')"
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 03 17:29:53 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  5. docs/pt/docs/advanced/openapi-webhooks.md

    {* ../../docs_src/openapi_webhooks/tutorial001_py310.py hl[9:12,15:20] *}
    
    Os webhooks que você define aparecerão no esquema do **OpenAPI** e na **página de documentação** gerada automaticamente.
    
    /// info | Informação
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  6. docs/es/docs/advanced/templates.md

    {* ../../docs_src/templates/tutorial001_py310.py hl[4,11,15:18] *}
    
    /// note | Nota
    
    Antes de FastAPI 0.108.0, Starlette 0.29.0, el `name` era el primer parámetro.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  7. docs/ru/docs/advanced/templates.md

    {* ../../docs_src/templates/tutorial001_py310.py hl[4,11,15:18] *}
    
    /// note | Примечание
    
    До FastAPI 0.108.0, Starlette 0.29.0, `name` был первым параметром.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 5K bytes
    - Click Count (0)
  8. docs/tr/docs/advanced/strict-content-type.md

    Content-Type header’ı göndermeyen client’ları desteklemeniz gerekiyorsa, strict kontrolü strict_content_type=False ayarıyla kapatabilirsiniz:
    
    {* ../../docs_src/strict_content_type/tutorial001_py310.py hl[4] *}
    
    Bu ayarla, Content-Type header’ı olmayan request’lerin body’si JSON olarak parse edilir. Bu, FastAPI’nin eski sürümlerindeki davranışla aynıdır.
    
    /// info | Bilgi
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  9. docs/tr/docs/advanced/templates.md

    {* ../../docs_src/templates/tutorial001_py310.py hl[4,11,15:18] *}
    
    /// note | Not
    
    FastAPI 0.108.0 ve Starlette 0.29.0 öncesinde, ilk parametre `name` idi.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  10. docs/en/docs/virtual-environments.md

    <div class="termy">
    
    ```console
    $ cd ~/code/prisoner-of-azkaban
    
    $ python main.py
    
    // Error importing sirius, it's not installed 😱
    Traceback (most recent call last):
        File "main.py", line 1, in <module>
            import sirius
    ```
    
    </div>
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 22.1K bytes
    - Click Count (0)
Back to Top