博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
temp
阅读量:5917 次
发布时间:2019-06-19

本文共 2157 字,大约阅读时间需要 7 分钟。

链接:http://pan.baidu.com/s/1gfhF3xD 密码:kmhg

 http://dsideal.oss-cn-qingdao-internal.aliyuncs.com/BeiJing.zip

SELECT * FROM t_resource_info WHERE scheme_id_int in

(4269,15842,15871,15873,15909,34199,106089,4270,15864,15876,15893,15903,34018,34022,34025,4267,15857,15868,15882,15899,15905,34269,34270,39308,4278,15877,15887,15889,15910,33768,33941,33942,105852)
AND release_status in (1,3);

import osimport sysfrom Util.MySQLHelper import *# 下载指定的Url地址下的文件def DownloadFile(url, Dir, FileName):    command = sys.path[                  0] + "\\aria2-1.19.0\\aria2c.exe" + " -c -s 2 --check-certificate=false -d " + Dir + " -o " + FileName + " " + url    os.system(command)# oss-cn-qingdao-internal.aliyuncs.comif __name__ == "__main__":    targetPath = "d:\\BeiJing"    db = MySQLHelper()    sql = "SELECT FILE_ID,RESOURCE_FORMAT,THUMB_ID FROM t_resource_info WHERE scheme_id_int in (4269,15842,15871,15873,15909,34199,106089,4270,15864,15876,15893,15903,34018,34022,34025,4267,15857,15868,15882,15899,15905,34269,34270,39308,4278,15877,15887,15889,15910,33768,33941,33942,105852) AND release_status in (1,3)"    dt = db.query(sql)    count = 0    for row in dt:        count = count + 1        print("正在下载第" + str(count) + "个,共30510个!")        # 1、Material        FileId = row['FILE_ID']        ResourceFormat = row['RESOURCE_FORMAT']        ThumbId = row['THUMB_ID']        url = "http://dsideal-yy.oss-cn-qingdao-internal.aliyuncs.com/down/Material/" + FileId[0:2] + '/' + FileId + '.' + ResourceFormat        SavePath = targetPath + "\\Material\\" + FileId[0:2]        if not os.path.exists(SavePath):            os.mkdir(SavePath)        DownloadFile(url, SavePath, FileId + '.' + ResourceFormat)        # Thumbs        url = "http://dsideal-yy.oss-cn-qingdao-internal.aliyuncs.com/down/Thumbs/" + ThumbId[                                                                                        0:2] + '/' + ThumbId + '.thumb'        ThumbsSavePath = targetPath + "\\Thumbs\\" + ThumbId[0:2]        if not os.path.exists(ThumbsSavePath):            os.mkdir(ThumbsSavePath)        DownloadFile(url, ThumbsSavePath, ThumbId + '.thumb')    print('恭喜,所有下载成功完成!')

 

转载地址:http://lqfvx.baihongyu.com/

你可能感兴趣的文章
centos7安装mariadb10
查看>>
xml生成view时layout参数失效问题解决
查看>>
使用NanoHTTPD在android实现web迷你服务器
查看>>
codewars025: Playing with digits
查看>>
网站留言消息Push到多台本地电脑提醒
查看>>
FFMPEG编译以及裁剪
查看>>
希尔排序
查看>>
使用jQuery清空file文件域的解决方案
查看>>
egret图文混排
查看>>
Git学习系列(五)分支管理详解
查看>>
Primefaces框架开发杂谈!
查看>>
Linux tar命令
查看>>
实现ecshop不同的分类调用不同的模版
查看>>
crm管理软件加速公司的发展
查看>>
缩短软件开发周期的三种方式
查看>>
hadoop学习笔记之一
查看>>
数据库资源池云平台
查看>>
linux 安装ftp服务
查看>>
PlainOAuth
查看>>
GestureDetector.OnGestureListener 详解
查看>>