Python爬虫教程004:用urllib和beautiful soup提取网页信息

需要安装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(text
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章