This is a Python decorator that can send email for various purpose.
By the way, I am also planning to expand the receiving channels from email to Message, Telegram, Wechat, or even more.
If you are interested, let's work together!
Often we have some time-consuming script, and we want to leave it running for a while without having to check every few minutes if it has been completed.
This package will offer you a one-line experience (a function decorator) of sending you email report with customized information.
This is definitely an easy function, I believe many guys have written their own equivalent one. What I did is to simplify it into a decorator, so it is now even more convenient!
pip install py_reminder==1.0.2
We strongly recommend to use an unimportant mailbox to send messages, since the password is going to be stored in plain text. We're looking for ways to work around this - you're welcome to help!
For the first time, you should specify configuration:
from py_reminder import config
config(address='[email protected]',
password='123456',
smtp='smtp.example.com',
port=999, # currently it should be non-SSL port
default_to='[email protected]')
You can ignore default_to
. It will set to be the same as address
by default.
If you receive a testing email, then the configuration is done.
from py_reminder import monitor
@monitor('This is a task')
def foo():
return 0
foo()
If you want to specify the receiver:
@monitor(task='This is a task', to='[email protected]')
If you would like to only send email when error caught:
@monitor(task='This is a task', mute_success=True)
If you would like to switch on and off the notification as a whole:
arg = True
@monitor(task='This is a task', disable=arg)
Another way to use it without decorator:
from py_reminder import send_email
send_email(task="This is a task")
And you will see:
For error, you will see:
- GMail
- I used a new registered account and was banned after one day.
- Haven't tested personal account yet.
- Foxmail
- I use my personal account and it is all good up to now (two months).
- 163
- It works. Port should be
25
.
- It works. Port should be
Tests on other email vendors are welcome!
I have some worked config files. You can simply copy paste it to the ~/.config
then skip the configuration process. If you would like to use the config files, just send email to me.