ImportError: No Module Named bs4 (BeautifulSoup)
Beautifulsoup is a python library that can be used to scrape information from web pages using requests module.Bs4 basically beautify the html text we received as response from an http request. I would recommend installing this library using pip instead of easy_install as easy_install will install library system wide. Further, in order to remove conflict,…
Read More “ImportError: No Module Named bs4 (BeautifulSoup)” »