반응형
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- draw
- 오라클
- jQuery
- 주식
- 리액트
- 덩크 하이
- 드로우
- JavaScript
- 리눅스
- 주식공부
- 발매예정
- Github
- 코로나19
- 제이쿼리
- 나이키
- dunklow
- 덩크 로우
- 파이썬
- 자바스크립트
- stockx.com
- Linux
- Dunk Low
- sacai
- Python
- Nike
- react
- dunk high
- oracle
- 덩크로우
- GIT
Archives
- Today
- Total
Life goes slowly...
[Python] 파이썬 - Slack 알람설정하기 본문
728x90
반응형
Simple 버전
from slacker import Slacker
#슬랙봇의 토큰값은 각각 수정
token = 'xoxb-364xxxxxxxx0-235xxxxxxxx4-Exxxxxxxxxxxxi4’
slack = Slacker(token)
mychannel = “chanel” #채널명
mytext = "넌 누구니?” #보낼 메시지
# response 변수 없으면 응답값이 화면에 출력됨
response = slack.chat.post_message(mychannel, mytext)
#복사할 때 큰 따옴표, 작은 따옴표가 바뀔 수 있으니 에러난다면 다시 타이핑해줄 것!
Text 버전
from slacker import Slacker
#슬랙봇의 토큰값은 각각 수정
token = 'xoxb-364xxxxxxxx0-235xxxxxxxx4-Exxxxxxxxxxxxi4’
slack = Slacker(token)
attachments_dict = dict()
attachments_dict['pretext'] = "<금융위원회 보도자료>"
attachments_dict['title'] = "창업·중소기업 자금조달 활성화로 혁신성장을 지원하겠습니다"
attachments_dict['title_link'] = "http://www.fsc.go.kr/info/ntc_news_view.jsp?bbsid=BBS0030&page=1&sch1=&sword=&r_url=&menu=7210100&no=32512"
attachments_dict['mrkdwn_in'] = ["text", "pretext"]
attachments = [attachments_dict]
response = slack.chat.post_message(channel="#news", text=None, attachments=attachments)
출처 : http://doodoodoo.egloos.com/2228874
728x90
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[Python] 파이썬(Python)의 요소를 묶어주는 함수 - zip() 함수 (0) | 2020.11.18 |
---|---|
[Python] 파이썬(Python)의 카운팅 함수 - count(), len() 함수 (0) | 2020.11.17 |
[Python] 파이썬 pass 와 continue 차이점 (0) | 2020.11.16 |
[Python] 파이썬 파일 복사 모듈 - shutil 모듈 (0) | 2020.11.15 |
[Python] 파이썬 라이브러리 beautiful soup 으로 웹 크롤링하기 (0) | 2020.08.21 |
[Python] 파이썬 엑셀 활용 openpyxl 라이브러리 (0) | 2020.08.10 |
[Python] 파이썬 pyinstaller 모듈로 실행파일로 만들기 (0) | 2020.08.10 |
[Python] 파이썬 nested function 중첩 함수 (0) | 2020.08.09 |
Comments