Python으로 LINE Notify에 알림 보내기

약간의 툴이나 bot를 만들었을 때, LINE에 통지하고 싶다-라고 하는 일이 있습니다.
그 때마다 구구나 과거의 소스를 보거나 하고 있으므로 여기에 방법을 적어 둡니다.

LINE Notify 토큰 획득



여기에서 계정을 등록하여 토큰을 받습니다.
htps : // 후 fy 보 t. 네. 메/그럼/

계정 생성 후 내 페이지 > 토큰 발급 > 토큰 이름, 토크룸 설정 > 발급
발행된 토큰을 복사해 둡니다.


파이썬에서 알림


pip install requests 가 끝나고 있으면 이하 코피페로 두세요.

Notify.py
import requests

def main():
    send_line_notify('てすとてすと')

def send_line_notify(notification_message):
    """
    LINEに通知する
    """
    line_notify_token = 'ここに発行したトークン'
    line_notify_api = 'https://notify-api.line.me/api/notify'
    headers = {'Authorization': f'Bearer {line_notify_token}'}
    data = {'message': f'message: {notification_message}'}
    requests.post(line_notify_api, headers = headers, data = data)

if __name__ == "__main__":
    main()

실행하면 이런 느낌으로 통지됩니다 🔔


비고


  • 공식 문서는 이쪽
  • LINE Notify

  • 소스 코드를 게시 할 때 토큰을 직접 쓰지 않도록주의하십시오.
  • 좋은 웹페이지 즐겨찾기