Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 850 for tutoriel (0.06 seconds)

  1. fastapi/security/oauth2.py

        All the initialization parameters are extracted from the request.
    
        Read more about it in the
        [FastAPI docs for Simple OAuth2 with Password and Bearer](https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/).
    
        ## Example
    
        ```python
        from typing import Annotated
    
        from fastapi import Depends, FastAPI
        from fastapi.security import OAuth2PasswordRequestForm
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Mar 24 16:32:10 GMT 2026
    - 23.6K bytes
    - Click Count (0)
  2. docs/de/docs/advanced/response-directly.md

    Wenn Sie ein [Responsemodell](../tutorial/response-model.md) deklarieren, wird FastAPI es verwenden, um die Daten mithilfe von Pydantic nach JSON zu serialisieren.
    
    Wenn Sie kein Responsemodell deklarieren, verwendet FastAPI den `jsonable_encoder`, wie in [JSON-kompatibler Encoder](../tutorial/encoder.md) erläutert, und packt die Daten in eine `JSONResponse`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  3. docs/es/docs/advanced/response-directly.md

    Si declaras un [Response Model](../tutorial/response-model.md) FastAPI lo usará para serializar los datos a JSON, usando Pydantic.
    
    Si no declaras un response model, FastAPI usará el `jsonable_encoder` explicado en [JSON Compatible Encoder](../tutorial/encoder.md) y lo pondrá en un `JSONResponse`.
    
    También podrías crear un `JSONResponse` directamente y devolverlo.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  4. docs/ru/docs/advanced/security/index.md

    /// tip | Совет
    
    Следующие разделы не обязательно являются «продвинутыми».
    
    И возможно, что решение для вашего варианта использования находится в одном из них.
    
    ///
    
    ## Сначала прочитайте руководство { #read-the-tutorial-first }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 1.2K bytes
    - Click Count (0)
  5. docs/ru/docs/tutorial/path-operation-configuration.md

    Он будет четко помечен как устаревший в интерактивной документации:
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    
    Проверьте, как будут выглядеть устаревшие и не устаревшие *операции пути*:
    
    <img src="/img/tutorial/path-operation-configuration/image05.png">
    
    ## Резюме { #recap }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/index.md

    # Tutorial - User Guide { #tutorial-user-guide }
    
    This tutorial shows you how to use **FastAPI** with most of its features, step by step.
    
    Each section gradually builds on the previous ones, but it's structured to separate topics, so that you can go directly to any specific one to solve your specific API needs.
    
    It is also built to work as a future reference so you can come back and see exactly what you need.
    
    ## Run the code { #run-the-code }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  7. docs/uk/docs/how-to/configure-swagger-ui.md

    Без змін у налаштуваннях підсвітка синтаксису увімкнена за замовчуванням:
    
    <img src="/img/tutorial/extending-openapi/image02.png">
    
    Але ви можете вимкнути її, встановивши `syntaxHighlight` у `False`:
    
    {* ../../docs_src/configure_swagger_ui/tutorial001_py310.py hl[3] *}
    
    ...після цього Swagger UI більше не показуватиме підсвітку синтаксису:
    
    <img src="/img/tutorial/extending-openapi/image03.png">
    
    ## Змініть тему { #change-the-theme }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  8. docs/de/docs/tutorial/path-operation-configuration.md

    Sie wird in der interaktiven Dokumentation gut sichtbar als deprecatet markiert werden:
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    
    Vergleichen Sie, wie deprecatete und nicht-deprecatete *Pfadoperationen* aussehen:
    
    <img src="/img/tutorial/path-operation-configuration/image05.png">
    
    ## Zusammenfassung { #recap }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  9. docs/en/docs/tutorial/path-operation-configuration.md

    It will be clearly marked as deprecated in the interactive docs:
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    
    Check how deprecated and non-deprecated *path operations* look like:
    
    <img src="/img/tutorial/path-operation-configuration/image05.png">
    
    ## Recap { #recap }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/advanced/websockets.md

    在瀏覽器開啟 [http://127.0.0.1:8000](http://127.0.0.1:8000)。
    
    你會看到一個像這樣的簡單頁面:
    
    <img src="/img/tutorial/websockets/image01.png">
    
    你可以在輸入框輸入訊息並送出:
    
    <img src="/img/tutorial/websockets/image02.png">
    
    你的 **FastAPI** 應用會透過 WebSockets 回應:
    
    <img src="/img/tutorial/websockets/image03.png">
    
    你可以傳送(與接收)多則訊息:
    
    <img src="/img/tutorial/websockets/image04.png">
    
    而且它們都會使用同一個 WebSocket 連線。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 5.2K bytes
    - Click Count (0)
Back to Top