Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 31 for yazara (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/tr/docs/help-fastapi.md

    ## Yazara sponsor olun { #sponsor-the-author }
    
    Eğer **ürününüz/şirketiniz** **FastAPI**'ye bağlıysa veya onunla ilişkiliyse ve FastAPI kullanıcılarına ulaşmak istiyorsanız, [GitHub sponsors](https://github.com/sponsors/tiangolo) üzerinden yazara (bana) sponsor olabilirsiniz. Tier'a göre dokümantasyonda bir rozet gibi ek faydalar elde edebilirsiniz. 🎁
    
    ---
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/request-files.md

    `UploadFile` şu `async` method’lara sahiptir. Bunların hepsi altta ilgili dosya method’larını çağırır (dahili `SpooledTemporaryFile` kullanarak).
    
    * `write(data)`: Dosyaya `data` (`str` veya `bytes`) yazar.
    * `read(size)`: Dosyadan `size` (`int`) kadar byte/karakter okur.
    * `seek(offset)`: Dosyada `offset` (`int`) byte pozisyonuna gider.
        * Örn. `await myfile.seek(0)` dosyanın başına gider.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  3. docs/tr/docs/deployment/cloud.md

    Çoğu durumda, ana bulut sağlayıcıların FastAPI'yi onlarla birlikte yayınlamak için kılavuzları vardır.
    
    ## FastAPI Cloud { #fastapi-cloud }
    
    **[FastAPI Cloud](https://fastapicloud.com)**, **FastAPI**'nin arkasındaki aynı yazar ve ekip tarafından geliştirilmiştir.
    
    Bir API'yi minimum çabayla **oluşturma**, **yayınlama** ve **erişme** sürecini kolaylaştırır.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  4. docs/pt/docs/tutorial/debugging.md

    * Ir para o painel "Debug".
    * "Add configuration...".
    * Selecionar "Python"
    * Executar o depurador com a opção "`Python: Current File (Integrated Terminal)`".
    
    Em seguida, ele iniciará o servidor com seu código **FastAPI**, parará em seus pontos de interrupção, etc.
    
    Veja como pode parecer:
    
    <img src="/img/tutorial/debugging/image01.png">
    
    ---
    
    Se você usar o Pycharm, você pode:
    
    * Abrir o menu "Executar".
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  5. docs/tr/docs/deployment/fastapicloud.md

    ```
    
    </div>
    
    Hepsi bu! Artık uygulamanıza o URL üzerinden erişebilirsiniz. ✨
    
    ## FastAPI Cloud Hakkında { #about-fastapi-cloud }
    
    **[FastAPI Cloud](https://fastapicloud.com)**, **FastAPI**'nin arkasındaki aynı yazar ve ekip tarafından geliştirilmiştir.
    
    Bir API'yi minimum eforla **geliştirme**, **deploy etme** ve **erişilebilir kılma** sürecini sadeleştirir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/background-tasks.md

    Request’te bir query varsa, log’a bir arka plan göreviyle yazılır.
    
    Ardından *path operation function* içinde oluşturulan başka bir arka plan görevi, `email` path parametresini kullanarak bir mesaj yazar.
    
    ## Teknik Detaylar { #technical-details }
    
    `BackgroundTasks` sınıfı doğrudan [`starlette.background`](https://www.starlette.dev/background/)’dan gelir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 5K bytes
    - Click Count (0)
  7. docs/es/docs/advanced/websockets.md

    {* ../../docs_src/websockets_/tutorial003_py310.py hl[79:81] *}
    
    Para probarlo:
    
    * Abre la aplicación con varias pestañas del navegador.
    * Escribe mensajes desde ellas.
    * Luego cierra una de las pestañas.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  8. docs/es/docs/tutorial/middleware.md

    Para crear un middleware usas el decorador `@app.middleware("http")` encima de una función.
    
    La función middleware recibe:
    
    * La `request`.
    * Una función `call_next` que recibirá la `request` como parámetro.
        * Esta función pasará la `request` a la correspondiente *path operation*.
        * Luego devuelve la `response` generada por la correspondiente *path operation*.
    * Puedes entonces modificar aún más la `response` antes de devolverla.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  9. docs/tr/docs/tutorial/body-multiple-params.md

    `item` daha öncekiyle aynı şekilde tanımlanmış olsa bile, artık body içinde `item` anahtarı altında gelmesi beklenir.
    
    ///
    
    **FastAPI**, request'ten otomatik dönüşümü yapar; böylece `item` parametresi kendi içeriğini alır, `user` için de aynı şekilde olur.
    
    Birleşik verinin validasyonunu yapar ve OpenAPI şeması ile otomatik dokümantasyonda da bunu bu şekilde dokümante eder.
    
    ## Body içinde tekil değerler { #singular-values-in-body }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  10. docs/es/docs/tutorial/dependencies/sub-dependencies.md

    Y guardará el valor devuelto en un <dfn title="Una utilidad/sistema para almacenar valores calculados/generados, para reutilizarlos en lugar de calcularlos nuevamente.">"caché"</dfn> y lo pasará a todos los "dependants" que lo necesiten en ese request específico, en lugar de llamar a la dependencia varias veces para el mismo request.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:41:41 GMT 2026
    - 3.9K bytes
    - Click Count (0)
Back to Top