The news download system automatically sets the user agent to mimic a browser. The error message is a generic HTTP 403, there's no way to know from it why permission is denied. You can always save the html to a file with
open('path_to_some_file.html', 'wb').write(html)
and open it in a browser/text editor later.
|