当前位置:   article > 正文

python 后端接口流式输出内容_python streamingresponse

python streamingresponse

python 后端流式返回结果代码案例

  1. from fastapi import FastAPI
  2. from fastapi.responses import StreamingResponse
  3. app = FastAPI()
  4. @app.get("/items/{item_id}")
  5. async def read_item(item_id: int):
  6. async def stream_data():
  7. for i in range(100):
  8. yield f"data:{i}\n\n" # 使用yield发送数据
  9. return StreamingResponse(stream_data()) # 返回StreamingResponse对象

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/689823
推荐阅读
相关标签
  

闽ICP备14008679号