首页 > 编程 > Python > 正文

Python实现的下载网页源码功能示例

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

本文实例讲述了Python实现的下载网页源码功能。分享给大家供大家参考,具体如下:

#!/usr/bin/pythonimport httplibhttpconn = httplib.HTTPConnection("www.baidu.com")httpconn.request("GET", "/index.html")resp = httpconn.getresponse()if resp.reason == "OK":  resp_data = resp.read()  print resp_data  print len(resp_data)httpconn.close()

要下载的网页源码被读取到了resp_data中了

运行效果图如下:

Python,下载,网页源码

 

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

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