在python中发送更新网页的请求

时间:2017-08-28 06:35:31

标签: python web-scraping beautifulsoup request

我想发送从网站提取数据的请求。 我正在编写以下代码:

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?

0 个答案:

没有答案