From f98de6258f541a79e64f34880ac4bd37b46f232d Mon Sep 17 00:00:00 2001 From: liyp Date: Sat, 13 Nov 2021 19:26:56 +0800 Subject: [PATCH] =?UTF-8?q?icp=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- worker/icp.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 worker/icp.py diff --git a/worker/icp.py b/worker/icp.py new file mode 100644 index 0000000..9345318 --- /dev/null +++ b/worker/icp.py @@ -0,0 +1,25 @@ +from zzcore import StdAns +import requests + + +class Ans(StdAns): + def GETMSG(self): + # print('https://api.devopsclub.cn/api/icpquery?url=' + self.parms[1]) + r = requests.get(url='https://api.devopsclub.cn/api/icpquery?url=' + self.parms[1]).json() + if r['code'] == 0: + organizer_name = r['data']['organizer_name'] + organizer_nature = r['data']['organizer_nature'] + recording_license_number = r['data']['recording_license_number'] + site_name = r['data']['site_name'] + if r['data']['site_index_url'] == '': + site_index_url = '' + else: + site_index_url = '网站首页地址:' + r['data']['site_index_url'] + msg = '主办单位名称:' + organizer_name + '\n' + \ + '主办单位性质:' + organizer_nature + '\n' + \ + '网站备案/许可证号:' + recording_license_number + '\n' + \ + '网站名称:' + site_name + '\n' + \ + site_index_url + else: + msg = '可能是查询接口坏掉了,可不是咱!' + return msg