Many scripts today may take a long time to run, such as deep learning tasks. We wonder to check the results immediately after its accomplishment but keeping an eye on the process is not desirable.
This project is aimed to notify you through WeChat when certain command is completed.
update: this package is now released. you can install via pip3 install wechat-notify
.
This package rely on requests
.
pip3 install requests
This project rely on SERVER CHAN to push notifications to WeChat. Please follow the instructions on the website and set your SCKEY to environment variable as SERVER_CHAN_TOKEN
.
Your command's output and error will be write to file stdout
and stderr
regardless of whether notification will be push or not.
notify [bash command]
Note that special chars of bash, such as >
, need to be escaped so that the script can capture the corrent bash command. For example:
notify python train.py \> trail.log
WECHAT_NOTIFY will push three kinds of notifications.
-
[Success]: inform you [what command, start time, how long the command takes, last three lines of output(if exists)]
-
[Failed]: inform you [what command, start time, how long the command takes, last three lines of stderr(if exists)]
-
[Keyboard Interrupt]: inform you [what command, start time, 'Keyboard Interrupt']
- unit test
- Email support
- test on WeChat Work