/opt/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:181: UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("lxml"). This usually isn't a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.
The code that caused this warning is on line 184 of the file /opt/anaconda3/lib/python3.5/runpy.py. To get rid of this warning, change code that looks like this:
BeautifulSoup([your markup])
to this:
BeautifulSoup([your markup], "lxml")
markup_type=markup_type))
/opt/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:282: UserWarning: "http://www.matmartinez.net/nsfw/" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client like requests to get the document behind the URL, and feed that document to Beautiful Soup.
' that document to Beautiful Soup.' % decoded_markup
/opt/anaconda3/lib/python3.5/site-packages/bs4/__init__.py:282: UserWarning: "http://images5.fanpop.com/image/photos/25500000/Aww-Yeah-random-25538108-268-209.gif" looks like a URL. Beautiful Soup is not an HTTP client. You should probably use an HTTP client like requests to get the document behind the URL, and feed that document to Beautiful Soup.
' that document to Beautiful Soup.' % decoded_markup