0
我正在使用BeautifulSoup從雅虎財務中提取最近5天的數據。 Here is the link但我沒有收到任何數據。除了生成的數據之外,結果會生成一切。 這是我的嘗試:在Python中使用BeautifulSoup從雅虎財務中刮取數據
url = "https://in.finance.yahoo.com/quote/20MICRONS.NS/history?period1=1199125800&period2=1490207400&interval=1d&filter=history&frequency=1d"
request = urllib.request.Request(url,None,headers)
response = urllib.request.urlopen(request).read()
soup = BeautifulSoup(response, 'html.parser')
你試過了什麼。 –