Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for Zusammenfassung (0.15 sec)

  1. docs/de/docs/tutorial/body-multiple-params.md

            "tax": 3.2
        }
    }
    ```
    
    statt:
    
    ```JSON
    {
        "name": "Foo",
        "description": "The pretender",
        "price": 42.0,
        "tax": 3.2
    }
    ```
    
    ## Zusammenfassung
    
    Sie können mehrere Body-Parameter zu ihrer *Pfadoperation-Funktion* hinzufügen, obwohl ein Request nur einen einzigen Body enthalten kann.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/metadata.md

    | Parameter | Typ | Beschreibung |
    |------------|------|-------------|
    | `title` | `str` | Der Titel der API. |
    | `summary` | `str` | Eine kurze Zusammenfassung der API. <small>Verfügbar seit OpenAPI 3.1.0, FastAPI 0.99.0.</small> |
    | `description` | `str` | Eine kurze Beschreibung der API. Kann Markdown verwenden. |
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/extra-models.md

    {!> ../../docs_src/extra_models/tutorial005_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="1  8"
    {!> ../../docs_src/extra_models/tutorial005.py!}
    ```
    
    ////
    
    ## Zusammenfassung
    
    Verwenden Sie gerne mehrere Pydantic-Modelle und vererben Sie je nach Bedarf.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/body-nested-models.md

    Und das `dict` welches Sie als `weights` erhalten, wird `int`-Schlüssel und `float`-Werte haben.
    
    ///
    
    ## Zusammenfassung
    
    Mit **FastAPI** haben Sie die maximale Flexibilität von Pydantic-Modellen, während Ihr Code einfach, kurz und elegant bleibt.
    
    Aber mit all den Vorzügen:
    
    * Editor-Unterstützung (Codevervollständigung überall)
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/security/get-current-user.md

    /// tip | "Tipp"
    
    Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
    ///
    
    ```Python hl_lines="30-32"
    {!> ../../docs_src/security/tutorial002.py!}
    ```
    
    ////
    
    ## Zusammenfassung
    
    Sie können jetzt den aktuellen Benutzer direkt in Ihrer *Pfadoperation-Funktion* abrufen.
    
    Wir haben bereits die Hälfte geschafft.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/path-params.md

    In dem Fall wäre die URL: `/files//home/johndoe/myfile.txt`, mit einem doppelten Schrägstrich (`//`) zwischen `files` und `home`.
    
    ///
    
    ## Zusammenfassung
    
    In **FastAPI** erhalten Sie mittels kurzer, intuitiver Typdeklarationen:
    
    * Editor-Unterstützung: Fehlerprüfungen, Codevervollständigung, usw.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/path-params-numeric-validations.md

    /// tip | "Tipp"
    
    Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
    ///
    
    ```Python hl_lines="11"
    {!> ../../docs_src/path_params_numeric_validations/tutorial006.py!}
    ```
    
    ////
    
    ## Zusammenfassung
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. docs/de/docs/deployment/server-workers.md

    ## Zusammenfassung
    
    Sie können **Gunicorn** (oder auch Uvicorn) als Prozessmanager mit Uvicorn-Workern verwenden, um **Multikern-CPUs** zu nutzen und **mehrere Prozesse parallel** auszuführen.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/request-files.md

    /// tip | "Tipp"
    
    Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
    ///
    
    ```Python hl_lines="11  18"
    {!> ../../docs_src/request_files/tutorial003.py!}
    ```
    
    ////
    
    ## Zusammenfassung
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/security/first-steps.md

    <img src="/img/tutorial/security/image03.png">
    
    Wir überprüfen im Moment noch nicht die Gültigkeit des Tokens, aber das ist bereits ein Anfang.
    
    ## Zusammenfassung
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top