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,6 +3,7 @@ import time
import math import math
import re import re
from print_t import print_t
from typing import Optional from typing import Optional
from ntfy import Ntfy from ntfy import Ntfy
@ -35,3 +36,5 @@ class Tempature:
cpu_temp = math.floor(cpu_temp) cpu_temp = math.floor(cpu_temp)
if cpu_temp >= self.cpu_warning_temp and self.__queue_time(last_cpu_check_warning): 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") 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

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