下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。
内存溢出小编现在分享给大家,也给大家做个参考。
#!/usr/bin/env python# -*- Coding: utf-8 -*-# by ustcwq# 2015-03-15import urllib,urllib2,os,timefrom bs4 import BeautifulSoupstart = time.clock()path = os.getcwd()+u'/模板之家抓取的模板/'if not os.path.isdir(path): os.mkdir(path)url = "http://www.CSSmoban.com/CSSthemes/index_80.sHTML" # 源网站中的index后面数字怎么编排的?theme_url ='http://www.CSSmoban.com/CSSthemes/'response = urllib2.urlopen(url)soup = BeautifulSoup(response) result = soup.select('p[] a')print resultfor item in result: link = item['href'] # down_name = item.text # 文件名称 new_url = theme_url+link.split('/')[-1] response = urllib2.urlopen(new_url) soup = BeautifulSoup(response) result = soup.select('.btn a') down_url = result[1]['href'] # 文件链接 local = path+time.strftime('%Y%m%d%H%M%s',time.localtime(time.time()))+'.zip' urllib.urlretrIEve(down_url,local) # 远程保存函数end = time.clock()print u'模板抓取完成!'print u'一共用时:',end-start,u'秒'
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的使用Python27抓取模板之家的CSS模板全部内容,希望文章能够帮你解决使用Python27抓取模板之家的CSS模板所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)