beautifulsoup throwing warning
pyMixin opened this issue · 0 comments
pyMixin commented
The code that caused this warning is on line 15 of the file tester.py. To get rid of this warning, change code that looks like this:
BeautifulSoup(YOUR_MARKUP})
to this:
BeautifulSoup(YOUR_MARKUP, "lxml")
FIX for line # 119: html = bs4.BeautifulSoup(requests.get(url).text,"html.parser")