| 1234567891011121314151617181920 |
- import requests
- class AiYuFeiFei:
- def __init__(self, token):
- self.url = f'https://iyuu.cn/{token}.send'
- def send_notification(self, title, content):
- """
- 发送通知
- :param title: 通知标题
- :param content: 通知内容
- :return:
- """
- data = {
- 'text': title,
- 'desp': content
- }
- response = requests.post(self.url, json=data)
- print("爱语飞飞提醒发送结果:", response.json())
|