我想发送从网站提取数据的请求。 我正在编写以下代码:
import requests as req
from requests import Request, Session
from requests import post, get
resp = post(
"https://www.somewebsite.net/ext/data/",
{"from": "25.08.2017", "to": "25.08.2017", "download": "true", "_download": "on", "tsoId": "1", "dataType": "AAA"},
stream=True )
每隔2分钟,网站就会更新,我想每隔3分钟发送一次相同的请求以获得新的输入。我只能使用请求库吗?或者我必须使用Selenium和BS?