Add files via upload

This commit is contained in:
Tekano Mbonani 2023-08-30 15:53:01 +02:00 committed by GitHub
parent 3108d05d03
commit 01cbb03f40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,15 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#Import libraries
import pync
import time
n = 10# number of seconds between notifications
start = 0# number of second at the beginning of running code
while True:
start += n
pync.notify("Type notification message here, e.g., ALERT!!!,"
+str(start)+"seconds have passed!")
time.sleep(n)# number of seconds between notifications