forked from a-fruity-melon/PagerMaid_Plugins
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbingwall.py
59 lines (55 loc) · 1.88 KB
/
bingwall.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import json
import random
from requests import get
from pagermaid import version
from pagermaid.listener import listener
from os import remove
def get_url(num):
json_url = f"https://www.bing.com/HPImageArchive.aspx?format=js&mkt=zh-CN&n=1&idx={str(num)}"
req = get(json_url)
url = " "
copyright = " "
if req.status_code == 200:
data = json.loads(req.text)
url = data['images'][0]['url']
copyright = data['images'][0]['copyright']
return url, copyright
@listener(is_plugin=True, outgoing=True, command="bingwall",
description="获取Bing每日壁纸")
async def bingwall(context):
await context.edit("获取壁纸中 . . .")
status = False
for _ in range(20): # 最多重试20次
website = random.randint(0, 0)
num = random.randint(1, 7)
url, copyright = get_url(num)
image_url = f"https://www.bing.com{url}"
filename = "wallpaper" + str(random.random())[2:] + ".jpg"
try:
if website == 0 and image_url != " ":
img = get(image_url)
else:
continue
if img.status_code == 200:
with open(filename, 'wb') as f:
f.write(img.content)
await context.edit("上传中 . . .")
await context.client.send_file(context.chat_id, filename, caption=f"#bing wallpaper\n{str(copyright)}")
status = True
break # 成功了就赶紧结束啦!
except:
try:
remove(filename)
except:
pass
continue
try:
remove(filename)
except:
pass
try:
await context.delete()
except:
pass
if not status:
await context.client.send_message(context.chat_id, "出错了呜呜呜 ~ 试了好多好多次都无法访问到服务器 。")