Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for instance (0.28 sec)

  1. docs/en/docs/tutorial/security/first-steps.md

        In that case, **FastAPI** also provides you with the tools to build it.
    
    When we create an instance of the `OAuth2PasswordBearer` class we pass in the `tokenUrl` parameter. This parameter contains the URL that the client (the frontend running in the user's browser) will use to send the `username` and `password` in order to get a token.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  2. docs/fr/docs/tutorial/first-steps.md

    ### Étape 2 : créer une "instance" `FastAPI`
    
    ```Python hl_lines="3"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Ici la variable `app` sera une "instance" de la classe `FastAPI`.
    
    Ce sera le point principal d'interaction pour créer toute votre API.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Sep 27 20:52:31 GMT 2023
    - 10.3K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/first-steps.md

    ### Paso 2: crea un "instance" de `FastAPI`
    
    ```Python hl_lines="3"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Aquí la variable `app` será un instance de la clase `FastAPI`.
    
    Este será el punto de interacción principal para crear todo tu API.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  4. docs/vi/docs/tutorial/first-steps.md

    ### Bước 2: Tạo một `FastAPI` "instance"
    
    ```Python hl_lines="3"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Biến `app` này là một "instance" của class `FastAPI`.
    
    Đây sẽ là điểm cốt lõi để tạo ra tất cả API của bạn.
    
    `app` này chính là điều được nhắc tới bởi `uvicorn` trong câu lệnh:
    
    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)
  5. docs/en/docs/tutorial/first-steps.md

    ### Step 2: create a `FastAPI` "instance"
    
    ```Python hl_lines="3"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Here the `app` variable will be an "instance" of the class `FastAPI`.
    
    This will be the main point of interaction to create all your API.
    
    ### Step 3: create a *path operation*
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 12K bytes
    - Viewed (0)
  6. 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.
    
    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