Python을 활용하여 Slack MSG Send

Python Slacker module 설치

pip install slacker
from slacker import Slacker

token = 'xoxo-토큰값'
slack = Slacker(token)
slack.chat.post_message('#channelName', 'message_descripton')

+ Recent posts