Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. soup = bs4.BeautifulSoup(res.text, "html.parser")
  2. a = soup.find_all("div", class_="mini_card-title")
  3. print(a)
  4.  
  5. soup = bs4.BeautifulSoup(res.text, "html.parser")
  6. a = soup.find_all("div", class_="header")
  7. print(a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement