如何使用R / Python下载此数据

时间:2019-06-20 09:31:50

标签: python r web-scraping

我正尝试从以下链接下载数据:

Link

下面是我的R代码-

library(XML)
library(RCurl)
readHTMLTable(getURL("https://www.nseindia.com/products/dynaContent/common/productsSymbolMapping.jsp?symbol=NIFTYEES&segmentLink=3&symbolCount=1&series=ALL&dateRange=+&fromDate=01-06-2019&toDate=20-06-2019&dataType=PRICEVOLUMEDELIVERABLE"))

这无法将数据下载到我的R控制台上。

Python代码

import http.client
connection = http.client.HTTPSConnection("www.nseindia.com")
connection.request("GET", "/products/dynaContent/common/productsSymbolMapping.jsp?symbol=NIFTYEES&segmentLink=3&symbolCount=1&series=ALL&dateRange=+&fromDate=01-06-2019&toDate=20-06-2019&dataType=PRICEVOLUMEDELIVERABLE")
res = connection.getresponse()
res.read()

这也无法获取任何数据。

任何下载此数据的帮助都会有所帮助

0 个答案:

没有答案