fork download
  1. def parse(html):
  2. soup = BeautifulSoup(html, "html.parser")
  3. li = soup.find("li", class_="blabla")
  4. value = li.find_all("h3")
  5. print(value)
Success #stdin #stdout 0.01s 118656KB
stdin
Standard input is empty
stdout
Standard output is empty