Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for melhor (0.03 sec)

  1. fastapi/openapi/utils.py

        return generate_operation_id_for_path(name=route.name, path=path, method=method)
    
    
    def generate_operation_summary(*, route: routing.APIRoute, method: str) -> str:
        if route.summary:
            return route.summary
        return route.name.replace("_", " ").title()
    
    
    def get_openapi_operation_metadata(
        *, route: routing.APIRoute, method: str, operation_ids: set[str]
    ) -> dict[str, Any]:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  2. fastapi/utils.py

        *,
        cloned_types: Optional[MutableMapping[type[BaseModel], type[BaseModel]]] = None,
    ) -> ModelField:
        return field
    
    
    def generate_operation_id_for_path(
        *, name: str, path: str, method: str
    ) -> str:  # pragma: nocover
        warnings.warn(
            message="fastapi.utils.generate_operation_id_for_path() was deprecated, "
            "it is not used internally, and will be removed soon",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/query-params-str-validations.md

    Da `Annotated` mehr als eine Metadaten-Annotation haben kann, könnten Sie dieselbe Funktion sogar mit anderen Tools verwenden, wie z. B. <a href="https://typer.tiangolo.com/" class="external-link" target="_blank">Typer</a>. 🚀
    
    ## Mehr Validierungen hinzufügen { #add-more-validations }
    
    Sie können auch einen `min_length`-Parameter hinzufügen:
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  4. docs/de/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md

    /// warning | Achtung
    
    Das Pydantic-Team hat die Unterstützung für Pydantic v1 in den neuesten Python-Versionen eingestellt, beginnend mit **Python 3.14**.
    
    Dies schließt `pydantic.v1` ein, das unter Python 3.14 und höher nicht mehr unterstützt wird.
    
    Wenn Sie die neuesten Features von Python nutzen möchten, müssen Sie sicherstellen, dass Sie Pydantic v2 verwenden.
    
    ///
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  5. docs/de/llm-prompt.md

            More to come...
            »»»
    
        Result (German):
    
            «««
            ... wie wir es beabsichtigt hatten.
            ... das würde funktionieren:
            ... usw.
            Andere ...
            Später mehr ...
            »»»
    
    2) This does not apply in URLs, code blocks, and code snippets. Do not remove or add spaces there.
    
    
    ### Headings
    
    1) Translate headings using the infinite form.
    
    Examples:
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 09:39:53 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/extra-models.md

    # Extramodelle { #extra-models }
    
    Im Anschluss an das vorherige Beispiel ist es üblich, mehr als ein zusammenhängendes Modell zu haben.
    
    Dies gilt insbesondere für Benutzermodelle, denn:
    
    * Das **Eingabemodell** muss ein Passwort enthalten können.
    * Das **Ausgabemodell** sollte kein Passwort haben.
    * Das **Datenbankmodell** müsste wahrscheinlich ein gehashtes Passwort haben.
    
    /// danger | Gefahr
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 8K bytes
    - Viewed (0)
  7. fastapi/routing.py

            self.path_regex, self.path_format, self.param_convertors = compile_path(path)
            if methods is None:
                methods = ["GET"]
            self.methods: set[str] = {method.upper() for method in methods}
            if isinstance(generate_unique_id_function, DefaultPlaceholder):
                current_generate_unique_id: Callable[[APIRoute], str] = (
                    generate_unique_id_function.value
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 174.6K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

    ## 0.123.10
    
    ### Fixes
    
    * 🐛 Fix using class (not instance) dependency that has `__call__` method. PR [#14458](https://github.com/fastapi/fastapi/pull/14458) by [@YuriiMotov](https://github.com/YuriiMotov).
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
Back to top