mirror of
https://github.com/unixtensor/proxmox-ntfy.git
synced 2025-06-28 03:48:05 +00:00
print_t.py
module
This commit is contained in:
@ -3,6 +3,7 @@ import time
|
||||
import math
|
||||
import re
|
||||
|
||||
from print_t import print_t
|
||||
from typing import Optional
|
||||
from ntfy import Ntfy
|
||||
|
||||
@ -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")
|
||||
|
@ -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
5
src/print_t.py
Normal 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)
|
Reference in New Issue
Block a user