Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Punkt (0.11 sec)

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

    
    ### Krok 2: utwórz instancję `FastAPI`
    
    ```Python hl_lines="3"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Zmienna `app` będzie tutaj "instancją" klasy `FastAPI`.
    
    Będzie to główny punkt interakcji przy tworzeniu całego interfejsu API.
    
    Ta zmienna `app` jest tą samą zmienną, do której odnosi się `uvicorn` w poleceniu:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    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)
Back to top