Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for model (0.17 sec)

  1. docs/tr/docs/index.md

    Hepsi sadece **Python** standartlarına dayalıdır.
    
    Örnek olarak, `int` tanımlamak için:
    
    ```Python
    item_id: int
    ```
    
    ya da daha kompleks herhangi bir python modelini tanımlayabiliriz, örneğin `Item` modeli için:
    
    ```Python
    item: Item
    ```
    
    ...ve sadece kısa bir parametre tipi belirterek elde ettiklerimiz:
    
    * Editör desteğiyle birlikte:
        * Otomatik tamamlama.
        * Tip kontrolü.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 21.9K bytes
    - Viewed (0)
  2. docs/hu/docs/index.md

    ```
    
    </div>
    
    <details markdown="1">
    <summary>A parancsról <code>uvicorn main:app --reload</code>...</summary>
    
    A `uvicorn main:app` parancs a következőre utal:
    
    * `main`: fájl `main.py` (a Python "modul").
    * `app`: a `main.py`-ban a `app = FastAPI()` sorral létrehozott objektum.
    * `--reload`: kód változtatás esetén újra indítja a szervert. Csak fejlesztés közben használandó.
    
    </details>
    
    ### Ellenőrizd
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  3. docs/es/docs/index.md

    No tienes que aprender una sintaxis nueva, los métodos o clases de una library específica, etc.
    
    Solo **Python** estándar.
    
    Por ejemplo, para un `int`:
    
    ```Python
    item_id: int
    ```
    
    o para un modelo más complejo de `Item`:
    
    ```Python
    item: Item
    ```
    
    ...y con esa única declaración obtienes:
    
    * Soporte del editor incluyendo:
        * Auto completado.
        * Anotaciones de tipos.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 19K bytes
    - Viewed (0)
  4. docs/en/docs/index.md

     ╭────────── FastAPI CLI - Development mode ───────────╮
     │                                                     │
     │  Serving at: http://127.0.0.1:8000                  │
     │                                                     │
     │  API docs: http://127.0.0.1:8000/docs               │
     │                                                     │
     │  Running in development mode, for production use:   │
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  5. docs/pl/docs/index.md

        * Przetwarzanie Pythonowych typów (`str`, `int`, `float`, `bool`, `list`, itp).
        * Obiekty `datetime`.
        * Obiekty `UUID`.
        * Modele baz danych.
        * ...i wiele więcej.
    * Automatyczne interaktywne dokumentacje API, wliczając 2 alternatywne interfejsy użytkownika:
        * Swagger UI.
        * ReDoc.
    
    ---
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/security/index.md

    ## **FastAPI** Tools
    
    FastAPI stellt für jedes dieser Sicherheitsschemas im Modul `fastapi.security` verschiedene Tools bereit, die die Verwendung dieser Sicherheitsmechanismen vereinfachen.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 18:09:35 GMT 2024
    - 5K bytes
    - Viewed (0)
  7. docs/de/docs/index.md

    </div>
    
    <details markdown="1">
    <summary>Was macht der Befehl <code>uvicorn main:app --reload</code> ...</summary>
    
    Der Befehl `uvicorn main:app` bezieht sich auf:
    
    * `main`: die Datei `main.py` (das Python-„Modul“).
    * `app`: das Objekt, das innerhalb von `main.py` mit der Zeile `app = FastAPI()` erzeugt wurde.
    * `--reload`: lässt den Server nach Codeänderungen neu starten. Tun Sie das nur während der Entwicklung.
    
    </details>
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  8. docs/vi/docs/index.md

    Chỉ cần sử dụng các chuẩn của **Python**.
    
    Ví dụ, với một tham số kiểu `int`:
    
    ```Python
    item_id: int
    ```
    
    hoặc với một model `Item` phức tạp hơn:
    
    ```Python
    item: Item
    ```
    
    ...và với định nghĩa đơn giản đó, bạn có được:
    
    * Sự hỗ trợ từ các trình soạn thảo, bao gồm:
        * Completion.
        * Kiểm tra kiểu dữ liệu.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 21.9K bytes
    - Viewed (0)
  9. docs/az/docs/index.md

    Sadəcə standart **Python**.
    
    Məsələn, `int` üçün:
    
    ```Python
    item_id: int
    ```
    
    və ya daha mürəkkəb `Item` modeli üçün:
    
    ```Python
    item: Item
    ```
    
    ...və yalnız parametr tipini təyin etməklə bunları əldə edirsiniz:
    
    * Redaktor dəstəyi ilə:
        * Avtomatik tamamlama.
        * Tip yoxlanması.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 22.8K bytes
    - Viewed (0)
Back to top