find div with specific class or attribute with BeautifulSoup

import bs4 as BeautifulSoup soup = BeautifulSoup.BeautifulSoup(some_html, "html.parser") div1 = soup.find('div', class_="my-class") div2 = soup.find(itemprop="my-attribute")

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.