Answer the question
In order to leave comments, you need to log in
How to make bold text and a picture under a link in a Telegram bot?
How to make such an attached picture in a telegram bot as in the screenshot I am making a
bot in python
The pyTelegrambotapi library
And another question. How to make text bold?
Answer the question
In order to leave comments, you need to log in
The text preview image is a link to the article. It appears automatically
To make the text different styles, you need to register a special attribute parse_mode=HTML
def jordan(bot, update):
chat_id = update.message.chat.id
with open('JordanPeterson.jpg', 'rb') as jordan_picture:
caption = "<a href='https://twitter.com/jordanbpeterson'>Jordan B. Peterson</a>"
bot.send_photo(
chat_id,
photo=jordan_picture,
caption=caption,
parse_mode=ParseMode.HTML
)
msg = <b>Jordan B. Peterson</b>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question