How to add beautifulsoup package
I am getting error when I install beautifulsoup package in python. there are only 2 versions it is considering. but both are not working
Ask coding questions
I am getting error when I install beautifulsoup package in python. there are only 2 versions it is considering. but both are not working
Make a
requirements.txt
file withbeautifulsoup4
as the first line. Now at the top of your code writefrom bs4 import BeautifulSoup
.https://repl.it/site/docs/repls/packages#python
@a5rocks Thanks!