title: Notifications with Plyer tags: python notification h1: ## To Install ```bash apt install python3-plyer # or python -m pip install plyer ``` ## Example ```py import time from plyer import notification notification.notify( title="hello", message="hello world", timeout=10 ) ```