django-eventstream
django-eventstream copied to clipboard
Server-Sent Events for Django
Bumps [django](https://github.com/django/django) from 3.2.14 to 3.2.15. Commits 653a7bd [3.2.x] Bumped version for 3.2.15 release. b3e4494 [3.2.x] Fixed CVE-2022-36359 -- Escaped filename in Content-Disposition header. cb7fbac [3.2.x] Fixed collation tests on...
Bumps [django](https://github.com/django/django) from 3.2.14 to 3.2.15. Commits 653a7bd [3.2.x] Bumped version for 3.2.15 release. b3e4494 [3.2.x] Fixed CVE-2022-36359 -- Escaped filename in Content-Disposition header. cb7fbac [3.2.x] Fixed collation tests on...
Hello, I've been stuck with send_event function. my backend is generating image frames after processing a video, I want to send these frames directly to frontend. but I tried using...
Fixes #93
Is there a reason to not use a single delete statement when [trimming the event log](https://github.com/fanout/django-eventstream/blob/d09bcd95c1476463803b1265be606f4eae40c6fa/django_eventstream/storage.py#L114)? The code creates a query for every single event that needs to be deleted....
Hey, I'm trying to implement SSE notifications endpoint . I have the routing setup as follows: ```py # asgi.py application = ProtocolTypeRouter({ "http": URLRouter( [ re_path(r"", get_asgi_application()), re_path( r"^notifications/(?P0x[0-9A-Fa-f]+)/$", URLRouter(django_eventstream.routing.urlpatterns),...
I noticed that while working with django_eventstream send_event it prevents other activities from continuing even the loading of a new page. How can i get the django_eventstream to respond to...
In my web application, the Frontend needs to send **multiple custom headers** (Ex. **username**, **userid**, **pagename**, etc.) for authorization & other use cases. The Normal Rest Api (GET, POST) communication...
There are a lot of [examples of using django-eventstream with django-rest-framework (DRF) views](https://github.com/search?q=rest_framework+eventstream&type=code). I wonder if would be acceptable to contribute an example into [`examples/`](https://github.com/fanout/django-eventstream/tree/master/examples) which explains how to do...
When ssl was implemented on our platform, it stopped receiving events. We've used channels and daphne `daphne app4gives.asgi:application` to run our application