Google查询返回503

时间:2018-06-30 22:28:07

标签: python google-search http-status-code-503

所以我一直在尝试使用requests在Python中提出Google搜索请求,但收到503错误。

无论如何,这是使用的代码:

params = {
    'q': 'test',
    'safe': 'on',
    'lr': 'lang_en',
    'hl': 'en'
}
headers = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 6.3; Win64; x64)'
}

requests.get("https://www.google.com/search", params=params, headers=headers)

问题是,我使用googler是为了通过终端执行Google搜索,并且效果很好。我以为Google可能阻止了我的IP或其他内容,但这不是。

有什么想法吗?预先感谢。

0 个答案:

没有答案