Guest User

Untitled

a guest
Oct 23rd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. phone_category_data = requests.get(phone_category_url)
  2. base_category_soup = soup(phone_category_data.content, "html.parser")
  3. div_list = base_category_soup.find_all("div")
  4. for div in div_list:
  5. if div["class"]:
  6. if div['class'][0] == 'makers':
  7. print div.text
Add Comment
Please, Sign In to add comment