I am new to data scraping and I am using BeautifulSoup to grap some data from a webpage. I'm trying to get the r100 in the span tag. I know r100 is the class name, but this data is required. Is it possible?
my code
st2=st1.find("span",attrs={"class":"rating"})
print(st2)
out
<span class="rating r100"></span>