Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for setLine (0.03 sec)

  1. docs/de/docs/tutorial/extra-models.md

    Wir könnten es besser machen.
    
    Wir können ein `UserBase`-Modell deklarieren, das als Basis für unsere anderen Modelle dient. Und dann können wir Unterklassen dieses Modells erstellen, die seine Attribute (Typdeklarationen, Validierung usw.) erben.
    
    Die ganze Datenkonvertierung, -validierung, -dokumentation usw. wird immer noch wie gewohnt funktionieren.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 8K bytes
    - Viewed (0)
  2. fastapi/_compat/v2.py

                    warnings.simplefilter(
                        "ignore", category=UnsupportedFieldAttributeWarning
                    )
                # TODO: remove after dropping support for Python 3.8 and
                # setting the min Pydantic to v2.12.3 that adds asdict()
                field_dict = asdict(self.field_info)
                annotated_args = (
                    field_dict["annotation"],
                    *field_dict["metadata"],
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  3. scripts/translate.py

        github_token: Annotated[str, typer.Option(envvar="GITHUB_TOKEN")],
        github_repository: Annotated[str, typer.Option(envvar="GITHUB_REPOSITORY")],
    ) -> None:
        print("Setting up GitHub Actions git user")
        repo = git.Repo(Path(__file__).absolute().parent.parent)
        if not repo.is_dirty(untracked_files=True):
            print("Repository is clean, no changes to commit")
            return
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/query-params-str-validations.md

    ///
    
    ## Zusätzliche Validierung { #additional-validation }
    
    Wir werden sicherstellen, dass, obwohl `q` optional ist, wann immer es bereitgestellt wird, **seine Länge 50 Zeichen nicht überschreitet**.
    
    ### `Query` und `Annotated` importieren { #import-query-and-annotated }
    
    Um dies zu erreichen, importieren Sie zuerst:
    
    * `Query` von `fastapi`
    * `Annotated` von `typing`
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  5. docs/de/docs/index.md

    ---
    
    FastAPI ist ein modernes, schnelles (hoch performantes) Webframework zur Erstellung von APIs mit Python auf Basis von Standard-Python-Typhinweisen.
    
    Seine Schlüssel-Merkmale sind:
    
    * **Schnell**: Sehr hohe Performanz, auf Augenhöhe mit **NodeJS** und **Go** (dank Starlette und Pydantic). [Eines der schnellsten verfügbaren Python-Frameworks](#performance).
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 09:39:53 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    Setting options in `include_router` still makes sense in some cases, for example, to override or increase configurations from a third party router included in an app. But in a router that is part of a bigger application, it would probably make more sense to add those settings when creating the `APIRouter`.
    
    **In `FastAPI`**
    
    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