XZZ/worker/pixiv.py

32 lines
1 KiB
Python
Raw Normal View History

2020-03-16 16:47:54 +08:00
from zzcore import StdAns
import requests
class Ans(StdAns):
2020-03-16 17:14:24 +08:00
AllowGroup = [805197917,959613860]
2020-03-16 16:47:54 +08:00
def GETMSG(self):
url = 'https://api.lolicon.app/setu/'
params = {
'apikey': '095536795e6f0715593173',
}
if len(self.parms) < 2:
try:
resp = requests.get(url=url,params=params).json()
picurl = resp['data'][0]['url']
msg = picurl
except Exception as e:
print(e)
msg = '什么东西坏掉了,大概是Pixiv吧...不可能是咱!'
return msg
else:
keyword = self.raw_msg['message'][7:]
params['keyword'] = keyword
try:
resp = requests.get(url=url,params=params).json()
picurl = resp['data'][0]['url']
msg = picurl
except Exception as e:
print(e)
msg = '咱没查到也有可能是Pixiv坏掉了'
return msg