Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ta (0.14 sec)

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

    ```
    
    Burada `app` değişkeni `FastAPI` sınıfının bir örneği olacaktır.
    
    Bu, tüm API'yı oluşturmak için ana etkileşim noktası olacaktır.
    
    Bu `app` değişkeni, `uvicorn` komutunda atıfta bulunulan değişkenin ta kendisidir.
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Feb 08 13:10:55 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  2. docs/pl/docs/tutorial/first-steps.md

    Na wyjściu znajduje się linia z czymś w rodzaju:
    
    ```hl_lines="4"
    INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    Ta linia pokazuje adres URL, pod którym Twoja aplikacja jest obsługiwana, na Twoim lokalnym komputerze.
    
    ### Sprawdź to
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  3. docs/vi/docs/tutorial/first-steps.md

    * `POST`: để tạo dữ liệu.
    * `GET`: để đọc dữ liệu.
    * `PUT`: để cập nhật dữ liệu.
    * `DELETE`: để xóa dữ liệu.
    
    Do đó, trong OpenAPI, mỗi phương thức HTTP được gọi là một "toán tử (operation)".
    
    Chúng ta cũng sẽ gọi chúng là "**các toán tử**".
    
    #### Định nghĩa moojt *decorator cho đường dẫn toán tử*
    
    ```Python hl_lines="6"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Sep 02 15:44:17 GMT 2023
    - 11.2K bytes
    - Viewed (0)
Back to top