There are two values that i am looking to scrape from a website. These are present in the following tags:
<span class="sp starBig">4.1</span>
<span class="sp starGryB">2.9</span>
I need the values sp starBig, sp starGryB.
The findAll expression that i am using is -
soup.findAll('span', {'class': ['sp starGryB', 'sp starBig']}):
The code gets executed without any errors yet no results get displayed.