📜  import beautifulsoup - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:03.294000             🧑  作者: Mango

代码示例6
from bs4 import BeautifulSoup

with open("index.html") as fp:
    soup = BeautifulSoup(fp)

soup = BeautifulSoup("a web page")