pip install py-multi-pager
Create Note object :
my_note = note.NOTE()
Select Email :
mail = my_note.Mail(YOUR_EMAIL_ID, YOUR_EMAIL_PASSWORD)
Set recevier's mail address, addressee, sender :
mail.recevier = "[email protected]"
mail.message = MESSAGE
mail.set_from = ME
mail.set_to = YOU
mail.set_subject = SUBJECT
Send email
mail.send_email()
- Access to https://notify-bot.line.me/doc/en/
- Login with your line account and go to 'My Page'
Get Line Notify Token
- Access to https://notify-bot.line.me/doc/en/
- Login with Line Account
- Go to Mypage
- Generate Access Token
Set your Line Token in config.py
# Line Token
LINE_API_ID = "{Your Line Account}"
LINE_API_PASSWORD = "{Your Token}"
Create Note object :
my_note = note.NOTE()
Select Line and set messages:
line = my_note.Line(LINE_API_ID, LINE_API_PASSWORD)
line.message = "Model Training Finished!"