how can i increase the speed of socket
        Posted  
        
            by Emma
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Emma
        
        
        
        Published on 2010-05-24T10:20:13Z
        Indexed on 
            2010/05/24
            11:11 UTC
        
        
        Read the original article
        Hit count: 467
        
how can i increase speed of socket in python ? my code :
import urllib
proxies = {'http': 'http://75.21.47.2:8080/'}
opener = urllib.FancyURLopener(proxies)
r = opener.open("http://www.python.org/")
print r.read()
© Stack Overflow or respective owner