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

python 3.x urllib学习

时间:2016-01-18 10:23:04      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

urllib.request

import urllib.request as ur
url=‘http://ie.icoa.cn‘
user_agent = ‘Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)‘
req=ur.Request(url)
req.add_header(‘User-Agent‘,user_agent)
res=ur.urlopen(req)
html=res.read().decode(‘utf8‘)
print(html)

发送一个header,模拟浏览器

 

python 3.x urllib学习

标签:

原文地址:http://www.cnblogs.com/fj0716/p/5138391.html

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