Beispiel #1
0
 def _get_soup(self, page_url):
     content = Http.Http(page_url).get_content()
     self.soup = bs4.BeautifulSoup(content, 'lxml')
Beispiel #2
0
 def __init__(self, link):
     content = Http.Http(link).get_content()
     self.soup = bs4.BeautifulSoup(content, 'lxml')