1 Star 0 Fork 0

卢国祥/jd-assistant

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
messenger.py 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
tychxn 提交于 2020-02-06 03:10 . Refactor: message push
#!/usr/bin/env python
# -*- encoding=utf8 -*-
import datetime
import json
import requests
from exception import AsstException
from log import logger
class Messenger(object):
"""消息推送类"""
def __init__(self, sc_key):
if not sc_key:
raise AsstException('sc_key can not be empty')
self.sc_key = sc_key
def send(self, text, desp=''):
if not text.strip():
logger.error('Text of message is empty!')
return
now_time = str(datetime.datetime.now())
desp = '[{0}]'.format(now_time) if not desp else '{0} [{1}]'.format(desp, now_time)
try:
resp = requests.get(
'https://sc.ftqq.com/{}.send?text={}&desp={}'.format(self.sc_key, text, desp)
)
resp_json = json.loads(resp.text)
if resp_json.get('errno') == 0:
logger.info('Message sent successfully [text: %s, desp: %s]', text, desp)
else:
logger.error('Fail to send message, reason: %s', resp.text)
except requests.exceptions.RequestException as req_error:
logger.error('Request error: %s', req_error)
except Exception as e:
logger.error('Fail to send message [text: %s, desp: %s]: %s', text, desp, e)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/noob-coder/jd-assistant.git
git@gitee.com:noob-coder/jd-assistant.git
noob-coder
jd-assistant
jd-assistant
master

搜索帮助