print_t.py module

This commit is contained in:
2025-06-07 16:20:14 -04:00
parent 5df7de92ea
commit 5735cd9641
4 changed files with 13 additions and 9 deletions

View File

@ -3,8 +3,9 @@ import time
import math
import re
from typing import Optional
from ntfy import Ntfy
from print_t import print_t
from typing import Optional
from ntfy import Ntfy
_time_now = time.time()
last_cpu_check_warning: float = _time_now
@ -35,3 +36,5 @@ class Tempature:
cpu_temp = math.floor(cpu_temp)
if cpu_temp >= self.cpu_warning_temp and self.__queue_time(last_cpu_check_warning):
self.ntfy.send(f"{Tempature.cpu_temp_warning_message} {cpu_temp} C")
else:
print_t("\033[31mCannot get a feasible tempature value for the CPU. (lm-sensors)\033[0m")

View File

@ -5,8 +5,8 @@ import cli
import cpu
from datetime import datetime
from typing import TypedDict
from ntfy import Ntfy
from typing import TypedDict
from ntfy import Ntfy
def start_prompt(server_url: str) -> str:
return f"""{datetime.now().strftime('%Y-%m-%d %H:%M:%S')}

View File

@ -1,10 +1,6 @@
import requests
from datetime import datetime
def print_t(out: str):
t = datetime.now()
print(f"({t.strftime('%Y-%m-%d')})[{t.strftime('%H:%M:%S')}]: " + out)
from print_t import print_t
class Ntfy:
def __init__(self, server: str):

5
src/print_t.py Normal file
View File

@ -0,0 +1,5 @@
from datetime import datetime
def print_t(out: str):
t = datetime.now()
print(f"({t.strftime('%Y-%m-%d')})[{t.strftime('%H:%M:%S')}]: " + out)