python分析网页上所有超链接的方法
时间:2020-10-18 11:31:34|栏目:Python代码|点击: 次
本文实例讲述了python分析网页上所有超链接的方法。分享给大家供大家参考。具体实现方法如下:
import urllib, htmllib, formatter
website = urllib.urlopen("http://yourweb.com")
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程序设计有所帮助。
上一篇:python 中if else 语句的作用及示例代码
栏 目:Python代码
下一篇:python openvc 裁剪、剪切图片 提取图片的行和列
本文标题:python分析网页上所有超链接的方法
本文地址:http://www.codeinn.net/misctech/13239.html






