mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-21 23:55:34 +00:00
🔐 Transfer to gitlab.
This commit is contained in:
parent
60681470e6
commit
721cb749fd
2
eat.py
2
eat.py
@ -22,7 +22,7 @@ import json
|
|||||||
try:
|
try:
|
||||||
git_source = config['git_source']
|
git_source = config['git_source']
|
||||||
except:
|
except:
|
||||||
git_source = "https://raw.githubusercontent.com/Xtao-Labs/PagerMaid_Plugins/master/"
|
git_source = "https://gitlab.com/Xtao-Labs/PagerMaid_Plugins/-/raw/master/"
|
||||||
positions = {
|
positions = {
|
||||||
"1": [297, 288],
|
"1": [297, 288],
|
||||||
"2": [85, 368],
|
"2": [85, 368],
|
||||||
|
@ -938,13 +938,13 @@ async def funcset(context):
|
|||||||
func_name = cmd[1]
|
func_name = cmd[1]
|
||||||
func_online = \
|
func_online = \
|
||||||
json.loads(
|
json.loads(
|
||||||
requests.get("https://raw.githubusercontent.com/xtaodada/PagerMaid_Plugins/master"
|
requests.get("https://gitlab.com/Xtao-Labs/PagerMaid_Plugins/-/raw/master"
|
||||||
"/keyword_func/list.json").content)["list"]
|
"/keyword_func/list.json").content)["list"]
|
||||||
if func_name in func_online:
|
if func_name in func_online:
|
||||||
func_directory = f"data/keyword_func/"
|
func_directory = f"data/keyword_func/"
|
||||||
file_path = func_name + ".py"
|
file_path = func_name + ".py"
|
||||||
func_content = requests.get(
|
func_content = requests.get(
|
||||||
f"https://raw.githubusercontent.com/xtaodada/PagerMaid_Plugins/master"
|
f"https://gitlab.com/Xtao-Labs/PagerMaid_Plugins/-/raw/master"
|
||||||
f"/keyword_func/{func_name}.py").content
|
f"/keyword_func/{func_name}.py").content
|
||||||
with open(file_path, "wb") as f:
|
with open(file_path, "wb") as f:
|
||||||
f.write(func_content)
|
f.write(func_content)
|
||||||
|
@ -93,15 +93,15 @@ async def throwit(context):
|
|||||||
reply_to = context.message.reply_to_msg_id
|
reply_to = context.message.reply_to_msg_id
|
||||||
if exists("plugins/throwit/" + str(target_user.user.id) + ".jpg"):
|
if exists("plugins/throwit/" + str(target_user.user.id) + ".jpg"):
|
||||||
if not exists('plugins/throwit/1.png'):
|
if not exists('plugins/throwit/1.png'):
|
||||||
r = get('https://raw.githubusercontent.com/xtaodada/PagerMaid_Plugins/master/throwit/1.png')
|
r = get('https://gitlab.com/Xtao-Labs/PagerMaid_Plugins/-/raw/master/throwit/1.png')
|
||||||
with open("plugins/throwit/1.png", "wb") as code:
|
with open("plugins/throwit/1.png", "wb") as code:
|
||||||
code.write(r.content)
|
code.write(r.content)
|
||||||
if not exists('plugins/throwit/2.png'):
|
if not exists('plugins/throwit/2.png'):
|
||||||
r = get('https://raw.githubusercontent.com/xtaodada/PagerMaid_Plugins/master/throwit/2.png')
|
r = get('https://gitlab.com/Xtao-Labs/PagerMaid_Plugins/-/raw/master/throwit/2.png')
|
||||||
with open("plugins/throwit/2.png", "wb") as code:
|
with open("plugins/throwit/2.png", "wb") as code:
|
||||||
code.write(r.content)
|
code.write(r.content)
|
||||||
if not exists('plugins/throwit/3.png'):
|
if not exists('plugins/throwit/3.png'):
|
||||||
r = get('https://raw.githubusercontent.com/xtaodada/PagerMaid_Plugins/master/throwit/3.png')
|
r = get('https://gitlab.com/Xtao-Labs/PagerMaid_Plugins/-/raw/master/throwit/3.png')
|
||||||
with open("plugins/throwit/3.png", "wb") as code:
|
with open("plugins/throwit/3.png", "wb") as code:
|
||||||
code.write(r.content)
|
code.write(r.content)
|
||||||
# 随机数生成
|
# 随机数生成
|
||||||
|
8
yvlu.py
8
yvlu.py
@ -160,20 +160,20 @@ async def yv_lu_(context):
|
|||||||
# 下载资源文件
|
# 下载资源文件
|
||||||
for num in range(1, 5):
|
for num in range(1, 5):
|
||||||
if not exists('plugins/yvlu/p' + str(num) + '.png'):
|
if not exists('plugins/yvlu/p' + str(num) + '.png'):
|
||||||
re = get('https://raw.githubusercontent.com/Xtao-Labs/PagerMaid_Plugins/master/yvlu/p' + str(num) + '.png')
|
re = get('https://gitlab.com/Xtao-Labs/PagerMaid_Plugins/-/raw/master/yvlu/p' + str(num) + '.png')
|
||||||
with open('plugins/yvlu/p' + str(num) + '.png', 'wb') as bg:
|
with open('plugins/yvlu/p' + str(num) + '.png', 'wb') as bg:
|
||||||
bg.write(re.content)
|
bg.write(re.content)
|
||||||
if not exists('plugins/yvlu/mask.png'):
|
if not exists('plugins/yvlu/mask.png'):
|
||||||
re = get('https://raw.githubusercontent.com/Xtao-Labs/PagerMaid_Plugins/master/yvlu/mask.png')
|
re = get('https://gitlab.com/Xtao-Labs/PagerMaid_Plugins/-/raw/master/yvlu/mask.png')
|
||||||
with open('plugins/yvlu/mask.png', 'wb') as bg:
|
with open('plugins/yvlu/mask.png', 'wb') as bg:
|
||||||
bg.write(re.content)
|
bg.write(re.content)
|
||||||
if not exists('plugins/yvlu/mask1.png'):
|
if not exists('plugins/yvlu/mask1.png'):
|
||||||
re = get('https://raw.githubusercontent.com/Xtao-Labs/PagerMaid_Plugins/master/yvlu/mask1.png')
|
re = get('https://gitlab.com/Xtao-Labs/PagerMaid_Plugins/-/raw/master/yvlu/mask1.png')
|
||||||
with open('plugins/yvlu/mask1.png', 'wb') as bg:
|
with open('plugins/yvlu/mask1.png', 'wb') as bg:
|
||||||
bg.write(re.content)
|
bg.write(re.content)
|
||||||
if not exists('plugins/yvlu/ZhuZiAWan-2.ttc'):
|
if not exists('plugins/yvlu/ZhuZiAWan-2.ttc'):
|
||||||
await context.edit('下载字体中。。。')
|
await context.edit('下载字体中。。。')
|
||||||
re = get('https://raw.githubusercontent.com/Xtao-Labs/Telegram_PaimonBot/master/assets/fonts/ZhuZiAWan-2.ttc')
|
re = get('https://gitlab.com/Xtao-Labs/Telegram_PaimonBot/-/raw/master/assets/fonts/ZhuZiAWan-2.ttc')
|
||||||
with open('plugins/yvlu/ZhuZiAWan-2.ttc', 'wb') as bg:
|
with open('plugins/yvlu/ZhuZiAWan-2.ttc', 'wb') as bg:
|
||||||
bg.write(re.content)
|
bg.write(re.content)
|
||||||
# 获取回复信息
|
# 获取回复信息
|
||||||
|
Loading…
Reference in New Issue
Block a user