来自谷歌的Python请求以希伯来语返回

时间:2013-02-25 12:16:08

标签: python

当我使用(来自以色列的IP地址)时:

requests.get('https://accounts.google.com/ServiceLogin')

回复是希伯来语(在隐身模式的浏览器中也可以看到)

我想以某种方式指定get方法,这个参数意味着“我想用英语获得响应”。

我该怎么做?

1 个答案:

答案 0 :(得分:2)

尝试

requests.get('https://accounts.google.com/ServiceLogin?lp=1&hl=en')

(注意底部的语言选择器)