首页 > 解决方案 > 我可以将 savfig 发送到 python 电报机器人吗

问题描述

我尝试添加 bot.sendPhoto(chat_id=chat_id, photo=' http://s33.postimg.org/plci93h4v/image.png '),我有 savfig 并且需要将图像发送到我的电报机器人

import telebot
from flask import Flask, request


token = '9542...................ke8nT10'

URL = 'http://re......here.com/'
bot = telebot.TeleBot(token, threaded=False)
bot.remove_webhook()
bot.set_webhook(url=URL)

app = Flask(__name__)
@app.route('/', methods=['POST'])
def webhook():
    update = telebot.types.Update.de_json(request.stream.read().decode('utf-8'))
    bot.process_new_updates([update])
    return 'ok',200

def code:
        plt.savefig('plot_name.png', dpi = 300)

@bot.message_handler(commands=['start'])  # welcome message handler
def start(message):
    bot.sendPhoto(chat_id=chat_id)

我正在尝试将 savfig 以代码:功能发送到我的电报机器人

标签: python-3.xmatplotlibtelegramtelegram-botpython-telegram-bot

解决方案


bot.send_photo(chat_id, photo=open('plot_name.png', 'rb'))


推荐阅读