Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/newbie/__init__.py

28 lines
1,010 B
Python
Raw Normal View History

2020-06-13 12:43:43 +00:00
# -*- coding:utf-8 -*-
import json
2020-08-07 13:13:12 +00:00
import aiohttp
2020-08-02 12:27:11 +00:00
from pbc import main2
2020-07-25 16:51:08 +00:00
import re
2020-06-13 12:43:43 +00:00
async def new():
2020-08-07 13:13:12 +00:00
url = 'https://minecraft-zh.gamepedia.com/api.php?action=query&list=logevents&letype=newusers&format=json'
async with aiohttp.ClientSession() as session:
async with session.get(url) as req:
if req.status != 200:
return f"请求发生时错误:{req.status}"
else:
text1 = await req.text()
file = json.loads(text1.text)
d = []
for x in file['query']['logevents']:
d.append(x['title'])
print(str(d))
y = await main2(d)
space = '\n'
print(str(y))
j = space.join(y)
f = re.findall(r'.*\n.*\n.*\n.*\n.*',j)
g = '这是当前的新人列表:\n'+f[0]+'\n...仅显示前5条内容'
if g.find('<吃掉了>') != -1 or g.find('<全部吃掉了>')!=-1:
return(g+'\n检测到外来信息介入请前往日志查看所有消息。Special:日志?type=newusers')
else:
return(g)