MCPcopy Create free account
hub / github.com/eternnoir/pyTelegramBotAPI / process_new_messages

Method process_new_messages

telebot/__init__.py:875–882  ·  view source on GitHub ↗

:meta private:

(self, new_messages)

Source from the content-addressed store, hash-verified

873 self.process_new_guest_message(new_guest_messages)
874
875 def process_new_messages(self, new_messages):
876 """
877 :meta private:
878 """
879 self._notify_next_handlers(new_messages)
880 self._notify_reply_handlers(new_messages)
881 self.__notify_update(new_messages)
882 self._notify_command_handlers(self.message_handlers, new_messages, 'message')
883
884 def process_new_edited_messages(self, new_edited_message):
885 """

Callers 8

test_message_handlerMethod · 0.95
process_new_updatesMethod · 0.95
do_POSTMethod · 0.45

Calls 4

_notify_next_handlersMethod · 0.95
__notify_updateMethod · 0.95