You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tested on python 3.9.4 and after installing bs4 (something the instructions should mention)
$ python downloader.py
C:\Users\Alex\TempGitProjects\khinsider-mp3-downloader\downloader.py:34: GuessedAtParserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("html.parser"). 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 34 of the file C:\Users\Alex\TempGitProjects\khinsider-mp3-downloader\downloader.py. To get rid of this warning, pass the additional argument 'features="html.parser"' to the BeautifulSoup constructor.
soup = BeautifulSoup(urllib2.urlopen(url))
C:\Users\Alex\TempGitProjects\khinsider-mp3-downloader\downloader.py:62: GuessedAtParserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("html.parser"). 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 62 of the file C:\Users\Alex\TempGitProjects\khinsider-mp3-downloader\downloader.py. To get rid of this warning, pass the additional argument 'features="html.parser"' to the BeautifulSoup constructor.
link_soup = BeautifulSoup(urllib2.urlopen(href))
The text was updated successfully, but these errors were encountered:
tested on python 3.9.4 and after installing bs4 (something the instructions should mention)
The text was updated successfully, but these errors were encountered: