当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 9

wenxuefeng/COVID-19_notify
暂停

forked from Jemmy/COVID-19_notify
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.py 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
Jemmy 提交于 2020-01-28 19:49 . initialize project
#!/usr/local/bin/python3
# _*_ coding: utf-8 _*_
from util import ColorUtil,RedisConn
from notify import DingDing,ServerChan
import Config
item = {
"id": 1000000000,
"title": "测试消息标题",
"summary": "测试消息内容",
"infoSource": "测试消息来源"
}
def test_redis():
redis_conn = RedisConn()
redis_conn.pingpingping()
def test_dingding():
if not Config.NOTIFY_OPTION["dingding"]:
return
ding = DingDing()
if ding.send(item):
print("{}钉钉消息发送成功{}".format(ColorUtil.get_green(),ColorUtil.get_reset()))
else:
print("{}钉钉消息发送失败{}".format(ColorUtil.get_red(),ColorUtil.get_reset()))
def test_serverChan():
if not Config.NOTIFY_OPTION["server_chan"]:
return
s = ServerChan()
if s.send(item):
print("{}Server酱消息发送成功{}".format(ColorUtil.get_green(),ColorUtil.get_reset()))
else:
print("{}Server酱消息发送失败{}".format(ColorUtil.get_red(),ColorUtil.get_reset()))
def test_all():
test_redis()
test_dingding()
test_serverChan()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wen_xue_feng/COVID-19_notify.git
[email protected]:wen_xue_feng/COVID-19_notify.git
wen_xue_feng
COVID-19_notify
COVID-19_notify
master

搜索帮助