PyComicPackRouMan/utils/Ntfy.py
2022-12-23 21:45:33 +08:00

11 lines
288 B
Python

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