Connecting to remote host like Twitch to monitor chat using websockets

2018-07-23 Thread Dave Holly
Greetings, Is it possible to use Django Channels and websockets to monitor the chat in twitch rooms, or other sites with chat rooms? I would like to display extra graphics for users who send cheers of high amounts, like 1000, 2000, etc. I have the display worked out in Django where I&#

Re: Websockets... again

2014-10-30 Thread Justin Holmes
Luis, I think what Alex and Aymeric are saying is that "websockets" (I use quotes to show that I mean not only the material outlined in RFC 6455 but also the general process of handling bytes-on-the-wire when 'pushing' data to the 'client') are ideally not part o

Re: Websockets... again

2014-10-29 Thread Alex Gaynor
t with asyncio? > > 2014-10-28 22:47 GMT+01:00 Aymeric Augustin < > aymeric.augus...@polytechnique.org>: > >> No, there isn’t. >> >> I assume that “including in core” means at least “making usable in >> combination with WSGI and with the ORM”. >> >&g

Re: Websockets... again

2014-10-29 Thread Collin Anderson
Hi Luis, There is some work on making a WSGI2 that would include support for http/2 and likely websockets too. That would likely need to happen first or at the same time. https://github.com/python-web-sig/wsgi-ng You could also check out a project called "hendrix" which supp

Re: Websockets... again

2014-10-29 Thread Aymeric Augustin
’t. >> >> I assume that “including in core” means at least “making usable in >> combination with WSGI and with the ORM”. >> >> Even if we disregard for a minute the fact that WSGI is incompatible with >> websockets, the ORM is a hard problem, because current solution

Re: Websockets... again

2014-10-29 Thread Florian Apolloner
On Tuesday, October 28, 2014 11:37:15 PM UTC+1, mpaolini wrote: > > What if we do it with asyncio? > It is 3.4 only, WSGI still has no support for Websockets and the API would change drastically… -- You received this message because you are subscribed to the Google Groups

Re: Websockets... again

2014-10-28 Thread Marco Paolini
rd for a minute the fact that WSGI is incompatible with > websockets, the ORM is a hard problem, because current solutions involve > either (a) threads — not particularly scalable or (b) gevent — not > particularly reliable. > > -- > Aymeric. > > > > On 28 oct. 2014, at

Re: Websockets... again

2014-10-28 Thread Aymeric Augustin
No, there isn’t. I assume that “including in core” means at least “making usable in combination with WSGI and with the ORM”. Even if we disregard for a minute the fact that WSGI is incompatible with websockets, the ORM is a hard problem, because current solutions involve either (a) threads

Websockets... again

2014-10-28 Thread Luis Masuelli
Is there any current development involving including websockets in django core? -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from i

Re: websockets

2013-04-17 Thread ptone
On Wednesday, April 17, 2013 2:31:48 AM UTC-7, Aymeric Augustin wrote: > > 2013/4/17 Daniel Swarbrick > > >> On the pure Django side of things, one of the challenges I encountered >> was "IDLE IN TRANSACTION" hanging DB connections in the long-running >> WebSocket views. I really ought to resea

Re: websockets

2013-04-17 Thread Aymeric Augustin
2013/4/17 Daniel Swarbrick > On the pure Django side of things, one of the challenges I encountered was > "IDLE IN TRANSACTION" hanging DB connections in the long-running WebSocket > views. I really ought to research a more elegant solution to this, but for > now I'm just doing all my DB queries

Re: websockets

2013-04-17 Thread Daniel Swarbrick
Python 3.3 and all earlier versions, which isn't > going to happen soon. > > There's another issue: Django is designed to be deployed over WSGI, and > WSGI is incompatible with websockets. A new revision of WSGI would help. > > It's encouraging to hear that WebSocke

Re: websockets

2013-04-16 Thread Aymeric Augustin
r Python 3.3 and all earlier versions, which isn't going to happen soon. There's another issue: Django is designed to be deployed over WSGI, and WSGI is incompatible with websockets. A new revision of WSGI would help. -- Aymeric. -- You received this message because you are su

Re: websockets

2013-04-16 Thread Jonathan Slenders
It's not really intuitive, but hopefully, Tulip will provide us with a nicer API. Le mardi 16 avril 2013 21:25:08 UTC+2, Jacob Kaplan-Moss a écrit : > > Hi Ashwin - > > On Tue, Apr 16, 2013 at 2:10 PM, Ashwin Kumar > > > wrote: > > is there any way to implemen

Re: websockets

2013-04-16 Thread Jacob Kaplan-Moss
Hi Ashwin - On Tue, Apr 16, 2013 at 2:10 PM, Ashwin Kumar wrote: > is there any way to implement websockets in django? > if not, any other packages to combine with django. There are quite a few third-party apps and demos out there, so many I've lost track. I recommending searc

websockets

2013-04-16 Thread Ashwin Kumar
hi, is there any way to implement websockets in django? if not, any other packages to combine with django. is there any future plan to implement it in django core? With Best -Ashwin. +91-9959166266 -- You received this message because you are subscribed to the Google Groups "D