代码拉取完成,页面将自动刷新
同步操作将从 青岛阿派派软件有限公司/群晖助手 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# coding: utf-8
import requests
import os
import sys
defaultencoding = 'utf-8'
if sys.getdefaultencoding() != defaultencoding:
reload(sys)
sys.setdefaultencoding(defaultencoding)
token = "your token"
base = "http://dsm.flutter.fit"
save_path = (os.path.split(os.path.realpath(__file__))[0] + "/wechat_file/").encode("utf-8")
def report(file):
url = base + "/file/report?token="+token + "&file_id=" + str(file['id'])
data = requests.get(url = url).json()
if data['code']==1:
print("download success:" + save_path + file['file_name'].encode("utf-8"))
def download(file):
print("downloading:"+file['file'])
url = file['file']
data = requests.get(url = url)
if not os.path.exists(save_path):
os.makedirs(save_path)
if data.status_code == 200:
with open(save_path + file['file_name'].encode("utf-8"),"wb") as code:
code.write(data.content)
report(file)
else:
print("download failed")
if __name__ == "__main__":
url = base + '/file/files?token='+token
response = requests.get(url = url).json()
if response['code']==1 :
if len(response['data']) == 0:
print("no file to download")
for file in response['data']:
download(file)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。