Guest User

Untitled

a guest
Oct 18th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. import urllib.request as urllib
  2. from bs4 import BeautifulSoup
  3.  
  4. page = urllib.urlopen('https://www.vivino.com/explore?e=eJzLLbI1VMvNzLM1UMtNrLA1NDBQKy-JjrU1AgBlEgeX')
  5. soup = BeautifulSoup(page, 'html.parser')
  6.  
  7. name_box = soup.find('div', attrs={'data-react-class':'ExploreApplication'})
  8. print(name_box)
Add Comment
Please, Sign In to add comment