python, LINE Notify API를 사용하여 LINE 메신저의 알림 메시지 기능(LINE Notify)을 사용하여 알림봇만들기
(line notify API는 메시지 수신 기능만 제공)
1.LINE 메신저를 설치한 후 계정에 이메일을 등록한다.
2.토큰발급 : https://notify-bot.line.me/ 에 로그인하여 My page 접속
3.Generate token 버튼 클릭하여 token 생성 -기본정보입력
4.생성된 token 복사
5.라이브러리 설치 : pip install line_notify
6.코드작성
from line_notify import LineNotify
ACCESS_TOKEN = "발급받은 토큰 입력"
notify = LineNotify(ACCESS_TOKEN)
notify.send("TEST 메시지 발송")
'백엔드 프레임워크 & 언어 > Python' 카테고리의 다른 글
Node.js와 Python으로 Line Notify 보내기 (0) | 2024.02.12 |
---|---|
WARNING: There was an error checking the latest version of pip (0) | 2024.02.03 |
notepad++ 한글 폰트의 크기가 작게 나오는 현상 해결 (0) | 2023.08.13 |
Pandas - Series 예제 (0) | 2023.07.24 |
"from datetime import datetime"과 "from datetime import timedelta" (0) | 2023.07.24 |