赞
踩
脚本思路
运营人员上传ppt,pdf,word到数据库,脚本读取文件远程连接->下载到本地->转图片->上传到云存储->获取远程图片连接->存储到数据库。
连接数据库查询需要转的集合
def connectDatabase():
conn = pymysql.connect(host=‘127.0.0.1’, user=‘root’, password=“”,database =‘pic’,port=3306)
cur = conn.cursor(pymysql.cursors.DictCursor)
return {
“conn”:conn,
“cur”:cur
}
# 获取需要转的文件集合
def getUrlArr(cur):
sql = ‘select * from pic’ # 写自己的sql语句
arr = ‘’
try:
cur.execute(sql)
ex = cur.execute(sql)
arr = cur.fetchmany(ex)
except Exception as e:
raise e
finally:
return arr
下载文件到本地
def downLoad(url):
print(‘----url-----’,url)
filename=‘’
try:
s
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。