這篇文章主要介紹了python分析網(wǎng)頁上所有超鏈接的方法,涉及Python使用urllib模塊操作頁面超鏈接的技巧,需要的朋友可以參考下
import urllib, htmllib, formatter
website = urllib.urlopen("")
data = website.read()
website.close()
format = formatter.AbstractFormatter(formatter.NullWriter())
ptext = htmllib.HTMLParser(format)
ptext.feed(data)
for link in ptext.anchorlist:
print(link)
希望本文所述對大家的Python程序設(shè)計有所幫助。
更多信息請查看IT技術(shù)專欄