- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Documentation for Django 3.1关于异步 View 是这样说的:
The main benefits are the ability to service hundreds of connections without using Python threads. This allows you to use slow streaming, long-polling, and other exciting response types.
async def stream(request):
async def event_stream():
while True:
yield 'data: The server time is: %s\n\n' % datetime.datetime.now()
await asyncio.sleep(1)
return StreamingHttpResponse(event_stream(), content_type='text/event-stream')
(注意:我改编了来自
this response 的代码)
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/asgiref/sync.py", line 330, in thread_handler
raise exc_info[1]
File "/usr/local/lib/python3.7/site-packages/django/core/handlers/exception.py", line 38, in inner
response = await get_response(request)
File "/usr/local/lib/python3.7/site-packages/django/core/handlers/base.py", line 231, in _get_response_async
response = await wrapped_callback(request, *callback_args, **callback_kwargs)
File "./chat/views.py", line 144, in watch
return StreamingHttpResponse(event_stream(), content_type='text/event-stream')
File "/usr/local/lib/python3.7/site-packages/django/http/response.py", line 367, in __init__
self.streaming_content = streaming_content
File "/usr/local/lib/python3.7/site-packages/django/http/response.py", line 382, in streaming_content
self._set_streaming_content(value)
File "/usr/local/lib/python3.7/site-packages/django/http/response.py", line 386, in _set_streaming_content
self._iterator = iter(value)
TypeError: 'async_generator' object is not iterable
对我来说,这表明
StreamingHttpResponse
目前不支持异步生成器。
StreamingHttpResponse
使用
async for
但我无能为力。
最佳答案
老实说,Django 本身并不支持它,但我有一个使用 Daphne(也在 Django channel 中使用)的解决方案。
创建自己的 StreamingHttpResponse
能够从异步方法中检索数据流并将其提供给 Django 的同步部分的类。
import asyncio
# By design asyncio does not allow its event loop to be nested.
# Trying to do so will give the error "RuntimeError: This event loop is already running".
# This library solves that problem.
import nest_asyncio
from django.http.response import StreamingHttpResponse
class AsyncStreamingHttpResponse(StreamingHttpResponse):
def __init__(self, streaming_content=(), *args, **kwargs):
sync_streaming_content = self.get_sync_iterator(streaming_content)
super().__init__(streaming_content=sync_streaming_content, *args, **kwargs)
@staticmethod
async def convert_async_iterable(stream):
"""Accepts async_generator and async_iterator"""
return iter([chunk async for chunk in stream])
def get_sync_iterator(self, async_iterable):
nest_asyncio.apply()
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
result = loop.run_until_complete(self.convert_async_iterable(async_iterable))
return result
此外,您需要使用
Daphne 运行您的 Django 网络服务器。正确支持服务器发送事件 (SSE)。它得到“Django 软件基金会”的官方支持,语法与
gunicorn
相似。 ,但使用
asgi.py
而不是
wsgi.py
.
pip install daphne
并更改命令:
python manage.py runserver
类似于:
daphne -b 0.0.0.0 -p 8000 sse_demo.asgi:application
.
gunicorn
.
关于python - Django 3.1 : StreamingHttpResponse with an async generator,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63316840/
Django 1.5 刚刚发布,它提供了 StreamingHttpResponse。现在,我已阅读 this discussion第二个答案实际上是在页面中打印出流(实际上只是数据)。 我想要做的是
当使用 StreamingHttpResponse 时文件下载完成时,我在跟踪时遇到问题。我的意图是在用户下载文件后将其删除。 执行以下操作会在终止服务器的终端中返回异常。 def down(requ
我正在使用 Django 的 StreamingHttpResponse 动态传输大型 CSV 文件。根据the docs ,迭代器被传递给响应的 streaming_content 参数: impo
挣扎于此...我正在尝试使用 StreamingHttpResponse 输出数据的 csv。文件本身构造良好,但由于某种原因,文件名在不同浏览器中设置不正确。我正在使用带有自定义 csv 渲染器的
我有简单的 Django View ,用于从 Amazon s3 下载文件。本地保存文件测试没问题: def some_view(request): res = s3.get_object(.
我想用 django 连接到内部 http 服务,我需要缓冲这些服务的 http 响应的输出,因为有些内容非常大。 我正在使用 python 3.6、django 2.0、http.client 和以
如果我实现 StreamingHttpResponse as shown here ,直到 10 秒结束后才会显示“流媒体”响应。 djangoproject的资料不多除了说它对于生成大型 CSV 文
我有一个可能很大的查询集,我不想加载到内存中。这是一条自定义 SQL 语句。 django.http.StreamingHttpResponse 采用 iterator(生成器)参数。为避免将所有内容
我需要提供从大 wav 文件实时创建的 ogg 文件。 我可以发送内容,但我不知道为什么将数据的可变长度指示给 StreamingHttpResponse。 这是我的代码: class OggAudi
所以我面临的问题是尝试让我们的网络服务器导出到 CSV 按钮正常工作,一个要求是文件不能保存在本地,必须直接流式传输到客户端。目前,我只是尝试从服务器获取一个基本的 CSV 文件流式传输并保存在本地计
我的 django 服务器以 jpeg 流的形式提供视频源,一次一帧。 看起来像这样: class VideoCamera(): def __init__(self): # c
当我使用 StreamingHttpResponse 时,我试图在前端向用户显示处理状态。 我能够获得当前状态,但它被附加到前一个状态。 我希望响应模板仅包含当前产量。 views.py from d
由于每个问题最好有一个问题,如果与 another my question 的另一部分相似,请耐心等待与同一项目相关。 情况: 我有一个 html 表单,我可以在其中设置一个数字,当它被提交时,它是调
如果您有 StreamingHttpResponse从 Django View 返回,它何时返回任何数据库连接到池?如果默认情况下它会执行一次 StreamingHttpResponse已经完成,有没
Documentation for Django 3.1关于异步 View 是这样说的: The main benefits are the ability to service hundreds o
我有一个简单的应用程序,它使用打开的 cv 和 wsgi 中设置的服务器流式传输图像。但是每当我将 Django channel 引入图片并将 WSGI 更改为 ASGI 时,流媒体就会停止。如何从
我有一个大型数据集,我必须为其生成 CSV 和 PDF。对于 CSV,我使用本指南:https://docs.djangoproject.com/en/3.1/howto/outputting-csv
我有一个标准的 DRF 网络应用程序,可以为其中一条路线输出 CSV 数据。呈现整个 CSV 表示需要一段时间才能完成。数据集非常大,所以我想要一个流式 HTTP 响应,这样客户端就不会超时。 但是使
我将我的文件以 base64 格式保存在数据库中,然后尝试使用 Django View 呈现它。 file_obj = AttachmentData.objects.filter(id=file_id
我是一名优秀的程序员,十分优秀!