Python 通过 api 将报告发送到我的 gmail 或网站的错误报告发件人脚本

Python error report sender script that sends reports to my gmail or website via api

最近我一直在尝试编写一个错误报告发送器的脚本,它会在检测到错误或错误时将错误报告发送到我的 gmail。我正计划让它通过 api 将报告发送到我的 gmail 或网站。我该怎么做?

我个人比较喜欢telegram所以做了这个功能来举报

def report(bot_message):
    
    bot_token = "your bot token"
    bot_chatID = "your chat id "
    send_text = 'https://api.telegram.org/bot' + bot_token + '/sendMessage?chat_id=' + bot_chatID + '&parse_mode=Markdown&text=' + str(bot_message)
    response = requests.get(send_text)
    return response.json()