examiner
1.0.0
オペレーティングシステム通知センターの監視、対応する処理スクリプトを作成可能
詳細な実装の紹介については、このツイートを参照してください: WeChat DingTalk やその他のソフトウェアに関係なく、私は汎用的なメッセージ監視および処理ロボットを作成しました。
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 の監視など) を構築し、 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 ' }