PagerMaid_Plugins/tel.py

30 lines
1.1 KiB
Python
Raw Normal View History

import json
2021-06-16 07:09:40 +00:00
import sys, codecs
sys.stdout = codecs.getwriter("utf-8")(sys.stdout.detach())
from requests import get
from pagermaid.listener import listener
2021-06-16 07:09:40 +00:00
from pagermaid.utils import obtain_message, alias_command
2021-06-16 07:09:40 +00:00
@listener(outgoing=True, command=alias_command("tel"),
description="手机号码归属地等信息查询。")
async def tel(context):
await context.edit("获取中 . . .")
try:
message = await obtain_message(context)
except ValueError:
await context.edit("出错了呜呜呜 ~ 无效的参数。")
return
req = get("https://tenapi.cn/tel?tel=" + message)
if req.status_code == 200:
data = json.loads(req.text)
if not 'msg' in data:
res = '电话号码:' + str(data['tel']) + '\n' + str(data['local']) + '\n' + str(data['duan']) + '\n' + str(
data['type']) + '\n' + str(data['yys']) + '\n' + str(data['bz'])
else:
res = data['msg']
await context.edit(res)
else:
await context.edit("出错了呜呜呜 ~ 无法访问到 API 服务器 。")