PyComicPackRouMan/utils/Ntfy.py
2023-01-09 20:26:08 +08:00

12 lines
329 B
Python

import requests
class ntfy:
@classmethod
def sendMsg(cls, msg,alert=True):
try:
print(f"#ntfy: {msg}")
if alert:
requests.post("https://ntfy.caiwenxiu.cn/PyComic",
data=msg.encode(encoding='utf-8'))
except:
print(f"#ntfy error: {msg}")