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

@ -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):