Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python을 사용한 Windows 10 토스트 알림

<시간/>

Python을 사용하여 Windows에서 발생한 이벤트에 대한 알리미를 만들 수 있습니다. . win10toast를 사용하면 매우 간단합니다. 기준 치수. 토스트에 익숙하다면 Android에서 그런 다음 Python으로 토스트 알림 이해하기 케이크 조각입니다. 이벤트가 발생할 때마다 나머지로 알림을 생성할 수 있습니다. 봅시다.

명령줄에서 다음 명령을 실행합니다. win10toast 설치 모듈

pip install win10toast

모듈이 성공적으로 설치된 경우 명령을 실행하면 다음과 같은 결과를 얻을 수 있습니다.

(win10toast 수집 https://files.pythonhosted.org/packages/d4/ba/95c0ea87d9bcad68b90d8cb130a313b939c88d8338a2fed7c11eaee972fe/win39-toast20 winorg/packages/d0/1b/2f292bbd742e369a100c91faa0483172cd91a1a422a6692055ac920946c5/pypiwin32-223-py3-none-any.whl(c:\ulska3의 c:\ulska3-none-any.whl요구 사항이 이미 충족됨:setuptools 이미 만족함:pywin32>=223 in c:\users\hafeezulkareem\anaconda3\lib\site-packages (from pypiwin32->win10toast) (223) 수집된 패키지 설치:pypiwin32, win10toastSuccessfully installed pypiwin32-220.9prest

토스트 알림을 만드는 단계

  • win10toast에서 ToastNotifier 클래스를 가져옵니다.

  • 클래스를 인스턴스화합니다.

  • 원하는 인수로 show_toast('title', 'message', duration =time_in_sec, icon_path ='.ico 파일 경로') 메서드를 호출합니다.

  • 성공하면 알림 기간이 완료된 후 출력으로 True가 표시됩니다.

간단한 예를 들어 보겠습니다.

예시

## win10toast에서 간단한 알림 메시지를 생성하는 프로그램 import ToastNotifier## 인스턴스화 classnotifier =ToastNotifier()## 필수 인수로 show_toast() 메서드 호출 notifier.show_toast("샘플 알림", "당신은 Tutorialspoint에서 배우고 있습니다 ", 기간 =25, icon_path ="globe.ico")

위의 프로그램을 실행하면 다음과 같은 결과를 얻을 수 있습니다.

Python을 사용한 Windows 10 토스트 알림

시스템에서 이벤트가 발생할 때 이 알림 프로그램을 추가할 수 있습니다. 튜토리얼에 대해 궁금한 점이 있으면 댓글 섹션에 언급해 주세요.