码迷,mamicode.com
首页 > 编程语言 > 详细

python 给定URL 如何获取其内容,并将其保存至HTML文档。

时间:2019-06-22 10:31:28      阅读:369      评论:0      收藏:0      [点我收藏+]

标签:open   margin   需要   lib   utf-8   res   bsp   request   内容   

获取URL的内容需要用到标准库urllib包,其中的request模块。

import urllib.request
url=‘http://www.baidu.com‘
response=urllib.request.urlopen(url)
string=response.read()
html=string.decode(‘utf-8‘)
print(html)

urlopen()方法返回一个<class ‘http.client.HTTPResponse‘>

即标准库http包里的对象,该包是一个底层包,由request模块调用。

read()方法返回一个<class ‘bytes‘>

字节对象转成str对象用str.decode()方法

将获取的str对象内容保存到HTML文件,需用到程序内置的方法open()

f=open(‘lc.html‘,‘w‘)
f.write(html)
f.close()

  open()方法返回一个<class ‘_io.TextIOWrapper‘>

  write()方法是向文件对象写入str内容

  最后要关闭文件对象

 

python 给定URL 如何获取其内容,并将其保存至HTML文档。

标签:open   margin   需要   lib   utf-8   res   bsp   request   内容   

原文地址:https://www.cnblogs.com/blogzyq/p/11067648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!