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