python과 pushover 를 활용하여 서버 내 알람 발생시 Trouble Ticket 발생을 손쉽게 할 수 있다.
우선, pushover 사이트에 https://pushover.net/ 가입하여 APP_KEY와 USER_KEY를 발급 받는다.
python 답게 이미 관련 라이브러리가 pip 에 준비되어 있다.
pip install python-pushover 명령어로 바로 설치 가능 ( 관련 라이브러리는 https://github.com/Thibauth/python-pushover 문서 참조 )
아래 코드 몇 줄이면 바로 실행 가능함
from pushover import init, Client app_key = "APP KEY" user_key = "USER KEY" init(app_key) Client(user_key).send_message("Hello!", title="Hello")
'Python' 카테고리의 다른 글
python 으로 XE mysql 쿼리로 자동 게시물 등록하기 (1) | 2016.12.25 |
---|---|
python에서 bash 리눅스 명령어 실행 방법 (0) | 2016.12.10 |
Flask에서 mysql 쿼리 후 json 으로 결과 값 보내기 (0) | 2016.11.25 |
python 활용 instragram api 예제 코드 (0) | 2015.11.15 |
python과 mysql 또는 maraidb 연동 시 설치 방법 (0) | 2015.10.11 |