Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for StreamingResponse (0.06 sec)

  1. docs/ko/docs/advanced/custom-response.md

    ### `StreamingResponse`
    
    비동기 제너레이터 또는 일반 제너레이터/이터레이터를 받아 응답 본문을 스트리밍 합니다.
    
    {* ../../docs_src/custom_response/tutorial007.py hl[2,14] *}
    
    #### 파일과 같은 객체를 사용한 `StreamingResponse`
    
    파일과 같은 객체(예: `open()`으로 반환된 객체)가 있는 경우, 해당 파일과 같은 객체를 반복(iterate)하는 제너레이터 함수를 만들 수 있습니다.
    
    이 방식으로, 파일 전체를 메모리에 먼저 읽어들일 필요 없이, 제너레이터 함수를 `StreamingResponse`에 전달하여 반환할 수 있습니다.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Feb 15 11:21:20 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  2. docs/pt/docs/advanced/custom-response.md

    ### `StreamingResponse` { #streamingresponse }
    
    Recebe um gerador assíncrono ou um gerador/iterador comum e retorna o corpo da resposta de forma contínua (stream).
    
    {* ../../docs_src/custom_response/tutorial007_py39.py hl[2,14] *}
    
    #### Utilizando `StreamingResponse` com objetos semelhantes a arquivos { #using-streamingresponse-with-file-like-objects }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    This change also meant that if you returned a `StreamingResponse`, the exit code of the dependency with `yield` would have been already run.
    
    For example, if you had a database session in a dependency with `yield`, the `StreamingResponse` would not be able to use that session while streaming data because the session would have already been closed in the exit code after `yield`.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
Back to top