Tagged Questions

4
votes
2answers
2k views

How do I send a custom header with urllib2 in a HTTP Request?

I want to send a custom "Accept" header in my request when using urllib2.urlopen(..). How do I do that?
1
vote
1answer
2k views

socket.accept error 24: To many open files

I have a problem with open files under my Ubuntu 9.10 when running server in Python2.6 And main problem is that, that i don't know why it so.. I have set ulimit -n = 999999 net.core.somaxconn = ...
0
votes
1answer
325 views

how to do non blocking accept() in Python?

I cannot use threads thus I want to write a server program that can be interrupted after a while: d = show_non_modal_dialog("serving clients") s = socket(...) s.bind(...) s.listen() while ...