Guest User

Untitled

a guest
Mar 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. container = containers[0]
  2. product_container = container.find_all('div',{'class': 's-item-container'})
  3. product_name = product_container.find_all('div', {'class': 'a-fixed-left-grid-col'})
  4. print (product_name)
  5.  
  6. soup.find_all('tag', {'class': 'classname1 classname2 ...'})
  7.  
  8. soup.find_all('tag', {'class': ['class1', 'class2']})
Add Comment
Please, Sign In to add comment