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

Python网页抓取2

时间:2014-09-29 16:42:11      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   sp   div   c   on   log   

#!coding:utf-8
# 获取web页面
import
sys,urllib2 req=urllib2.Request(sys.argv[1]) fd=urllib2.urlopen(req) while 1: data=fd.read() if not len(data): break print data
#coding:utf-8

import sys,urllib2

req=urllib2.Request(sys.argv[1])
fd=urllib2.urlopen(req)
print "url:",fd.geturl()
print "info:",fd.info()

 

Python网页抓取2

标签:style   blog   color   ar   sp   div   c   on   log   

原文地址:http://www.cnblogs.com/Lzero/p/4000166.html

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