examiner
1.0.0
作業系統通知中心監控,可編寫對應處理腳本
詳細實現介紹請見這篇推文:不論微信釘釘還是什麼軟體,我寫了一個通用的訊息監控處理機器人
pip install examiner
# 新特性
pip install git+https://github.com/howie6879/examiner
# 开发
git clone https://github.com/howie6879/examiner
cd examiner
# 推荐使用pipenv 你也可以使用自己中意的环境构建方式
pipenv install --python=/Users/howie6879/anaconda3/envs/python36/bin/python3.6 --skip-lock
接下來只需要在根目錄建立自己的監控腳本就行,例如監控微信,建立檔案命名為wechat_app.py
:
from examiner import Examiner
app_names = [ "Wechat" ]
examiner_app = Examiner ( app_names )
info_list = examiner_app . get_notifications ()
for each in info_list :
print ( each )
輸出:
{ ' title ' : '老胡的储物柜' , ' subtitle ' : ' ' , ' body ' : '测试消息监控,任何应用都行' , ' delivered_date ' : datetime.datetime(2019, 10, 20, 21, 40, 26, 428654), ' presented ' : 1, ' app_identifier ' : ' com.tencent.xinwechat ' , ' app_name ' : ' WeChat ' , ' md5 ' : ' 75e24e2ccc502f01c101fcbd3637950b ' }