Python/Python Programming

[Python] Send Slack Massages and upload file

Pydole 2019. 8. 2. 20:42

 

Token : https://api.slack.com/custom-integrations/legacy-tokens

 

Legacy tokens

Learn how to build bot users, send notifications, and interact with workspaces using our APIs.

api.slack.com

 

Slack에 채널을 만들고, 토큰을 복사

 

pip install slacker 설치

 

import slacker

token = 'token key'
slack = slacker.Slacker(token)

# send message
slack.chat.post_message('#channel', 'messages')

# file upload
slack.files.upload(file, channels='#channel')