countdown

This commit is contained in:
Brightbites
2026-01-29 20:35:59 +00:00
parent e1f4840ce7
commit 7e5b5a8ab2
3 changed files with 39 additions and 13 deletions

19
GUI.py
View File

@@ -1,11 +1,20 @@
from Rewrite import *
import time
link = ""
fetch_gonogo()
fetch_major_concerns()
fetchGonogo()
fetchMajorConcerns()
print(update_gonogo())
print(update_major_concerns())
print(updateGonogo())
print(updateMajorConcerns())
#T and L toggle
#Scrub
#Scrub
structTime = time.strptime("29 January 2026 20 21 0", "%d %B %Y %H %M %S")
getLaunchTime(structTime)
while True:
t1 = time.monotonic()
print(updateCountdown())
t2 = time.monotonic()
sleep(1.0 - (t2 - t1))