首页 > 编程 > Python > 正文

python使用htmllib分析网页内容的方法

2020-01-04 19:16:51
字体:
来源:转载
供稿:网友

这篇文章主要介绍了python使用htmllib分析网页内容的方法,涉及Python使用htmllib模块的相关技巧,需要的朋友可以参考下

本文实例讲述了python使用htmllib分析网页内容的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. import htmllib, urllib, formatter, sys 
  2. website = urllib.urlopen("http://yourweb.com"
  3. data = website.read() 
  4. website.close() 
  5. format = formatter.AbstractFormatter(formatter.DumbWriter(sys.stdout)) 
  6. ptext = htmllib.HTMLParser(format) 
  7. ptext.feed(data) 
  8. ptext.close() 

希望本文所述对大家的Python程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表