Python请求:网站要求“请启用JavaScript并重新加载页面”

时间:2017-11-12 00:27:07

标签: python-2.7 python-requests

我正在运行下面的代码,在OSX上使用python 2.7上的请求

html_response = requests.get(website_variable)
if html_response.status_code != 200:
    print "There was an error! Status code = " + str(html_response.status_code)
    print html_response.content
    sys.exit(1)

我从网站上得到503的HTML回复,我试图从中得到回复。我还从网站上找到了回复Javascript的回复。

<noscript><h1 data-translate="turn_on_js" style="color:#bd2426;">Please turn JavaScript on and reload the page.</h1></noscript>

我是否正在尝试以正确的方式从本网站收集信息?我是否需要在请求模块中打开设置或功能?

0 个答案:

没有答案