examiner
1.0.0
Surveillance du centre de notification du système d'exploitation, les scripts de traitement correspondants peuvent être écrits
Pour une introduction détaillée de la mise en œuvre, consultez ce tweet : Indépendamment de WeChat DingTalk ou de tout autre logiciel, j'ai écrit un robot universel de surveillance et de traitement des messages.
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
Ensuite, il vous suffit de créer votre propre script de surveillance dans le répertoire racine, comme la surveillance de WeChat, et de créer un fichier nommé 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 )
Sortir:
{ ' 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 ' }