notice.py 504 B

1234567891011121314151617181920
  1. import requests
  2. class AiYuFeiFei:
  3. def __init__(self, token):
  4. self.url = f'https://iyuu.cn/{token}.send'
  5. def send_notification(self, title, content):
  6. """
  7. 发送通知
  8. :param title: 通知标题
  9. :param content: 通知内容
  10. :return:
  11. """
  12. data = {
  13. 'text': title,
  14. 'desp': content
  15. }
  16. response = requests.post(self.url, json=data)
  17. print("爱语飞飞提醒发送结果:", response.json())