Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for exact (0.28 sec)

  1. fastapi/security/oauth2.py

                    """
                    `username` string. The OAuth2 spec requires the exact field name
                    `username`.
                    """
                ),
            ],
            password: Annotated[
                str,
                Form(),
                Doc(
                    """
                    `password` string. The OAuth2 spec requires the exact field name
                    `password".
                    """
                ),
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 21.1K bytes
    - Viewed (1)
  2. tests/test_response_model_as_return_annotation.py

                    }
                },
                "/response_model-no_annotation-return_exact_dict": {
                    "get": {
                        "summary": "Response Model No Annotation Return Exact Dict",
                        "operationId": "response_model_no_annotation_return_exact_dict_response_model_no_annotation_return_exact_dict_get",
                        "responses": {
                            "200": {
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Aug 14 09:49:57 GMT 2023
    - 47.7K bytes
    - Viewed (0)
  3. docs/fr/docs/tutorial/path-params.md

    
    !!! check "vérifier"
        Donc, avec ces mêmes déclarations de type Python, **FastAPI** vous fournit de la validation de données.
    
        Notez que l'erreur mentionne le point exact où la validation n'a pas réussi.
    
        Ce qui est incroyablement utile au moment de développer et débugger du code qui interagit avec votre API.
    
    ## Documentation
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 10K bytes
    - Viewed (0)
  4. scripts/playwright/separate_openapi_schemas/image05.py

        context = browser.new_context(viewport={"width": 960, "height": 1080})
        page = context.new_page()
        page.goto("http://localhost:8000/docs")
        page.get_by_role("button", name="Item", exact=True).click()
        page.set_viewport_size({"width": 960, "height": 700})
        page.screenshot(
            path="docs/en/docs/img/tutorial/separate-openapi-schemas/image05.png"
        )
    
        # ---------------------
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Aug 25 19:10:22 GMT 2023
    - 829 bytes
    - Viewed (0)
  5. docs/en/docs/async.md

    It's called "asynchronous" because the computer / program doesn't have to be "synchronized" with the slow task, waiting for the exact moment that the task finishes, while doing nothing, to be able to take the task result and continue the work.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/query-params-str-validations.md

    ```
    
    Cette expression régulière vérifie que la valeur passée comme paramètre :
    
    * `^` : commence avec les caractères qui suivent, avec aucun caractère avant ceux-là.
    * `fixedquery` : a pour valeur exacte `fixedquery`.
    * `$` : se termine directement ensuite, n'a pas d'autres caractères après `fixedquery`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jul 27 18:53:21 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  7. docs/fr/docs/contributing.md

      - en: /
      - es: /es/
    - features.md
    ```
    
    * Ouvrez le fichier de configuration MkDocs pour la langue que vous éditez, par exemple :
    
    ```
    docs/es/docs/mkdocs.yml
    ```
    
    * Ajoutez-le à l'endroit exact où il se trouvait pour l'anglais, par exemple :
    
    ```YAML hl_lines="8"
    site_name: FastAPI
    # More stuff
    nav:
    - FastAPI: index.md
    - Languages:
      - en: /
      - es: /es/
    - features.md
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jul 27 18:51:07 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  8. docs/fr/docs/async.md

    Ce concept se nomme l'"asynchronisme" car l'ordinateur / le programme n'a pas besoin d'être "synchronisé" avec la tâche, attendant le moment exact où cette dernière se terminera en ne faisant rien, pour être capable de récupérer le résultat de la tâche et l'utiliser dans la suite des opérations.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 24K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/query-params-str-validations.md

        ```
    
    This specific regular expression pattern checks that the received parameter value:
    
    * `^`: starts with the following characters, doesn't have characters before.
    * `fixedquery`: has the exact value `fixedquery`.
    * `$`: ends there, doesn't have any more characters after `fixedquery`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 25.7K bytes
    - Viewed (0)
  10. docs/es/docs/tutorial/path-params.md

    !!! check "Revisa"
        Así, con la misma declaración de tipo de Python, **FastAPI** te da validación de datos.
    
        Observa que el error también muestra claramente el punto exacto en el que no pasó la validación.
    
        Esto es increíblemente útil cuando estás desarrollando y debugging código que interactúa con tu API.
    
    ## Documentación
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.4K bytes
    - Viewed (0)
Back to top