Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for cream (0.2 sec)

  1. docs/es/docs/benchmarks.md

        * Pero te proporciona las herramientas para crear aplicaciones web simples, con <abbr title="también conocido en español como: enrutamiento">routing</abbr> basado en <abbr title="tambien conocido en español como: rutas">paths</abbr>, etc.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Feb 07 11:39:50 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/body-fields.md

    ```
    
    `Field` funciona da mesma forma que `Query`, `Path` e `Body`, ele possui todos os mesmos parâmetros, etc.
    
    !!! note "Detalhes técnicos"
        Na realidade, `Query`, `Path` e outros que você verá em seguida, criam objetos de subclasses de uma classe `Param` comum, que é ela mesma uma subclasse da classe `FieldInfo` do Pydantic.
    
        E `Field` do Pydantic retorna uma instância de `FieldInfo` também.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jul 02 15:00:11 GMT 2021
    - 2.2K bytes
    - Viewed (0)
  3. docs/es/docs/advanced/response-directly.md

    # Devolver una respuesta directamente
    
    Cuando creas una *operación de path* normalmente puedes devolver cualquier dato: un `dict`, una `list`, un modelo Pydantic, un modelo de base de datos, etc.
    
    Por defecto, **FastAPI** convertiría automáticamente ese valor devuelto a JSON usando el `jsonable_encoder` explicado en [Codificador Compatible JSON](../tutorial/encoder.md){.internal-link target=_blank}.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Jan 13 11:57:27 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  4. docs/it/docs/index.md

    <div class="termy">
    
    ```console
    $ pip install uvicorn[standard]
    
    ---> 100%
    ```
    
    </div>
    
    ## Esempio
    
    ### Crea un file
    
    * Crea un file `main.py` con:
    
    ```Python
    from fastapi import FastAPI
    from typing import Optional
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    sleep you've had!'
    
      `Oh, I've had such a curious dream!' said Alice, and she told
    her sister, as well as she could remember them, all these strange
    Adventures of hers that you have just been reading about; and
    when she had finished, her sister kissed her, and said, `It WAS a
    curious dream, dear, certainly:  but now run in to your tea; it's
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  6. docs/es/docs/index.md

    * **Corto**: Minimiza la duplicación de código. Múltiples funcionalidades con cada declaración de parámetros. Menos errores.
    * **Robusto**: Crea código listo para producción con documentación automática interactiva.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 19K bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg syscall (darwin-386), const CFLUSH ideal-int
    pkg syscall (darwin-386), const CLOCAL = 32768
    pkg syscall (darwin-386), const CLOCAL ideal-int
    pkg syscall (darwin-386), const CREAD = 2048
    pkg syscall (darwin-386), const CREAD ideal-int
    pkg syscall (darwin-386), const CS5 = 0
    pkg syscall (darwin-386), const CS5 ideal-int
    pkg syscall (darwin-386), const CS6 = 256
    pkg syscall (darwin-386), const CS6 ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  8. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const BRKINT ideal-int
    pkg syscall (freebsd-386-cgo), const CFLUSH ideal-int
    pkg syscall (freebsd-386-cgo), const CLOCAL ideal-int
    pkg syscall (freebsd-386-cgo), const CREAD ideal-int
    pkg syscall (freebsd-386-cgo), const CS5 ideal-int
    pkg syscall (freebsd-386-cgo), const CS6 ideal-int
    pkg syscall (freebsd-386-cgo), const CS7 ideal-int
    pkg syscall (freebsd-386-cgo), const CS8 ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  9. docs/en/docs/release-notes.md

    * 🌐 Add Chinese translation for `docs/zh/docs/learn/index.md`. PR [#10479](https://github.com/tiangolo/fastapi/pull/10479) by [@KAZAMA-DREAM](https://github.com/KAZAMA-DREAM).
    * 🌐 Add Russian translation for `docs/ru/docs/learn/index.md`. PR [#10539](https://github.com/tiangolo/fastapi/pull/10539) by [@AlertRED](https://github.com/AlertRED).
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  10. docs/es/docs/tutorial/path-params.md

    ### Crea una clase `Enum`
    
    Importa `Enum` y crea una sub-clase que herede desde `str` y desde `Enum`.
    
    Al heredar desde `str` la documentación de la API podrá saber que los valores deben ser de tipo `string` y podrá mostrarlos correctamente.
    
    Luego crea atributos de clase con valores fijos, que serán los valores disponibles válidos:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.4K bytes
    - Viewed (0)
Back to top