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