Hi
How to read binary streams from a HTTP streamer server in python. I did a search and someone said urllib2 can do the job but had blocking issues. Someone suggested Twisted framework.
My questions are:
If it's just a streaming client reads data on background, can I ignore the blocking issues caused by urllib2?
What will happen if urllib2 doesn't catch up with streamer server? Will the data lost?
If the streamer server requires user authentication via GET or POST some paramaters to server before retrieving data, can this be done by urllib2?
Where can I find some stream client example of urllib2 and Twisted?
Thank you.
Jack