以下のサイトのLast:の後ろの数字、59.14の部分をスクレイピングしたいと思っています。
https://t3index.com/indices/bit-vol/
以下のようにコードを書いたのですが
python3
1import urllib.request 2from bs4 import BeautifulSoup 3 4 5def bitvol(): 6 url = "https://t3index.com/indices/bit-vol/" 7 html = urllib.request.urlopen(url) 8 soup = BeautifulSoup(html, "html.parser") 9 10 b = soup.select("#lastvalueBitVol") 11 12 print(b) 13 14bitvol()
結果は
[<span id="lastvalueBitVol"></span>]
と返ってきます。
どこが間違っているのでしょうか、教えてください。
回答1件
あなたの回答
tips
プレビュー