11 lines
272 B
Python
11 lines
272 B
Python
import requests
|
|
import setting
|
|
|
|
# 发送消息
|
|
def send_message(chat_id, text):
|
|
url = f'https://api.telegram.org/bot{setting.telegram_bot_key}/sendMessage'
|
|
formData = {
|
|
"chat_id" : chat_id,
|
|
"text" : text
|
|
}
|
|
requests.post(url, data= formData) |