hello
dhghhfgf click me
CODE:
import psutil
from plyer import notification
import time
battery = psutil.sensors_battery()
while(True):
percent = battery.percent
notification.notify(title="BATTERY PERCENTAGE",message=str(percent)+"% BATTERY REMAINING",timeout=100)
time.sleep(60*60)
OUTPUT:
Comments
Post a Comment