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