I\'m writing a script in Python that should determine if it has internet access.
import urllib CHECK_PAGE = \"http://64.37.51.146/check.txt\" CHECK_VALUE
You want
page = urllib.urlopen(CHECK_PAGE, proxies={})
Remove the
urllib.getproxies = lambda x = None: {}
line.