How to find elements by class
--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Lost Jungle Looping
--
Chapters
00:00 How To Find Elements By Class
00:27 Accepted Answer Score 1069
00:40 Answer 2 Score 447
01:03 Answer 3 Score 82
01:23 Answer 4 Score 60
03:27 Answer 5 Score 24
03:41 Thank you
--
Full question
https://stackoverflow.com/questions/5041...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #html #webscraping #beautifulsoup
#avk47
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Lost Jungle Looping
--
Chapters
00:00 How To Find Elements By Class
00:27 Accepted Answer Score 1069
00:40 Answer 2 Score 447
01:03 Answer 3 Score 82
01:23 Answer 4 Score 60
03:27 Answer 5 Score 24
03:41 Thank you
--
Full question
https://stackoverflow.com/questions/5041...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #html #webscraping #beautifulsoup
#avk47
ACCEPTED ANSWER
Score 1069
You can refine your search to only find those divs with a given class using BS3:
mydivs = soup.find_all("div", {"class": "stylelistrow"})
ANSWER 2
Score 447
From the documentation:
As of Beautiful Soup 4.1.2, you can search by CSS class using the keyword argument class_:
soup.find_all("a", class_="sister")
Which in this case would be:
soup.find_all("div", class_="stylelistrow")
It would also work for:
soup.find_all("div", class_="stylelistrowone stylelistrowtwo")
ANSWER 3
Score 82
Update: 2016 In the latest version of beautifulsoup, the method 'findAll' has been renamed to 'find_all'. Link to official documentation
Hence the answer will be
soup.find_all("html_element", class_="your_class_name")
ANSWER 4
Score 24
Specific to BeautifulSoup 3:
soup.findAll('div',
{'class': lambda x: x
and 'stylelistrow' in x.split()
}
)
Will find all of these:
<div class="stylelistrow">
<div class="stylelistrow button">
<div class="button stylelistrow">
