Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Luna (0.15 sec)

  1. docs/es/docs/tutorial/first-steps.md

    ```Python hl_lines="7"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Esto es una función de Python.
    
    Esta función será llamada por **FastAPI** cada vez que reciba un request en la URL "`/`" usando una operación `GET`.
    
    En este caso es una función `async`.
    
    ---
    
    También podrías definirla como una función estándar en lugar de `async def`:
    
    ```Python hl_lines="7"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  2. docs/es/docs/async.md

    * el contenido de un archivo en disco para ser leído por el sistema y entregado al programa
    * los contenidos que tu programa da al sistema para ser escritos en disco
    * una operación relacionada con una API remota
    * una operación de base de datos
    * el retorno de resultados de una consulta de base de datos
    * etc.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  3. docs/it/docs/index.md

    ### Riepilogo
    
    Ricapitolando, è sufficiente dichiarare **una sola volta** i tipi dei parametri, del body, ecc. come parametri di funzioni.
    
    Questo con le annotazioni per i tipi standard di Python.
    
    Non c'è bisogno di imparare una nuova sintassi, metodi o classi specifici a una libreria, ecc.
    
    È normalissimo **Python 3.6+**.
    
    Per esempio, per un `int`:
    
    ```Python
    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)
  4. docs/tr/docs/features.md

    **FastAPI** sana bunları sağlıyor
    
    ### Açık standartları temel alır
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  5. docs/es/docs/index.md

    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png)
    
    ### Resumen
    
    En resumen, declaras los tipos de parámetros, body, etc. **una vez** como parámetros de la función.
    
    Lo haces con tipos modernos estándar de Python.
    
    No tienes que aprender una sintaxis nueva, los métodos o clases de una library específica, etc.
    
    Solo **Python 3.8+** estándar.
    
    Por ejemplo, para un `int`:
    
    ```Python
    item_id: int
    ```
    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)
  6. docs/es/docs/features.md

    * Diseñado alrededor de estos estándares después de un estudio meticuloso. En vez de ser una capa añadida a último momento.
    * Esto también permite la **generación automática de código de cliente** para muchos lenguajes.
    
    ### Documentación automática
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  7. docs/tr/docs/tutorial/path-params.md

    ## Veri Doğrulama
    
    Eğer tarayıcınızda <a href="http://127.0.0.1:8000/items/foo" class="external-link" target="_blank">http://127.0.0.1:8000/items/foo</a> sayfasını açarsanız, şuna benzer güzel bir HTTP hatası ile karşılaşırsınız:
    
    ```JSON
    {
      "detail": [
        {
          "type": "int_parsing",
          "loc": [
            "path",
            "item_id"
          ],
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  8. docs/tr/docs/async.md

    * sonuçları döndürmek için bir veritabanı sorgusu
    * vb.
    
    Yürütme süresi çoğunlukla  <abbr title="Input ve Output (Giriş ve Çıkış)">I/O</abbr> işlemleri beklenerek tüketildiğinden bunlara "I/O bağlantılı" işlemler denir.
    
    Buna "asenkron" denir, çünkü bilgisayar/program yavaş görevle "senkronize" olmak zorunda değildir, görevin tam olarak biteceği anı bekler, hiçbir şey yapmadan, görev sonucunu alabilmek ve çalışmaya devam edebilmek için .
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 21.9K bytes
    - Viewed (0)
  9. docs/az/docs/index.md

    İndi aşağıdakı sətri dəyişdirməyə çalışın:
    
    ```Python
        return {"item_name": item.name, "item_id": item_id}
    ```
    
    ...bundan:
    
    ```Python
            ... "item_name": item.name ...
    ```
    
    ...buna:
    
    ```Python
            ... "item_price": item.price ...
    ```
    
    ...və redaktorun məlumat tiplərini bildiyini və avtomatik tamaladığını görəcəksiniz:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  10. docs/tr/docs/alternatives.md

    !!! check "**FastAPI**'a nasıl ilham verdi?"
        * Basit ve sezgisel bir API'ya sahip olmalı.
        * HTTP metot isimlerini (işlemlerini) anlaşılır olacak bir şekilde, direkt kullanmalı.
        * Mantıklı varsayılan değerlere ve buna rağmen güçlü bir özelleştirme desteğine sahip olmalı.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 28.8K bytes
    - Viewed (0)
Back to top