Могу ли я отправить savfig в python telegram bot? - PullRequest
0 голосов
/ 09 ноября 2019

Я попытался добавить 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 в коде: функция на мой бот telegram

...