I am using Python urllib2 with Tor as a proxy to access the website. When I open the main page of the site, it works fine, but when I try to view the login page (actually not logging in, but just browsing). I get the following error ...
URLError: <urlopen error (10060, 'Operation timed out')>
To counteract this, I did the following:
import socket
socket.setdefaulttimeout(None).
I still get the same timeout error.
- Does this mean that the website is being disabled on the server side? (I don't know much about http processes, so sorry if this is a stupid question)
- Is there a way to fix it so that Python can view the page?
Thanks Rob
source
share