Delete lsp.py

This commit is contained in:
xmengnet 2021-09-22 17:54:05 +08:00 committed by GitHub
parent cb3aa190bb
commit 320c487bfb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,41 +0,0 @@
from zzcore import StdAns, mysakuya
import requests
from config import LOLIKEYS
class Ans(StdAns):
AllowGroup = [874769998, 596678277, 794290657, 204097403]
def GETMSG(self):
if len(self.parms) == 1:
code, picurl = getsetu()
else:
keyword = self.parms[1]
if mysakuya(self, keyword) == False:
return "不许你们看咲夜的涩图!!"
code, picurl = getsetu(keyword)
if code == 0:
return f'[CQ:reply,id={self.mid}][CQ:image,file={picurl},type=flash]'
else:
return f'[CQ:reply,id={self.mid}] 什么东西出错了code:{code}'
def getsetu(keyword=''):
url = 'https://api.lolicon.app/setu/'
params = {
'apikey': LOLIKEYS,
'keyword': keyword,
'r18': 0
}
try:
resp = requests.get(url=url, params=params, timeout=5).json()
except:
return 500, ''
picurl = ''
if resp['code'] == 0:
picurl = "https://r.zjuyk.site/" + resp['data'][0]['url']
return resp['code'], picurl