beautiful soup 4

Solutions on MaxInterview for beautiful soup 4 by the best coders in the world

showing results for - "beautiful soup 4"
Oskar
11 Mar 2017
1from bs4 import BeautifulSoup
2
3with open("index.html") as fp:
4    soup = BeautifulSoup(fp)
5
6soup = BeautifulSoup("<html>a web page</html>")
7