waitonbot/CallOfTheVoid.py

12 lines
280 B
Python

from slackclient import SlackClient
#One last call from beyond the grave
apifile = open("apitoken.txt", 'r')
SLACK_API = next(apifile)
apifile.close();
slack = SlackClient(SLACK_API)
slack.api_call("chat.postMessage", channel="@jacobhenry", text="Alas poor yorrick. I died!")