mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-14 10:30:35 +08:00
test notification
This commit is contained in:
18
backend/src/test/test_notifucation.py
Normal file
18
backend/src/test/test_notifucation.py
Normal 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)
|
||||
Reference in New Issue
Block a user