Python 3 を使用して Web サイトをスクレイピングし、値を出力しています。ここにコードがあります
import urllib.request
import re
url = "http://in.finance.yahoo.com/q?s=spy"
hfile = urllib.request.urlopen(url)
htext = hfile.read().decode('utf-8')
regex = '<span id="yfs_l84_SPY">(.+?)</span>'
code = re.compile(regex)
price = re.findall(code,htext)
print (price)
このスニペットを実行すると、空のリストが出力されます。[]
、しかし、私は値を期待しています483.33
。
私が間違っていることは何ですか?ヘルプ