mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-21 19:58:17 +00:00
everyday_en 每日一句英文句子
This commit is contained in:
parent
da6541f50a
commit
b208e8e2a3
24
everyday_en.py
Normal file
24
everyday_en.py
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
from pagermaid import version, silent
|
||||||
|
from pagermaid.listener import listener
|
||||||
|
from pagermaid.utils import alias_command, client
|
||||||
|
from os import sep, remove
|
||||||
|
|
||||||
|
|
||||||
|
@listener(is_plugin=True, outgoing=True, command=alias_command("everyday_en"),
|
||||||
|
description="每日一句英文句子")
|
||||||
|
async def everyday(context):
|
||||||
|
if not silent:
|
||||||
|
await context.edit("获取中 . . .")
|
||||||
|
try:
|
||||||
|
data = await client.get("https://open.iciba.com/dsapi/")
|
||||||
|
data = data.json()
|
||||||
|
img = await client.get(data["fenxiang_img"])
|
||||||
|
with open(f"data{sep}everyday.jpg", 'wb') as f:
|
||||||
|
f.write(img.content)
|
||||||
|
await context.edit("上传中 . . .")
|
||||||
|
await context.client.send_file(context.chat_id, f"data{sep}everyday.jpg",
|
||||||
|
caption=f"{data['content']}\n释义:{data['note']}")
|
||||||
|
remove(f"data{sep}everyday.jpg")
|
||||||
|
await context.delete()
|
||||||
|
except Exception as e:
|
||||||
|
await context.edit(f"获取失败\n{e}")
|
10
list.json
10
list.json
@ -909,6 +909,16 @@
|
|||||||
"supported": true,
|
"supported": true,
|
||||||
"des-short": "每日新闻、历史上的今天、天天成语、慧语香风、诗歌天地",
|
"des-short": "每日新闻、历史上的今天、天天成语、慧语香风、诗歌天地",
|
||||||
"des": "每日新闻、历史上的今天、天天成语、慧语香风、诗歌天地。\n指令:-news"
|
"des": "每日新闻、历史上的今天、天天成语、慧语香风、诗歌天地。\n指令:-news"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "everyday_en",
|
||||||
|
"version": "1.0",
|
||||||
|
"section": "daily",
|
||||||
|
"maintainer": "xtaodada",
|
||||||
|
"size": "1.0 kb",
|
||||||
|
"supported": true,
|
||||||
|
"des-short": "每日一句英文句子",
|
||||||
|
"des": "每日一句英文句子。\n指令:-everyday_en"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user