Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 169 for gibi (0.02 seconds)

  1. docs/tr/docs/benchmarks.md

    * **FastAPI**:
        * Starlette'in Uvicorn'u kullanıp ondan daha hızlı olamaması gibi, **FastAPI** da Starlette'i kullanır; dolayısıyla ondan daha hızlı olamaz.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4K bytes
    - Click Count (0)
  2. docs/tr/docs/advanced/custom-response.md

    Varsayılan olarak **FastAPI**, JSON response'lar döndürür.
    
    Bunu, [Doğrudan bir Response döndür](response-directly.md) bölümünde gördüğünüz gibi doğrudan bir `Response` döndürerek geçersiz kılabilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  3. docs/tr/docs/deployment/concepts.md

    * Nginx gibi bir Ingress Controller ile Kubernetes
        * Sertifika yenilemeleri için cert-manager gibi harici bir bileşenle
    * Bir cloud provider tarafından servislerinin parçası olarak içeride yönetilmesi (aşağıyı okuyun 👇)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 19.2K bytes
    - Click Count (0)
  4. docs/tr/docs/tutorial/response-status-code.md

    ///
    
    `status_code` parametresi, HTTP status code'u içeren bir sayı alır.
    
    /// info | Bilgi
    
    Alternatif olarak `status_code`, Python'un [`http.HTTPStatus`](https://docs.python.org/3/library/http.html#http.HTTPStatus)'ı gibi bir `IntEnum` da alabilir.
    
    ///
    
    Bu sayede:
    
    * Response'da o status code döner.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  5. docs/tr/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ### Dependency Gereksinimleri { #dependency-requirements }
    
    Request gereksinimleri (header'lar gibi) veya başka alt dependency'ler tanımlayabilirler:
    
    {* ../../docs_src/dependencies/tutorial006_an_py310.py hl[8,13] *}
    
    ### Exception Fırlatmak { #raise-exceptions }
    
    Bu dependency'ler, normal dependency'lerde olduğu gibi `raise` ile exception fırlatabilir:
    
    {* ../../docs_src/dependencies/tutorial006_an_py310.py hl[10,15] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  6. docs/tr/docs/advanced/response-cookies.md

    Bunu yapmak için, [Doğrudan Response Döndürme](response-directly.md) bölümünde anlatıldığı gibi bir response oluşturabilirsiniz.
    
    Sonra bunun içinde Cookie'leri set edin ve response'u döndürün:
    
    {* ../../docs_src/response_cookies/tutorial001_py310.py hl[10:12] *}
    
    /// tip
    
    `Response` parametresini kullanmak yerine doğrudan bir response döndürürseniz, FastAPI onu olduğu gibi (doğrudan) döndürür.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/dependencies/index.md

    {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[13,18] *}
    
    Fonksiyon parametrelerinde `Depends`'i `Body`, `Query` vb. ile aynı şekilde kullansanız da `Depends` biraz farklı çalışır.
    
    `Depends`'e yalnızca tek bir parametre verirsiniz.
    
    Bu parametre, bir fonksiyon gibi bir şey olmalıdır.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  8. docs/tr/docs/advanced/additional-status-codes.md

    {* ../../docs_src/additional_status_codes/tutorial001_an_py310.py hl[4,25] *}
    
    /// warning | Uyarı
    
    Yukarıdaki örnekte olduğu gibi bir `Response`'u doğrudan döndürdüğünüzde, response aynen olduğu gibi döndürülür.
    
    Bir model ile serialize edilmez, vb.
    
    İçinde olmasını istediğiniz veriyi taşıdığından emin olun ve değerlerin geçerli JSON olduğundan emin olun (eğer `JSONResponse` kullanıyorsanız).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  9. docs/tr/docs/advanced/settings.md

    ```
    
    </div>
    
    ### `Settings` nesnesini oluşturun { #create-the-settings-object }
    
    Pydantic'ten `BaseSettings` import edin ve bir alt sınıf (sub-class) oluşturun; tıpkı bir Pydantic model'inde olduğu gibi.
    
    Pydantic model'lerinde olduğu gibi, type annotation'larla (ve gerekirse default değerlerle) class attribute'ları tanımlarsınız.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  10. docs/tr/docs/tutorial/bigger-applications.md

    `APIRouter`’ı "mini bir `FastAPI`" class’ı gibi düşünebilirsiniz.
    
    Aynı seçeneklerin hepsi desteklenir.
    
    Aynı `parameters`, `responses`, `dependencies`, `tags`, vb.
    
    /// tip | İpucu
    
    Bu örnekte değişkenin adı `router`. Ancak istediğiniz gibi adlandırabilirsiniz.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 20.3K bytes
    - Click Count (0)
Back to Top