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

python单个文件

时间:2014-12-09 17:16:25      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:http   os   sp   on   文件   bs   ad   html   ef   

import urllib2,urllib,os
def Url1(url,files):#
    try:
        url=urllib2.urlopen(url)
    except:
        return ‘error‘
    fp=file(files,‘w+‘)
    fp1=url.read()
    fp.write(fp1)
    fp.close()
    url.close()
url=‘https://docs.python.org/2.7/tutorial/index.html‘
Url1(url,r‘g:\\pic\%s.html‘%(url.endswith(‘html‘)))

python单个文件

标签:http   os   sp   on   文件   bs   ad   html   ef   

原文地址:http://www.cnblogs.com/mhxy13867806343/p/4153444.html

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