Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Pushto (0.23 sec)

  1. docs/it/docs/index.md

        * Tutto questo funzionerebbe anche con oggetti JSON più complessi.
    * Convertirà *da* e *a* JSON automaticamente.
    * Documenterà tutto con OpenAPI, che può essere usato per:
        * Sistemi di documentazione interattivi.
        * Sistemi di generazione di codice dal lato client, per molti linguaggi.
    * Fornirà 2 interfacce di documentazione dell'API interattive.
    
    ---
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    * Upgrade Starlette version to `0.13.4`. PR [#1361](https://github.com/tiangolo/fastapi/pull/1361) by [@rushton](https://github.com/rushton).
    * Improve error handling and feedback for requests with invalid JSON. PR [#1354](https://github.com/tiangolo/fastapi/pull/1354) by [@aviramha](https://github.com/aviramha).
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
  3. docs/es/docs/tutorial/first-steps.md

    #### Define un *decorador de operaciones de path*
    
    ```Python hl_lines="6"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    El `@app.get("/")` le dice a **FastAPI** que la función que tiene justo debajo está a cargo de manejar los requests que van a:
    
    * el path `/`
    * usando una <abbr title="an HTTP GET method">operación <code>get</code></abbr>
    
    !!! info "Información sobre `@decorator`"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.9K bytes
    - Viewed (0)
Back to top