是的,Python 的 time.sleep()
函數可以用于網絡請求之間的延遲
例如,使用 requests
庫發送多個網絡請求并在每個請求之間添加延遲:
import requests
import time
url = "https://api.example.com/data"
for i in range(5):
response = requests.get(url)
print(response.json())
time.sleep(2) # 等待 2 秒
在這個例子中,我們向 https://api.example.com/data
發送了 5 個請求,每次請求之間暫停了 2 秒。