I am writing a web application using Python twisted.web
on the server side.
On the interface side, I would like to use Ajax
to display real-time updates of events happening on the server.
There are lots of information on how to do this, so I realized that I need to choose a javascript library that would make my life easier.
socket.io
seems like a good choice, since it supports several browsers and transport mechanisms, but, reading their examples, it seems that it can only work with node.js
?
So does anyone know if socket.io
can be used with twisted.web
? If so, any links for a good example / tutorial would also be welcome.
source share