首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

python抓取百度主页

2012-11-26 
python抓取百度首页import urllibdef downURL(url,filename):try:fpurllib.urlopen(url)except:print(do

python抓取百度首页
import urllib
def downURL(url,filename):
    try:
        fp=urllib.urlopen(url)
    except:
        print('download error')
        return 0
    op=open(filename,'wb')
    while 1:
         s=fp.read()
         if not s:
             break
         op.write(s)
    fp.close()
    op.close()
    return 1
downURL("http://www.baidu.com","D:\\code\\url.txt")

热点排行