1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Forward message method done.

This commit is contained in:
eternnoir
2015-06-26 22:35:52 +08:00
parent e99815adcf
commit 67aaed4f20
3 changed files with 19 additions and 8 deletions

View File

@@ -111,4 +111,11 @@ class TeleBot:
reply_markup)
def forward_message(self, chat_id, from_chat_id, message_id):
"""
:param chat_id: which chat to forward
:param from_chat_id: which chat message from
:param message_id: message id
:return:
"""
return apihelper.forward_message(self.token, chat_id, from_chat_id, message_id)