google 的速率限制是多少
Whats the rate limit of google
当我 运行 一段时间后,它给了我代码:429,这意味着向 URL 发出了太多请求,所以过了一会儿,我再次尝试我增加了 10 秒的延迟但仍然给了我代码的区别。 (429)
代码如下:
import requests
import time
query = "programming"
while True:
response = requests.get('https://www.google.com/search?q=' + query)
print (response.status_code)
time.sleep(10) # How much delay should I add?
输出:
.
.
.
200
200
200
429
429
429
429
429
429
.
.
.
我的问题是,我应该增加多少延迟才能使代码 运行ning 整天(如 12 小时)保持响应代码 200?
我的做法是否理想?因为我在网上找到了一些关于 Quota and pricing for google 的东西,想知道这是否与这种情况有关。
您正在使用 google 最终用户前端(人们在 google 上看到并用来搜索内容的前端)。没有关于其速率限制的文档,因为我认为他们不希望您以编程方式使用它。
为了以编程方式获得搜索结果,我认为您应该使用 Google Custom Search JSON API,它每天免费提供 100 次调用。
这对我有用。搜索间隔 30-40 秒。
from random import randint
from time import sleep
#other imports (google API)
sleep(randint(30,40))
当我 运行 一段时间后,它给了我代码:429,这意味着向 URL 发出了太多请求,所以过了一会儿,我再次尝试我增加了 10 秒的延迟但仍然给了我代码的区别。 (429)
代码如下:
import requests
import time
query = "programming"
while True:
response = requests.get('https://www.google.com/search?q=' + query)
print (response.status_code)
time.sleep(10) # How much delay should I add?
输出:
.
.
.
200
200
200
429
429
429
429
429
429
.
.
.
我的问题是,我应该增加多少延迟才能使代码 运行ning 整天(如 12 小时)保持响应代码 200?
我的做法是否理想?因为我在网上找到了一些关于 Quota and pricing for google 的东西,想知道这是否与这种情况有关。
您正在使用 google 最终用户前端(人们在 google 上看到并用来搜索内容的前端)。没有关于其速率限制的文档,因为我认为他们不希望您以编程方式使用它。
为了以编程方式获得搜索结果,我认为您应该使用 Google Custom Search JSON API,它每天免费提供 100 次调用。
这对我有用。搜索间隔 30-40 秒。
from random import randint
from time import sleep
#other imports (google API)
sleep(randint(30,40))