6
Your options for real time web services in python are: Twisted, Tornado and Eventlet
You can integrate all this to work with Python/Django. Tutorial on that.
1
You may want to look into Tornado, a web server framework which is non-blocking and uses epoll. Should be more suitable for your real-time requirements than higher level frameworks like Django.
- [Django]-Django signals not fired when saving from admin interface
- [Django]-How to populate select option dropdown with database info in django
- [Django]-Facebook Signed Request Decoding Incorrect Padding
0
Short answer: No. Django won’t help you with this.
Long answer: Sounds like a job for some custom code coming directly off the webserver. I’m thinking a python script hanging directly off wsgi, or even an apache module written in C!
- [Django]-Django on CentOS
- [Django]-Accessing MultipleChoiceField choices values
- [Django]-Which Server for Django
- [Django]-OAuth2 specification states that 'perms' should now be called 'scope'. Please update. Django Facebook connect
0
You should consider looking at the Celery Project. It plugs into Django just fine but not sure about whether it is sensitive to millisecond precision requirements. You may also consider getting off the django stack and using Brubeck with Mongrel2 and ZeroMQ.
- [Django]-Optimizing djangos count() method
- [Django]-Django 1.8 does not work on CentOs 6.5 server
- [Django]-Django: Add number of results
- [Django]-Django – Is it possible to make a redirect from a function in a view?