Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 561 - 570 of 1,005 for trip (0.08 seconds)

  1. docs/ja/docs/deployment/versions.md

    セマンティック バージョニングの規約に従って、`1.0.0` 未満のバージョンは破壊的な変更が加わる可能性があります。
    
    FastAPI では「PATCH」バージョンの変更はバグ修正と非破壊的な変更に使う、という規約にも従っています。
    
    /// tip | 豆知識
    
    「PATCH」は最後の数字です。例えば、`0.2.3` では PATCH バージョンは `3` です。
    
    ///
    
    従って、以下のようなバージョンの固定ができるはずです:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    破壊的な変更と新機能は「MINOR」バージョンで追加されます。
    
    /// tip | 豆知識
    
    「MINOR」は真ん中の数字です。例えば、`0.2.3` では MINOR バージョンは `2` です。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/dependencies/index.md

    Onu doğrudan **çağırmazsınız** (sonuna parantez eklemezsiniz), sadece `Depends()`'e parametre olarak verirsiniz.
    
    Ve bu fonksiyon da, *path operation function*'lar gibi parametre alır.
    
    /// tip | İpucu
    
    Fonksiyonların dışında başka hangi "şeylerin" dependency olarak kullanılabildiğini bir sonraki bölümde göreceksiniz.
    
    ///
    
    Yeni bir request geldiğinde, **FastAPI** şunları sizin yerinize yapar:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/schema-extra-example.md

    Üretilen JSON Schema’da görünmesini istediğiniz (ör. `examples` dahil) her türlü ek veriyi içeren bir `dict` ile `"json_schema_extra"` ayarlayabilirsiniz.
    
    /// tip | İpucu
    
    Aynı tekniği JSON Schema’yı genişletmek ve kendi özel ek bilgilerinizi eklemek için de kullanabilirsiniz.
    
    Örneğin, bir frontend kullanıcı arayüzü için metadata eklemek vb. amaçlarla kullanılabilir.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  4. docs/ja/docs/tutorial/stream-json-lines.md

    とはいえ、通常は気にする必要はありません。自動で処理されますので、読み進めてください。🤓
    
    ///
    
    ## ユースケース { #use-cases }
    
    これは **AI LLM** サービス、**ログ**や**テレメトリ**、あるいは **JSON** アイテムとして構造化できる他の種類のデータをストリームするのに使えます。
    
    /// tip | 豆知識
    
    動画や音声などのバイナリデータをストリームしたい場合は、上級ガイドを参照してください: [データのストリーム](../advanced/stream-data.md)。
    
    ///
    
    ## FastAPI で JSON Lines をストリームする { #stream-json-lines-with-fastapi }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:55:22 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  5. docs/de/docs/tutorial/body-fields.md

    Denken Sie daran, dass `Query`, `Path` und andere, wenn Sie sie von `fastapi` importieren, tatsächlich Funktionen sind, die spezielle Klassen zurückgeben.
    
    ///
    
    /// tip | Tipp
    
    Beachten Sie, wie jedes Attribut eines Modells mit einem Typ, Defaultwert und `Field` die gleiche Struktur hat wie ein Parameter einer *Pfadoperation-Funktion*, nur mit `Field` statt `Path`, `Query`, `Body`.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 07:57:30 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  6. docs/en/docs/advanced/response-cookies.md

    To do that, you can create a response as described in [Return a Response Directly](response-directly.md).
    
    Then set Cookies in it, and then return it:
    
    {* ../../docs_src/response_cookies/tutorial001_py310.py hl[10:12] *}
    
    /// tip
    
    Keep in mind that if you return a response directly instead of using the `Response` parameter, FastAPI will return it directly.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  7. docs/fr/docs/tutorial/query-param-models.md

                "input": "plumbus"
            }
        ]
    }
    ```
    
    ## Résumé { #summary }
    
    Vous pouvez utiliser des modèles Pydantic pour déclarer des paramètres de requête dans FastAPI. 😎
    
    /// tip | Astuce
    
    Alerte spoiler : vous pouvez aussi utiliser des modèles Pydantic pour déclarer des cookies et des en-têtes, mais vous lirez cela plus tard dans le tutoriel. 🤫
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:12:41 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  8. docs/ja/docs/how-to/authentication-error-status-code.md

    たとえば、既定の `401 Unauthorized` エラーの代わりに `403 Forbidden` エラーを返す `HTTPBearer` のサブクラスを作成できます:
    
    {* ../../docs_src/authentication_error_status_code/tutorial001_an_py310.py hl[9:13] *}
    
    /// tip | 豆知識
    
    この関数は例外インスタンスを返す点に注意してください。ここでは例外を送出しません。送出は内部の他のコードで行われます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 1.4K bytes
    - Click Count (0)
  9. docs/ja/docs/tutorial/bigger-applications.md

    │   ├── main.py
    │   ├── dependencies.py
    │   └── routers
    │   │   ├── __init__.py
    │   │   ├── items.py
    │   │   └── users.py
    │   └── internal
    │       ├── __init__.py
    │       └── admin.py
    ```
    
    /// tip | 豆知識
    
    複数の `__init__.py` ファイルがあります: 各ディレクトリやサブディレクトリに1つずつです。
    
    これにより、あるファイルから別のファイルへコードをインポートできます。
    
    例えば、`app/main.py` では次のように書けます:
    
    ```
    from app.routers import items
    ```
    
    ///
    
    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)
  10. docs/pt/docs/tutorial/query-param-models.md

                "input": "plumbus"
            }
        ]
    }
    ```
    
    ## Resumo { #summary }
    
    Você pode utilizar **modelos Pydantic** para declarar **parâmetros de consulta** no **FastAPI**. 😎
    
    /// tip | Dica
    
    Alerta de spoiler: você também pode utilizar modelos Pydantic para declarar cookies e cabeçalhos, mas você irá ler sobre isso mais a frente no tutorial. 🤫
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:48:53 GMT 2026
    - 2.4K bytes
    - Click Count (0)
Back to Top