PagerMaid_Plugins/ghs.py

41 lines
1.4 KiB
Python
Raw Normal View History

2021-03-07 12:51:05 +00:00
import random
from requests import get
from pagermaid.listener import listener
from os import remove
2021-06-16 07:09:40 +00:00
from pagermaid.utils import alias_command
2021-03-07 12:51:05 +00:00
2021-06-16 07:09:40 +00:00
@listener(is_plugin=True, outgoing=True, command=alias_command("ghs"),
2021-03-07 12:51:05 +00:00
description="随机获取涩情写真")
async def ghs(context):
await context.edit("搞颜色中 . . .")
status = False
2021-06-16 07:09:40 +00:00
for _ in range(20): # 最多重试20次
website = random.randint(0, 0)
2021-03-07 12:51:05 +00:00
filename = "ghs" + str(random.random())[2:] + ".png"
try:
2021-06-16 07:09:40 +00:00
img = get("https://se.jiba.xyz/api.php")
2021-03-07 12:51:05 +00:00
if img.status_code == 200:
with open(filename, 'wb') as f:
f.write(img.content)
await context.edit("传颜色中 . . .")
2021-06-16 07:09:40 +00:00
await context.client.send_file(context.chat_id, filename, caption="#NSFW ⚠️色图警告⚠️")
2021-03-07 12:51:05 +00:00
status = True
2021-06-16 07:09:40 +00:00
break # 成功了就赶紧结束啦!
2021-03-07 12:51:05 +00:00
except:
try:
remove(filename)
except:
pass
continue
try:
remove(filename)
except:
pass
try:
await context.delete()
except:
pass
if not status:
2021-06-16 07:09:40 +00:00
await context.client.send_message(context.chat_id, "出错了呜呜呜 ~ 试了好多好多次都无法访问到服务器(没有颜色搞啦!) 。")