I did a web scraping program in Python to check the price of Bitcoin on some exchanges , however the field I'm trying to download is left blank.
In case, I'm trying to get the data is between the tags <div class="info">
and </div>
, however when running the program, the field appears blank.
The site used for testing is https://poloniex.com/exchange#usdt_dash
import requests
from bs4 import BeautifulSoup
page = requests.get("https://poloniex.com/exchange#usdt_dash")
soup = BeautifulSoup(page.content, 'html.parser')
print(soup.find(class_='info'))