:11: RuntimeWarning: coroutine 'Bot.send_document' was never awaited
RuntimeWarning: Enable tracemalloc to get the object allocation traceback
[Program finished]
"python"
from telegram import Bot
bot_token = '5945984065:AAERsXuP4rk6sYUuIOdvuLHLuy7IL9rSeQA'
bot = Bot(token=bot_token)
chat_id = '563748652'
file_path = '/storage/emulated/0/Download/B70FMgkIIAAE2LN.jpg'
bot.send_document(chat_id=chat_id, document=open(file_path, 'rb'))