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

Python3.4 获取百度网页源码并保存在本地文件中

时间:2016-07-21 12:36:00      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

最近学习python

版本 3.4

抓取网页源码并且保存在本地文件中

 

import urllib.request

url=http://www.baidu.com

#上面的url一定要写明确,如果写成www.baidu.com,下一步就会报错。
response=urllib.request.urlopen(url)
#下一步获取html,但是是Byte格式的,我们要解码
html=response.read()
html_str=html.decode(utf-8)

#下面我们把get的网页写在文件中。
f=open(rD:\baidu.html,w,encoding=utf-8)

f=write(html_str)
#写完别忘记关闭
f.close()

 

string和byte类型相互转换

 

str.encode(‘utf-8‘)

byte.decode(‘utf-8‘)

 

Python3.4 获取百度网页源码并保存在本地文件中

标签:

原文地址:http://www.cnblogs.com/SunnyZhu/p/5691277.html

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