I want to create a page in which I can "push" data to clients, on specific times in day.
What are my options? I know there is socket.io, which is javascript based, but I need it to work with django. Also, I need to push the events to clients based on the server time.
EDIT:
I mean to something like this:
in javascript:
listener.onserverpush(function(data) {...});
the server push should occur in server at specific hours in a day (based on server clock).