test notification

This commit is contained in:
shininome
2023-10-02 12:55:46 +08:00
parent 7e46538d79
commit 7b8698ffe3

View File

@@ -0,0 +1,18 @@
from module.models import Notification
from module.notification.plugin.telegram import TelegramNotification
if __name__ == "__main__":
pic_url = "https://mikanani.me/images/Bangumi/202304/4b472208.jpg"
key = ""
url = f"https://api.telegram.org/bot{key}/sendPhoto"
id = ""
data = {
"chat_id": id,
"caption": "text",
"photo": pic_url,
"disable_notification": True,
}
# requests.post(url=url,data=data)
test_notification = Notification(official_title="成神之日",season = 1,episode = 12,poster_path = pic_url)
with TelegramNotification(token=key,chat_id= id) as tn:
tn.post_msg(test_notification)