Answers for "beautiful soup find classname"

1

beautiful soup get class name

#finding the class of the first div in soup
soup.div['class']

#finding the class of the first p in soup
soup.p['class']
Posted by: Guest on May-19-2021
0

beautifulsoup find class

mydivs = soup.findAll("div", {"class": "stylelistrow"})
Posted by: Guest on April-29-2020

Python Answers by Framework

Browse Popular Code Answers by Language