mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-25 15:22:20 +00:00
优化了代码
This commit is contained in:
parent
29ae2a76cf
commit
06563a221b
@ -14,6 +14,9 @@ from os.path import exists
|
|||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from telethon.tl.types import DocumentAttributeAudio
|
from telethon.tl.types import DocumentAttributeAudio
|
||||||
|
|
||||||
|
class RetryError(Exception): #重试错误,用于再次重试
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
@listener(is_plugin=True, outgoing=True, command="nem",
|
@listener(is_plugin=True, outgoing=True, command="nem",
|
||||||
description="网易云搜/点歌。\n指令s为搜索,p为点歌,id为歌曲ID点歌\n搜索灰色歌曲请给出歌手\n可回复搜索结果消息`-nem` `p` `<歌曲数字序号>`点歌",
|
description="网易云搜/点歌。\n指令s为搜索,p为点歌,id为歌曲ID点歌\n搜索灰色歌曲请给出歌手\n可回复搜索结果消息`-nem` `p` `<歌曲数字序号>`点歌",
|
||||||
@ -306,8 +309,11 @@ async def nem(context):
|
|||||||
if code == 200:
|
if code == 200:
|
||||||
# 歌曲真实地址
|
# 歌曲真实地址
|
||||||
real_url = data[0]['url']
|
real_url = data[0]['url']
|
||||||
|
else:
|
||||||
|
raise RetryError
|
||||||
except:
|
except:
|
||||||
print('生成的params和encSecKey有误!可重试!')
|
print('生成的params和encSecKey有误!重试中!')
|
||||||
|
raise RetryError
|
||||||
# 返回real_url
|
# 返回real_url
|
||||||
return real_url
|
return real_url
|
||||||
|
|
||||||
@ -316,13 +322,18 @@ async def nem(context):
|
|||||||
real_url = self.get_real_url()
|
real_url = self.get_real_url()
|
||||||
if real_url == '':
|
if real_url == '':
|
||||||
print('链接获取失败!')
|
print('链接获取失败!')
|
||||||
|
raise RetryError
|
||||||
else:
|
else:
|
||||||
file = name
|
file = name
|
||||||
# 开始下载
|
# 开始下载
|
||||||
|
try:
|
||||||
content = requests.get(
|
content = requests.get(
|
||||||
url=real_url, headers=self.headers).content
|
url=real_url, headers=self.headers).content
|
||||||
with open(file, 'wb') as fp:
|
with open(file, 'wb') as fp:
|
||||||
fp.write(content)
|
fp.write(content)
|
||||||
|
except:
|
||||||
|
print('服务器连接出错')
|
||||||
|
raise RetryError
|
||||||
for __ in range(6): # 最多尝试6次
|
for __ in range(6): # 最多尝试6次
|
||||||
if proxynum > (len(proxy) - 1): # 代理自动切换至下一个
|
if proxynum > (len(proxy) - 1): # 代理自动切换至下一个
|
||||||
proxynum = 0
|
proxynum = 0
|
||||||
@ -334,7 +345,6 @@ async def nem(context):
|
|||||||
break
|
break
|
||||||
except:
|
except:
|
||||||
ccimported = False
|
ccimported = False
|
||||||
continue
|
|
||||||
if not exists(name):
|
if not exists(name):
|
||||||
ccimported = False
|
ccimported = False
|
||||||
|
|
||||||
@ -375,8 +385,11 @@ async def nem(context):
|
|||||||
return
|
return
|
||||||
if imported is True:
|
if imported is True:
|
||||||
await context.edit(f"{title}信息导入中 . . .")
|
await context.edit(f"{title}信息导入中 . . .")
|
||||||
|
try:
|
||||||
imagedata = requests.get(
|
imagedata = requests.get(
|
||||||
info['albumpic'], headers=headers).content
|
info['albumpic'], headers=headers).content
|
||||||
|
except:
|
||||||
|
pass
|
||||||
tag = eyed3.load(name)
|
tag = eyed3.load(name)
|
||||||
tag.initTag()
|
tag.initTag()
|
||||||
tag = tag.tag
|
tag = tag.tag
|
||||||
|
Loading…
Reference in New Issue
Block a user