skip to Main Content

I manage a channel that give links/information to users. Every time I update the content of the channel I have to update index of the channel in a post (message) manually.

Please teach me how to update a telegram post using telegram bot in python. Thanks a lots!

2

Answers


  1. The Bot API provides the method editMessageText that you can use to edit the text of a message. Every library that provides a wrapper for the Bot API should also provide a wrapper for this method (in every language, not only in Python).

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search