Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for stream_story (1.17 seconds)

  1. docs_src/stream_data/tutorial001_py310.py

    Morty: Ow! Ow! You're tugging me too hard!
    Rick: We gotta go, gotta get outta here, come on. Got a surprise for you Morty.
    """
    
    
    @app.get("/story/stream", response_class=StreamingResponse)
    async def stream_story() -> AsyncIterable[str]:
        for line in message.splitlines():
            yield line
    
    
    @app.get("/story/stream-no-async", response_class=StreamingResponse)
    def stream_story_no_async() -> Iterable[str]:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 27 18:56:47 GMT 2026
    - 2.2K bytes
    - Click Count (0)
Back to Top