IT/👨‍💻Computer Science

slack - slack api 정리

지식모아이령 2021. 7. 30. 11:24

공식 문서

 

Web API methods | Slack

 

api.slack.com

설치

pip install slackclient

코드 예시

import slack

# slack 메시지 전송
def send_message(ch, msg):
    client.chat_postMessage(channel=ch, text=msg, as_user=True)

# slack 파일 전송
def file_upload(ch, filepath):
    client.files_upload(channels=ch, file=filepath)

client = slack.WebClient(token="발급받은 키")

 

더 읽어보기

 

Slack API Example

Slack API Example. GitHub Gist: instantly share code, notes, and snippets.

gist.github.com