I'm using python to open an URL with the following code and sometimes I get this error:
from urllib import urlopen url = "http://www.gutenberg.org/files/2554/2554.txt" raw = urlopen(url).read()
error:'\n\n403 Forbidden\n\n
Forbidden
\nYou don\'t have permission to access /files/2554/2554.txt\non this server.
\n\nApache Server at www.gutenberg.org Port 80\n\n'
What is this?
Thank you