Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 127 for yaha (0.12 seconds)

  1. docs/tr/docs/advanced/async-tests.md

    `TestClient`, [HTTPX](https://www.python-httpx.org) tabanlıdır ve neyse ki API'yi test etmek için HTTPX'i doğrudan kullanabiliriz.
    
    ## Örnek { #example }
    
    Basit bir örnek için, [Daha Büyük Uygulamalar](../tutorial/bigger-applications.md) ve [Test Etme](../tutorial/testing.md) bölümlerinde anlatılana benzer bir dosya yapısı düşünelim:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/security/get-current-user.md

    Bir `get_current_user` dependency'si oluşturalım.
    
    Dependency'lerin alt dependency'leri olabileceğini hatırlıyor musunuz?
    
    `get_current_user`, daha önce oluşturduğumuz `oauth2_scheme` ile aynı dependency'yi kullanacak.
    
    Daha önce *path operation* içinde doğrudan yaptığımız gibi, yeni dependency'miz `get_current_user`, alt dependency olan `oauth2_scheme` üzerinden `str` olarak bir `token` alacak:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  3. docs/tr/docs/advanced/testing-websockets.md

    Bunun için `TestClient`'ı bir `with` ifadesinde kullanarak WebSocket'e bağlanırsınız:
    
    {* ../../docs_src/app_testing/tutorial002_py310.py hl[27:31] *}
    
    /// note | Not
    
    Daha fazla detay için Starlette'in [WebSockets'i test etme](https://www.starlette.dev/testclient/#testing-websocket-sessions) dokümantasyonuna bakın.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 455 bytes
    - Click Count (0)
  4. docs/tr/docs/about/index.md

    # Hakkında { #about }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 31 18:32:27 GMT 2026
    - 94 bytes
    - Click Count (0)
  5. docs/tr/docs/advanced/events.md

    Muhtemelen bu bölümü atlayabilirsiniz.
    
    ///
    
    *startup* ve *shutdown* sırasında çalıştırılacak bu mantığı tanımlamanın alternatif bir yolu daha vardır.
    
    Uygulama başlamadan önce veya uygulama kapanırken çalıştırılması gereken event handler’ları (fonksiyonları) tanımlayabilirsiniz.
    
    Bu fonksiyonlar `async def` ile veya normal `def` ile tanımlanabilir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/bigger-applications.md

    # Daha Büyük Uygulamalar - Birden Fazla Dosya { #bigger-applications-multiple-files }
    
    Bir uygulama veya web API geliştirirken, her şeyi tek bir dosyaya sığdırabilmek nadirdir.
    
    **FastAPI**, tüm esnekliği korurken uygulamanızı yapılandırmanıza yardımcı olan pratik bir araç sunar.
    
    /// info | Bilgi
    
    Flask'ten geliyorsanız, bu yapı Flask'in Blueprints'ine denk gelir.
    
    ///
    
    ## Örnek Bir Dosya Yapısı { #an-example-file-structure }
    
    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)
  7. docs/tr/docs/how-to/custom-request-and-route.md

    `scope` `dict`'i ve `receive` fonksiyonu, ASGI spesifikasyonunun parçalarıdır.
    
    Ve bu iki şey, `scope` ve `receive`, yeni bir `Request` instance'ı oluşturmak için gerekenlerdir.
    
    `Request` hakkında daha fazla bilgi için [Starlette'ın Request dokümantasyonu](https://www.starlette.dev/requests/) bölümüne bakın.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  8. docs/tr/docs/features.md

    ![editor support](https://fastapi.tiangolo.com/img/vscode-completion.png)
    
    * [PyCharm](https://www.jetbrains.com/pycharm/) ile:
    
    ![editor support](https://fastapi.tiangolo.com/img/pycharm-completion.png)
    
    Daha önce imkânsız olduğunu düşünebileceğiniz yerlerde bile tamamlama alırsınız. Örneğin, bir request’ten gelen (iç içe de olabilir) JSON body içindeki `price` anahtarı için.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  9. docs/tr/docs/tutorial/dependencies/global-dependencies.md

    ## *Path operations* grupları için Dependencies { #dependencies-for-groups-of-path-operations }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.1K bytes
    - Click Count (0)
  10. docs/tr/docs/tutorial/dependencies/classes-as-dependencies.md

    # Dependency Olarak Class'lar { #classes-as-dependencies }
    
    **Dependency Injection** sistemine daha derinlemesine geçmeden önce, bir önceki örneği geliştirelim.
    
    ## Önceki Örnekten Bir `dict` { #a-dict-from-the-previous-example }
    
    Önceki örnekte, dependency'mizden ("dependable") bir `dict` döndürüyorduk:
    
    {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[9] *}
    
    Ama sonra *path operation function* içindeki `commons` parametresinde bir `dict` alıyoruz.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 7.3K bytes
    - Click Count (0)
Back to Top