0
私はそれを実行するときに私にBTCの価格を与えるいくつかのコードを書こうとしています。私はではありませんが、コードを実行した後にエラーが発生しましたが、私は価格を取得していないと私は得るなし。誰かが自分のコードを見て問題の原因を突き止めることができますか?以下はコードです:Python(Pycharm)を使用したCoinbaseからのWebスクレイピング
import requests
from bs4 import BeautifulSoup
page = requests.get("https://www.coinbase.com/charts")
soup = BeautifulSoup(page.content, 'html.parser')
seven_day = soup.find(id="seven-day-forecast")
bitcoin = soup.find('pre',{'style':'word-wrap: break-word; white-space: pre-
wrap;'})
print(bitcoin)
ありがとうございます!
'document.getElementById(" seven-day-forecast ")= null" – TheChetan