This commit is contained in:
SiHuan 2020-03-16 16:47:54 +08:00
parent 8732bdb13c
commit 370c6862f6
2 changed files with 33 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
env
__pycache__
.vscode
config.py

32
worker/pixiv.py Normal file
View file

@ -0,0 +1,32 @@
from zzcore import StdAns
import requests
class Ans(StdAns):
AllowGroup = [959613860]
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