Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Metodi (1.28 sec)

  1. docs/tr/docs/index.md

    Özetlemek gerekirse, parametrelerin, gövdenin, vb. veri tiplerini fonksiyon parametreleri olarak **bir kere** tanımlıyoruz.
    
    Bu işlemi standart modern Python tipleriyle yapıyoruz.
    
    Yeni bir sözdizimi yapısını, bir kütüphane özel metod veya sınıfları öğrenmeye gerek yoktur.
    
    Hepsi sadece **Python** standartlarına dayalıdır.
    
    Örnek olarak, `int` tanımlamak için:
    
    ```Python
    item_id: int
    ```
    
    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/it/docs/index.md

    {"item_id": 5, "q": "somequery"}
    ```
    
    Hai appena creato un'API che:
    
    * Riceve richieste HTTP sui _paths_ `/` and `/items/{item_id}`.
    * Entrambi i _paths_ accettano`GET` operations (conosciuti anche come <abbr title="metodi HTTP">HTTP _methods_</abbr>).
    * Il _path_ `/items/{item_id}` ha un _path parameter_ `item_id` che deve essere un `int`.
    * Il _path_ `/items/{item_id}` ha una `str` _query parameter_ `q`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  3. docs/pl/docs/index.md

    ```JSON
    {"item_id": 5, "q": "somequery"}
    ```
    
    Właśnie stworzyłeś API które:
    
    * Otrzymuje żądania HTTP w _ścieżce_ `/` i `/items/{item_id}`.
    * Obie _ścieżki_ używają operacji `GET` (znane także jako _metody_ HTTP).
    * _Ścieżka_ `/items/{item_id}` ma _parametr ścieżki_ `item_id` który powinien być obiektem typu `int`.
    * _Ścieżka_ `/items/{item_id}` ma opcjonalny _parametr zapytania_ typu `str` o nazwie `q`.
    
    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)
Back to top