需要安装Beautiful Soup包:
pip install beautifulsoup4
获取网页信息如下:
from urllib
.request
import urlopen
from bs4
import BeautifulSoup
text
= urlopen
('http://www.poge.tech').read
()
print(text
)
soup
= BeautifulSoup
转载请注明原文地址:https://ipadbbs.8miu.com/read-14493.html