# python
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import requests, json hookUrl = "https://hook.dooray.com/services/[key]" headers = {'Content-Type': 'application/json'} data = { botName: "testBot", botIconImage: "https://www.tistory.com/favicon.ico", text: "Hi bot", attachments: [ { title: "go to naver", titleLink: "https://www.naver.com", color: "orange" } ] } requests.post(hookUrl, headers=headers, data=json.dumps(data)) | cs |
'개발 > Python' 카테고리의 다른 글
파이썬 mysql 연동 (pymysql, pandas) (0) | 2020.11.17 |
---|---|
파이썬 글자 색 지정 (0) | 2020.11.05 |
파이썬 json 파싱 및 엑셀 파일 저장 (0) | 2020.10.20 |
python mysql 연동 (pymysql) (0) | 2020.09.28 |
python 로그 출력 (logging) (0) | 2020.09.28 |