Push me notifications from any device.
git clone https://github.com/r-f-g/push-me.git
pip install push-me/.
from pushme import Slack
#set your slackbot
Slack.bot(SLACK_BOT_TOKEN, BOT_NAME)
#send message
Sleck.message(USER, MESSAGE)
from pushme import Pushover
#set your pushover
#PUSHOVER_API_TOKENS = {USER: TOKEN, ...}
Pushover.set(PUSHOVER_TOKEN, PUSHOVER_API_TOKENS)
#send message
Pushover.message(API, MESSAGE, TITLE='INFO')