Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1961 - 1970 of 2,110 for py$ (0.01 seconds)

  1. docs/tr/docs/tutorial/encoder.md

    Bunun için `jsonable_encoder` kullanabilirsiniz.
    
    Bir Pydantic model gibi bir obje alır ve JSON ile uyumlu bir versiyonunu döndürür:
    
    {* ../../docs_src/encoder/tutorial001_py310.py hl[4,21] *}
    
    Bu örnekte, Pydantic model'i bir `dict`'e, `datetime`'ı da bir `str`'e dönüştürür.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  2. docs/tr/docs/advanced/wsgi.md

    `WSGIMiddleware`'ı `a2wsgi` paketinden import etmeniz gerekir.
    
    Ardından WSGI (örn. Flask) uygulamasını middleware ile sarmalayın.
    
    Ve sonra bunu bir path'in altına mount edin.
    
    {* ../../docs_src/wsgi/tutorial001_py310.py hl[1,3,23] *}
    
    /// note
    
    Önceden, `fastapi.middleware.wsgi` içindeki `WSGIMiddleware`'ın kullanılması öneriliyordu, ancak artık kullanımdan kaldırıldı.
    
    Bunun yerine `a2wsgi` paketini kullanmanız önerilir. Kullanım aynıdır.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  3. docs/uk/docs/advanced/wsgi.md

    Потрібно імпортувати `WSGIMiddleware` з `a2wsgi`.
    
    Потім обгорніть застосунок WSGI (напр., Flask) цим проміжним програмним забезпеченням.
    
    І змонтуйте його під певним шляхом.
    
    {* ../../docs_src/wsgi/tutorial001_py310.py hl[1,3,23] *}
    
    /// note | Примітка
    
    Раніше рекомендувалося використовувати `WSGIMiddleware` з `fastapi.middleware.wsgi`, але тепер його визнано застарілим.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  4. .gitignore

    .gradle/
    build/
    
    # vscode stuff
    .vscode/
    
    # vs stuff
    .vs/
    
    # testing stuff
    **/.local*
    .vagrant/
    /logs/
    
    # osx stuff
    .DS_Store
    
    # default folders in which the create_bwc_index.py expects to find old es versions in
    /backwards
    /dev-tools/backwards
    
    # needed in case docs build is run...maybe we can configure doc build to generate files under build?
    html_docs
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 10 23:06:44 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  5. docs/ru/docs/advanced/wsgi.md

    ///
    
    Нужно импортировать `WSGIMiddleware` из `a2wsgi`.
    
    Затем оберните WSGI‑приложение (например, Flask) в middleware (Промежуточный слой).
    
    После этого смонтируйте его на путь.
    
    {* ../../docs_src/wsgi/tutorial001_py310.py hl[1,3,23] *}
    
    /// note | Примечание
    
    Ранее рекомендовалось использовать `WSGIMiddleware` из `fastapi.middleware.wsgi`, но теперь он помечен как устаревший.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  6. docs/uk/docs/advanced/response-change-status-code.md

    Потім ви можете встановити `status_code` у цьому *тимчасовому* об'єкті відповіді.
    
    {* ../../docs_src/response_change_status_code/tutorial001_py310.py hl[1,9,12] *}
    
    Після цього ви можете повернути будь-який потрібний об'єкт, як зазвичай (`dict`, модель бази даних тощо).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/static-files.md

    ## `StaticFiles` Kullanımı { #use-staticfiles }
    
    * `StaticFiles`'ı import edin.
    * Belirli bir path'te bir `StaticFiles()` örneğini "mount" edin.
    
    {* ../../docs_src/static_files/tutorial001_py310.py hl[2,6] *}
    
    /// note | Teknik Detaylar
    
    `from starlette.staticfiles import StaticFiles` da kullanabilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  8. docs/es/docs/advanced/wsgi.md

    ///
    
    Necesitas importar `WSGIMiddleware` de `a2wsgi`.
    
    Luego envuelve la aplicación WSGI (p. ej., Flask) con el middleware.
    
    Y luego móntala bajo un path.
    
    {* ../../docs_src/wsgi/tutorial001_py310.py hl[1,3,23] *}
    
    /// note | Nota
    
    Anteriormente, se recomendaba usar `WSGIMiddleware` de `fastapi.middleware.wsgi`, pero ahora está deprecado.
    
    Se aconseja usar el paquete `a2wsgi` en su lugar. El uso sigue siendo el mismo.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 1.4K bytes
    - Click Count (0)
  9. docs/es/docs/tutorial/static-files.md

    ## Usa `StaticFiles` { #use-staticfiles }
    
    * Importa `StaticFiles`.
    * "Monta" una instance de `StaticFiles()` en un path específico.
    
    {* ../../docs_src/static_files/tutorial001_py310.py hl[2,6] *}
    
    /// note | Detalles Técnicos
    
    También podrías usar `from starlette.staticfiles import StaticFiles`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  10. docs/fr/docs/tutorial/static-files.md

    ## Utiliser `StaticFiles` { #use-staticfiles }
    
    - Importer `StaticFiles`.
    - « Mount » une instance `StaticFiles()` sur un chemin spécifique.
    
    {* ../../docs_src/static_files/tutorial001_py310.py hl[2,6] *}
    
    /// note | Détails techniques
    
    Vous pouvez également utiliser `from starlette.staticfiles import StaticFiles`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 1.9K bytes
    - Click Count (0)
Back to Top