beautiful soup find all code example

Example 1: beautifulsoup find all class

mydivs = soup.findAll("div", {"class": "stylelistrow"})

Example 2: use beautifulsoup

#start


from bs4 import BeautifulSoup
import requests

req = requests.get('https://www.slickcharts.com/sp500')
soup = BeautifulSoup(req.text, 'html.parser')

Example 3: beautiful soup 4

from bs4 import BeautifulSoup

with open("index.html") as fp:
    soup = BeautifulSoup(fp)

soup = BeautifulSoup("<html>a web page</html>")

Example 4: python beautifulsoup find_all

import re

soup.find_all(re.compile("^b")):
soup.find_all('b')
soup.find_all(["a", "b"])

Tags: