SYMBOL INDEX (2829 symbols across 130 files) FILE: examples/anonymous_bot.py function start (line 24) | def start(message: types.Message): function find (line 44) | def find(message: types.Message): function stop (line 82) | def stop(message: types.Message): function chatting (line 111) | def chatting(message: types.Message): FILE: examples/asynchronous_telebot/callback_data_examples/advanced_calendar_example/filters.py class CalendarCallbackFilter (line 10) | class CalendarCallbackFilter(AdvancedCustomFilter): method check (line 13) | async def check(self, call: types.CallbackQuery, config: CallbackDataF... class CalendarZoomCallbackFilter (line 17) | class CalendarZoomCallbackFilter(AdvancedCustomFilter): method check (line 20) | async def check(self, call: types.CallbackQuery, config: CallbackDataF... function bind_filters (line 24) | def bind_filters(bot: AsyncTeleBot): FILE: examples/asynchronous_telebot/callback_data_examples/advanced_calendar_example/keyboards.py function generate_calendar_days (line 12) | def generate_calendar_days(year: int, month: int): function generate_calendar_months (line 67) | def generate_calendar_months(year: int): FILE: examples/asynchronous_telebot/callback_data_examples/advanced_calendar_example/main.py function start_command_handler (line 19) | async def start_command_handler(message: types.Message): function calendar_command_handler (line 26) | async def calendar_command_handler(message: types.Message): function calendar_action_handler (line 33) | async def calendar_action_handler(call: types.CallbackQuery): function calendar_zoom_out_handler (line 42) | async def calendar_zoom_out_handler(call: types.CallbackQuery): function callback_empty_field_handler (line 51) | async def callback_empty_field_handler(call: types.CallbackQuery): FILE: examples/asynchronous_telebot/callback_data_examples/simple_products_example.py function products_keyboard (line 22) | def products_keyboard(): function back_keyboard (line 36) | def back_keyboard(): class ProductsCallbackFilter (line 49) | class ProductsCallbackFilter(AdvancedCustomFilter): method check (line 52) | async def check(self, call: types.CallbackQuery, config: CallbackDataF... function products_command_handler (line 57) | async def products_command_handler(message: types.Message): function product_one_callback (line 63) | async def product_one_callback(call: types.CallbackQuery): function products_callback (line 69) | async def products_callback(call: types.CallbackQuery): function back_callback (line 81) | async def back_callback(call: types.CallbackQuery): FILE: examples/asynchronous_telebot/chat_join_request.py function make_some (line 7) | async def make_some(message: telebot.types.ChatJoinRequest): FILE: examples/asynchronous_telebot/chat_member_example.py function chat_m (line 8) | async def chat_m(message: types.ChatMemberUpdated): function my_chat_m (line 16) | async def my_chat_m(message: types.ChatMemberUpdated): function delall (line 31) | async def delall(message: types.Message): function set_tag (line 36) | async def set_tag(message: types.Message): FILE: examples/asynchronous_telebot/continue_handling.py function start (line 8) | async def start(message): function start2 (line 13) | async def start2(message): FILE: examples/asynchronous_telebot/custom_filters/admin_filter_example.py function answer_for_admin (line 7) | async def answer_for_admin(message): FILE: examples/asynchronous_telebot/custom_filters/advanced_text_filter.py function hello_handler (line 17) | async def hello_handler(message: types.Message): function hello_handler_ignore_case (line 22) | async def hello_handler_ignore_case(message: types.Message): function contains_handler (line 27) | async def contains_handler(message: types.Message): function contains_handler_ignore_case (line 32) | async def contains_handler_ignore_case(message: types.Message): function starts_with_handler (line 37) | async def starts_with_handler(message: types.Message): function starts_with_handler_ignore_case (line 42) | async def starts_with_handler_ignore_case(message: types.Message): function ends_with_handler (line 47) | async def ends_with_handler(message: types.Message): function ends_with_handler_ignore_case (line 52) | async def ends_with_handler_ignore_case(message: types.Message): function send_callback (line 57) | async def send_callback(message: types.Message): function callback_query_handler (line 68) | async def callback_query_handler(call: types.CallbackQuery): function callback_query_handler_ignore_case (line 73) | async def callback_query_handler_ignore_case(call: types.CallbackQuery): function send_poll (line 78) | async def send_poll(message: types.Message): function poll_question_handler (line 84) | async def poll_question_handler(poll: types.Poll): function poll_question_handler_ignore_case (line 89) | async def poll_question_handler_ignore_case(poll: types.Poll): function multiple_patterns_handler (line 95) | async def multiple_patterns_handler(message: types.Message): function multiple_starts_with_handler (line 101) | async def multiple_starts_with_handler(message: types.Message): function multiple_ends_with_handler (line 107) | async def multiple_ends_with_handler(message: types.Message): function ban_command_handler (line 114) | async def ban_command_handler(message: types.Message): FILE: examples/asynchronous_telebot/custom_filters/general_custom_filters.py class MainFilter (line 7) | class MainFilter(telebot.asyncio_filters.AdvancedCustomFilter): method check (line 10) | async def check(message, text): class IsAdmin (line 14) | class IsAdmin(telebot.asyncio_filters.SimpleCustomFilter): method check (line 17) | async def check(message: telebot.types.Message): function admin_rep (line 23) | async def admin_rep(message): function not_admin (line 27) | async def not_admin(message): function welcome_hi (line 31) | async def welcome_hi(message): function bye_user (line 35) | async def bye_user(message): FILE: examples/asynchronous_telebot/custom_filters/id_filter_example.py function admin_rep (line 8) | async def admin_rep(message): function not_admin (line 12) | async def not_admin(message): FILE: examples/asynchronous_telebot/custom_filters/is_filter_example.py function start_filter (line 10) | async def start_filter(message): function text_filter (line 15) | async def text_filter(message): FILE: examples/asynchronous_telebot/custom_filters/text_filter_example.py function start_filter (line 8) | async def start_filter(message): function text_filter (line 13) | async def text_filter(message): FILE: examples/asynchronous_telebot/custom_states.py class MyStates (line 13) | class MyStates(StatesGroup): function start_ex (line 22) | async def start_ex(message: types.Message, state: StateContext): function any_state (line 33) | async def any_state(message: types.Message, state: StateContext): function name_get (line 44) | async def name_get(message: types.Message, state: StateContext): function ask_color (line 55) | async def ask_color(message: types.Message, state: StateContext): function ask_hobby (line 75) | async def ask_hobby(message: types.Message, state: StateContext): function finish (line 97) | async def finish(message: types.Message, state: StateContext): function age_incorrect (line 136) | async def age_incorrect(message: types.Message): FILE: examples/asynchronous_telebot/detect_changes.py function send_welcome (line 13) | async def send_welcome(message): function echo_message (line 22) | async def echo_message(message): FILE: examples/asynchronous_telebot/download_file_example.py function new_message (line 11) | async def new_message(message: telebot.types.Message): FILE: examples/asynchronous_telebot/echo_bot.py function send_welcome (line 14) | async def send_welcome(message): function echo_message (line 21) | async def echo_message(message): FILE: examples/asynchronous_telebot/exception_handler.py class MyExceptionHandler (line 10) | class MyExceptionHandler(ExceptionHandler): method handle (line 11) | async def handle(self, exception): function photo_send (line 19) | async def photo_send(message: telebot.types.Message): FILE: examples/asynchronous_telebot/formatting_example.py function start_message (line 8) | async def start_message(message): FILE: examples/asynchronous_telebot/message_reaction_example.py function send_reaction (line 24) | async def send_reaction(message): function get_reactions (line 30) | async def get_reactions(message): FILE: examples/asynchronous_telebot/middleware/flooding_middleware.py class SimpleMiddleware (line 8) | class SimpleMiddleware(BaseMiddleware): method __init__ (line 9) | def __init__(self, limit) -> None: method pre_process (line 16) | async def pre_process(self, message, data): method post_process (line 28) | async def post_process(self, message, data, exception): function start (line 34) | async def start(message): FILE: examples/asynchronous_telebot/middleware/i18n.py class LanguageMiddleware (line 30) | class LanguageMiddleware(asyncio_handler_backends.BaseMiddleware): method __init__ (line 31) | def __init__(self): method pre_process (line 33) | async def pre_process(self, message, data): method post_process (line 35) | async def post_process(self, message, data, exception): function start (line 42) | async def start(message, data: dict): FILE: examples/asynchronous_telebot/middleware/i18n_middleware_example/i18n_base_midddleware.py class I18N (line 15) | class I18N(BaseMiddleware): method __init__ (line 23) | def __init__(self, translations_path, domain_name: str): method available_translations (line 32) | def available_translations(self): method gettext (line 35) | def gettext(self, text: str, lang: str = None): method ngettext (line 49) | def ngettext(self, singular: str, plural: str, lang: str = None, n=1): method lazy_gettext (line 64) | def lazy_gettext(self, text: str, lang: str = None): method lazy_ngettext (line 69) | def lazy_ngettext(self, singular: str, plural: str, lang: str = None, ... method get_user_language (line 74) | async def get_user_language(self, obj): method process_update_types (line 80) | def process_update_types(self) -> list: method pre_process (line 86) | async def pre_process(self, message, data): method post_process (line 93) | async def post_process(self, message, data, exception): method find_translations (line 96) | def find_translations(self): FILE: examples/asynchronous_telebot/middleware/i18n_middleware_example/keyboards.py function languages_keyboard (line 4) | def languages_keyboard(): function clicker_keyboard (line 16) | def clicker_keyboard(_): function menu_keyboard (line 26) | def menu_keyboard(_): FILE: examples/asynchronous_telebot/middleware/i18n_middleware_example/main.py class I18NMiddleware (line 63) | class I18NMiddleware(I18N): method process_update_types (line 65) | def process_update_types(self) -> list: method get_user_language (line 71) | async def get_user_language(self, obj: Union[types.Message, types.Call... function start_handler (line 102) | async def start_handler(message: types.Message): function change_language_handler (line 116) | async def change_language_handler(message: types.Message): function language_handler (line 122) | async def language_handler(call: types.CallbackQuery): function pluralization_handler (line 131) | async def pluralization_handler(message: types.Message): function click_handler (line 147) | async def click_handler(call: types.CallbackQuery): function menu_handler (line 167) | async def menu_handler(message: types.Message): function return_user_id (line 181) | async def return_user_id(message: types.Message): function return_user_id (line 186) | async def return_user_id(message: types.Message): function return_user_id (line 195) | async def return_user_id(message: types.Message): function missed_message (line 207) | async def missed_message(message: types.Message): FILE: examples/asynchronous_telebot/mini_app.py function start (line 19) | async def start(message): function web_app (line 30) | async def web_app(message): FILE: examples/asynchronous_telebot/multibot/handlers.py function hello_handler (line 5) | async def hello_handler(message: types.Message, bot: AsyncTeleBot): function echo_handler (line 9) | async def echo_handler(message: types.Message, bot: AsyncTeleBot): function register_handlers (line 13) | def register_handlers(bot: AsyncTeleBot): FILE: examples/asynchronous_telebot/multibot/main.py function webhook (line 15) | async def webhook(request): function add_bot (line 39) | async def add_bot(message: types.Message): function main (line 50) | async def main(): FILE: examples/asynchronous_telebot/register_handler.py function start_executor (line 4) | async def start_executor(message): FILE: examples/asynchronous_telebot/send_file_example.py function photo_send (line 11) | async def photo_send(message: telebot.types.Message): function document_send (line 16) | async def document_send(message: telebot.types.Message): function photos_send (line 21) | async def photos_send(message: telebot.types.Message): FILE: examples/asynchronous_telebot/send_message_draft_example.py function send_draft (line 9) | async def send_draft(message): FILE: examples/asynchronous_telebot/set_command_example.py function main (line 17) | async def main(): FILE: examples/asynchronous_telebot/skip_updates_example.py function send_welcome (line 6) | async def send_welcome(message): function echo_all (line 10) | async def echo_all(message): FILE: examples/asynchronous_telebot/timer_bot_async.py function beep (line 15) | async def beep(chat_id) -> None: function send_welcome (line 22) | async def send_welcome(message): function set_timer (line 27) | async def set_timer(message): function unset_timer (line 37) | def unset_timer(message): function scheduler (line 41) | async def scheduler(): function main (line 47) | async def main(): FILE: examples/asynchronous_telebot/update_listener.py function update_listener (line 7) | async def update_listener(messages): FILE: examples/asynchronous_telebot/webhooks/async_webhook_aiohttp_echo_bot.py function handle (line 37) | async def handle(request): function send_welcome (line 49) | async def send_welcome(message): function echo_message (line 57) | async def echo_message(message): function shutdown (line 62) | async def shutdown(app): function setup (line 69) | async def setup(): FILE: examples/asynchronous_telebot/webhooks/run_webhooks.py function send_welcome (line 27) | async def send_welcome(message): function echo_message (line 36) | async def echo_message(message): FILE: examples/asynchronous_telebot/webhooks/webhook_starlette_echo_bot.py function send_welcome (line 34) | async def send_welcome(message: Message): function echo_message (line 45) | async def echo_message(message: Message): function telegram (line 53) | async def telegram(request: Request) -> Response: function startup (line 62) | async def startup() -> None: FILE: examples/callback_data_examples/advanced_calendar_example/filters.py class CalendarCallbackFilter (line 9) | class CalendarCallbackFilter(AdvancedCustomFilter): method check (line 12) | def check(self, call: types.CallbackQuery, config: CallbackDataFilter): class CalendarZoomCallbackFilter (line 16) | class CalendarZoomCallbackFilter(AdvancedCustomFilter): method check (line 19) | def check(self, call: types.CallbackQuery, config: CallbackDataFilter): function bind_filters (line 23) | def bind_filters(bot: telebot.TeleBot): FILE: examples/callback_data_examples/advanced_calendar_example/keyboards.py function generate_calendar_days (line 12) | def generate_calendar_days(year: int, month: int): function generate_calendar_months (line 67) | def generate_calendar_months(year: int): FILE: examples/callback_data_examples/advanced_calendar_example/main.py function start_command_handler (line 19) | def start_command_handler(message: types.Message): function calendar_command_handler (line 26) | def calendar_command_handler(message: types.Message): function calendar_action_handler (line 32) | def calendar_action_handler(call: types.CallbackQuery): function calendar_zoom_out_handler (line 41) | def calendar_zoom_out_handler(call: types.CallbackQuery): function callback_empty_field_handler (line 50) | def callback_empty_field_handler(call: types.CallbackQuery): FILE: examples/callback_data_examples/simple_products_example.py function products_keyboard (line 21) | def products_keyboard(): function back_keyboard (line 35) | def back_keyboard(): class ProductsCallbackFilter (line 48) | class ProductsCallbackFilter(AdvancedCustomFilter): method check (line 51) | def check(self, call: types.CallbackQuery, config: CallbackDataFilter): function products_command_handler (line 56) | def products_command_handler(message: types.Message): function product_one_callback (line 62) | def product_one_callback(call: types.CallbackQuery): function products_callback (line 68) | def products_callback(call: types.CallbackQuery): function back_callback (line 80) | def back_callback(call: types.CallbackQuery): FILE: examples/chat_join_request.py function make_some (line 7) | def make_some(message: telebot.types.ChatJoinRequest): FILE: examples/chat_member_example.py function chat_m (line 8) | def chat_m(message: types.ChatMemberUpdated): function my_chat_m (line 16) | def my_chat_m(message: types.ChatMemberUpdated): function delall (line 31) | def delall(message: types.Message): function set_tag (line 36) | def set_tag(message: types.Message): FILE: examples/continue_handling.py function start (line 8) | def start(message): function start2 (line 13) | def start2(message): FILE: examples/create_invite_link.py function startmsg (line 12) | def startmsg(msg): function newmember (line 17) | def newmember(msg): FILE: examples/custom_filters/admin_filter_example.py function answer_for_admin (line 7) | def answer_for_admin(message): FILE: examples/custom_filters/advanced_text_filter.py function hello_handler (line 15) | def hello_handler(message: types.Message): function hello_handler_ignore_case (line 20) | def hello_handler_ignore_case(message: types.Message): function contains_handler (line 25) | def contains_handler(message: types.Message): function contains_handler_ignore_case (line 30) | def contains_handler_ignore_case(message: types.Message): function starts_with_handler (line 35) | def starts_with_handler(message: types.Message): function starts_with_handler_ignore_case (line 40) | def starts_with_handler_ignore_case(message: types.Message): function ends_with_handler (line 45) | def ends_with_handler(message: types.Message): function ends_with_handler_ignore_case (line 50) | def ends_with_handler_ignore_case(message: types.Message): function send_callback (line 55) | def send_callback(message: types.Message): function callback_query_handler (line 66) | def callback_query_handler(call: types.CallbackQuery): function callback_query_handler_ignore_case (line 71) | def callback_query_handler_ignore_case(call: types.CallbackQuery): function send_poll (line 76) | def send_poll(message: types.Message): function poll_question_handler (line 82) | def poll_question_handler(poll: types.Poll): function poll_question_handler_ignore_case (line 87) | def poll_question_handler_ignore_case(poll: types.Poll): function multiple_patterns_handler (line 93) | def multiple_patterns_handler(message: types.Message): function multiple_starts_with_handler (line 99) | def multiple_starts_with_handler(message: types.Message): function multiple_ends_with_handler (line 105) | def multiple_ends_with_handler(message: types.Message): function ban_command_handler (line 112) | def ban_command_handler(message: types.Message): FILE: examples/custom_filters/general_custom_filters.py class MainFilter (line 7) | class MainFilter(telebot.custom_filters.AdvancedCustomFilter): method check (line 10) | def check(message, text): class IsAdmin (line 14) | class IsAdmin(telebot.custom_filters.SimpleCustomFilter): method check (line 17) | def check(message: telebot.types.Message): function admin_rep (line 22) | def admin_rep(message): function not_admin (line 26) | def not_admin(message): function welcome_hi (line 30) | def welcome_hi(message): function bye_user (line 34) | def bye_user(message): FILE: examples/custom_filters/id_filter_example.py function admin_rep (line 9) | def admin_rep(message): function not_admin (line 13) | def not_admin(message): FILE: examples/custom_filters/is_filter_example.py function start_filter (line 9) | def start_filter(message): function text_filter (line 14) | def text_filter(message): FILE: examples/custom_filters/text_filter_example.py function start_filter (line 9) | def start_filter(message): function text_filter (line 14) | def text_filter(message): FILE: examples/custom_states.py class MyStates (line 14) | class MyStates(StatesGroup): function start_ex (line 23) | def start_ex(message: types.Message, state: StateContext): function any_state (line 34) | def any_state(message: types.Message, state: StateContext): function name_get (line 45) | def name_get(message: types.Message, state: StateContext): function ask_color (line 56) | def ask_color(message: types.Message, state: StateContext): function ask_hobby (line 76) | def ask_hobby(message: types.Message, state: StateContext): function finish (line 98) | def finish(message: types.Message, state: StateContext): function age_incorrect (line 137) | def age_incorrect(message: types.Message): FILE: examples/deep_linking.py function extract_unique_code (line 40) | def extract_unique_code(text): function in_storage (line 45) | def in_storage(unique_code): function get_username_from_storage (line 50) | def get_username_from_storage(unique_code): function save_chat_id (line 56) | def save_chat_id(chat_id, username): function send_welcome (line 63) | def send_welcome(message): FILE: examples/detailed_example/detailed_example.py function get_user_step (line 31) | def get_user_step(uid): function listener (line 42) | def listener(messages): function command_start (line 58) | def command_start(m): function command_help (line 72) | def command_help(m): function command_long_text (line 83) | def command_long_text(m): function command_image (line 93) | def command_image(m): function msg_image_select (line 101) | def msg_image_select(m): function command_text_hi (line 122) | def command_text_hi(m): function command_default (line 128) | def command_default(m): FILE: examples/detect_changes.py function send_welcome (line 15) | def send_welcome(message): function echo_message (line 24) | def echo_message(message): FILE: examples/echo_bot.py function send_welcome (line 15) | def send_welcome(message): function echo_message (line 24) | def echo_message(message): FILE: examples/formatting_example.py function start_message (line 8) | def start_message(message): FILE: examples/inline_example.py function query_text (line 16) | def query_text(inline_query): function query_photo (line 26) | def query_photo(inline_query): function query_video (line 41) | def query_video(inline_query): function default_query (line 55) | def default_query(inline_query): function main_loop (line 63) | def main_loop(): FILE: examples/inline_keyboard_example.py function gen_markup (line 9) | def gen_markup(): function callback_query (line 17) | def callback_query(call): function message_handler (line 24) | def message_handler(message): FILE: examples/message_reaction_example.py function send_reaction (line 23) | def send_reaction(message): function get_reactions (line 29) | def get_reactions(message): FILE: examples/middleware/class_based/antiflood_middleware.py class SimpleMiddleware (line 10) | class SimpleMiddleware(BaseMiddleware): method __init__ (line 11) | def __init__(self, limit) -> None: method pre_process (line 18) | def pre_process(self, message, data): method post_process (line 30) | def post_process(self, message, data, exception): function start (line 36) | def start(message): # you don't have to put data in handler. FILE: examples/middleware/class_based/basic_example.py class Middleware (line 10) | class Middleware(BaseMiddleware): method __init__ (line 11) | def __init__(self): method pre_process (line 13) | def pre_process(self, message, data): method post_process (line 18) | def post_process(self, message, data, exception=None): function start (line 24) | def start(message, data: dict): # you don't have to put data parameter i... FILE: examples/middleware/class_based/i18n_middleware/i18n_base_middleware.py class I18N (line 15) | class I18N(BaseMiddleware): method __init__ (line 23) | def __init__(self, translations_path, domain_name: str): method available_translations (line 32) | def available_translations(self): method gettext (line 35) | def gettext(self, text: str, lang: str = None): method ngettext (line 49) | def ngettext(self, singular: str, plural: str, lang: str = None, n=1): method lazy_gettext (line 64) | def lazy_gettext(self, text: str, lang: str = None): method lazy_ngettext (line 69) | def lazy_ngettext(self, singular: str, plural: str, lang: str = None, ... method get_user_language (line 74) | def get_user_language(self, obj): method process_update_types (line 80) | def process_update_types(self) -> list: method pre_process (line 86) | def pre_process(self, message, data): method post_process (line 94) | def post_process(self, message, data, exception): method find_translations (line 97) | def find_translations(self): FILE: examples/middleware/class_based/i18n_middleware/keyboards.py function languages_keyboard (line 4) | def languages_keyboard(): function clicker_keyboard (line 16) | def clicker_keyboard(_): function menu_keyboard (line 26) | def menu_keyboard(_): FILE: examples/middleware/class_based/i18n_middleware/main.py class I18NMiddleware (line 61) | class I18NMiddleware(I18N): method process_update_types (line 63) | def process_update_types(self) -> list: method get_user_language (line 69) | def get_user_language(self, obj: Union[types.Message, types.CallbackQu... function start_handler (line 99) | def start_handler(message: types.Message): function change_language_handler (line 113) | def change_language_handler(message: types.Message): function language_handler (line 119) | def language_handler(call: types.CallbackQuery): function pluralization_handler (line 128) | def pluralization_handler(message: types.Message): function click_handler (line 144) | def click_handler(call: types.CallbackQuery): function menu_handler (line 164) | def menu_handler(message: types.Message): function return_user_id (line 178) | def return_user_id(message: types.Message): function return_user_id (line 183) | def return_user_id(message: types.Message): function return_user_id (line 192) | def return_user_id(message: types.Message): function missed_message (line 204) | def missed_message(message: types.Message): FILE: examples/middleware/function_based/i18n.py function activate (line 31) | def activate(lang): function _ (line 36) | def _(string): function activate_language (line 44) | def activate_language(bot_instance, message): function start (line 49) | def start(message): FILE: examples/middleware/function_based/i18n_gettext/i18n_class.py class I18N (line 6) | class I18N: method __init__ (line 14) | def __init__(self, translations_path, domain_name: str): method available_translations (line 20) | def available_translations(self): method gettext (line 23) | def gettext(self, text: str, lang: str = None): method ngettext (line 37) | def ngettext(self, singular: str, plural: str, lang: str = None, n=1): method find_translations (line 53) | def find_translations(self): FILE: examples/middleware/function_based/i18n_gettext/keyboards.py function languages_keyboard (line 4) | def languages_keyboard(): function clicker_keyboard (line 16) | def clicker_keyboard(_): FILE: examples/middleware/function_based/i18n_gettext/main.py function set_contex_language (line 65) | def set_contex_language(bot_instance, message): function start_handler (line 70) | def start_handler(message: types.Message): function change_language_handler (line 83) | def change_language_handler(message: types.Message): function language_handler (line 89) | def language_handler(call: types.CallbackQuery): function pluralization_handler (line 99) | def pluralization_handler(message: types.Message): function click_handler (line 114) | def click_handler(call: types.CallbackQuery): FILE: examples/middleware/function_based/session.py function get_or_create_session (line 33) | def get_or_create_session(user_id): function set_session (line 45) | def set_session(bot_instance, message): function start (line 50) | def start(message): function start (line 56) | def start(message): FILE: examples/mini_app.py function start (line 18) | def start(message): function web_app (line 29) | def web_app(message): FILE: examples/mini_app_web/script.js class ModifyStyle (line 4) | class ModifyStyle{ method constructor (line 5) | constructor(element) { method disableButton (line 8) | disableButton() { method enableButton (line 13) | enableButton() { class TableModify (line 19) | class TableModify{ method constructor (line 20) | constructor(element) { method addElements (line 23) | addElements(element_1, element_2) { method removeElement (line 26) | removeElement(id) { FILE: examples/multibot/handlers.py function hello_handler (line 4) | def hello_handler(message: types.Message, bot: TeleBot): function echo_handler (line 8) | def echo_handler(message: types.Message, bot: TeleBot): function register_handlers (line 12) | def register_handlers(bot: TeleBot): FILE: examples/multibot/main.py function webhook (line 14) | def webhook(token: str): function add_bot (line 34) | def add_bot(message: types.Message): FILE: examples/payments_example.py function command_start (line 18) | def command_start(message): function command_terms (line 26) | def command_terms(message): function command_pay (line 36) | def command_pay(message): function shipping (line 58) | def shipping(shipping_query): function checkout (line 65) | def checkout(pre_checkout_query): function got_payment (line 72) | def got_payment(message): FILE: examples/poll_example.py function create_poll (line 12) | def create_poll(message): function handle_poll (line 27) | def handle_poll(poll): FILE: examples/register_handler.py function start_executor (line 7) | def start_executor(message): FILE: examples/reply_keyboard_markup_example.py function keyboard (line 11) | def keyboard(key_type="Normal"): function start_message (line 44) | def start_message(message): function all_messages (line 48) | def all_messages(message): FILE: examples/send_message_draft_example.py function send_draft (line 9) | def send_draft(message): FILE: examples/serverless/aws_lambda_function.py function process_event (line 21) | def process_event(event): function lambda_handler (line 30) | def lambda_handler(event, context): function send_welcome (line 40) | def send_welcome(message): function echo_message (line 48) | def echo_message(message): FILE: examples/serverless/flask_google_cloud_bot/main.py function start (line 44) | def start(message): function echo_message (line 49) | def echo_message(message): function getMessage (line 54) | def getMessage(): function webhook (line 62) | def webhook(): FILE: examples/skip_updates_example.py function send_welcome (line 6) | def send_welcome(message): function echo_all (line 10) | def echo_all(message): FILE: examples/stars_payment.py function send_welcome (line 17) | def send_welcome(message): function handle_product_selection (line 32) | def handle_product_selection(message): function process_pre_checkout_query (line 54) | def process_pre_checkout_query(pre_checkout_query): function handle_successful_payment (line 59) | def handle_successful_payment(message): FILE: examples/step_example.py class User (line 16) | class User: method __init__ (line 17) | def __init__(self, name): function send_welcome (line 25) | def send_welcome(message): function process_name_step (line 33) | def process_name_step(message): function process_age_step (line 45) | def process_age_step(message): function process_sex_step (line 63) | def process_sex_step(message): FILE: examples/telebot_bot/telebot_bot.py function is_api_group (line 38) | def is_api_group(chat_id): function on_user_joins (line 43) | def on_user_joins(message): function on_info (line 58) | def on_info(message): function on_ping (line 67) | def on_ping(message): function on_start (line 72) | def on_start(message): function listener (line 78) | def listener(messages): FILE: examples/timer_bot.py function send_welcome (line 14) | def send_welcome(message): function beep (line 18) | def beep(chat_id) -> None: function set_timer (line 24) | def set_timer(message): function unset_timer (line 34) | def unset_timer(message): FILE: examples/webhook_examples/run_webhooks.py function send_welcome (line 28) | def send_welcome(message): function echo_message (line 37) | def echo_message(message): FILE: examples/webhook_examples/webhook_aiohttp_echo_bot.py function handle (line 43) | async def handle(request): function send_welcome (line 58) | def send_welcome(message): function echo_message (line 66) | def echo_message(message): FILE: examples/webhook_examples/webhook_cherrypy_echo_bot.py class WebhookServer (line 40) | class WebhookServer(object): method index (line 42) | def index(self): function send_welcome (line 57) | def send_welcome(message): function echo_message (line 65) | def echo_message(message): FILE: examples/webhook_examples/webhook_cpython_echo_bot.py class WebhookHandler (line 46) | class WebhookHandler(BaseHTTPRequestHandler): method do_HEAD (line 49) | def do_HEAD(self): method do_GET (line 53) | def do_GET(self): method do_POST (line 57) | def do_POST(self): function send_welcome (line 76) | def send_welcome(message): function echo_message (line 84) | def echo_message(message): FILE: examples/webhook_examples/webhook_fastapi_echo_bot.py function process_webhook (line 41) | def process_webhook(update: dict): function send_welcome (line 53) | def send_welcome(message): function echo_message (line 63) | def echo_message(message): FILE: examples/webhook_examples/webhook_flask_echo_bot.py function index (line 44) | def index(): function webhook (line 50) | def webhook(): function send_welcome (line 62) | def send_welcome(message): function echo_message (line 70) | def echo_message(message): FILE: examples/webhook_examples/webhook_flask_heroku_echo.py function start (line 13) | def start(message): function echo_message (line 18) | def echo_message(message): function getMessage (line 23) | def getMessage(): function webhook (line 31) | def webhook(): FILE: examples/webhook_examples/webhook_tornado_echo_bot.py class Root (line 36) | class Root(tornado.web.RequestHandler): method data_received (line 37) | def data_received(self, chunk: bytes) -> Optional[Awaitable[None]]: method get (line 40) | def get(self): class WebhookServ (line 45) | class WebhookServ(tornado.web.RequestHandler): method data_received (line 46) | def data_received(self, chunk: bytes) -> Optional[Awaitable[None]]: method get (line 49) | def get(self): method post (line 53) | def post(self): function signal_handler (line 73) | def signal_handler(signum, frame): function try_exit (line 79) | def try_exit(): function send_welcome (line 89) | def send_welcome(message): FILE: examples/webhook_examples/webhook_twisted_echo_bot.py function send_welcome (line 44) | def send_welcome(message): function echo_message (line 52) | def echo_message(message): class WebhookHandler (line 65) | class WebhookHandler(Resource): method render_POST (line 67) | def render_POST(self, request: Request): FILE: telebot/__init__.py class Handler (line 59) | class Handler: method __init__ (line 64) | def __init__(self, callback, *args, **kwargs): method __getitem__ (line 69) | def __getitem__(self, item): class ExceptionHandler (line 73) | class ExceptionHandler: method handle (line 79) | def handle(self, exception): class TeleBot (line 83) | class TeleBot: method __init__ (line 165) | def __init__( method user (line 297) | def user(self) -> types.User: method enable_save_next_step_handlers (line 309) | def enable_save_next_step_handlers(self, delay: Optional[int]=120, fil... method enable_saving_states (line 328) | def enable_saving_states(self, filename: Optional[str]="./.state-save/... method enable_save_reply_handlers (line 343) | def enable_save_reply_handlers(self, delay=120, filename="./.handler-s... method disable_save_next_step_handlers (line 360) | def disable_save_next_step_handlers(self): method disable_save_reply_handlers (line 371) | def disable_save_reply_handlers(self): method load_next_step_handlers (line 382) | def load_next_step_handlers(self, filename="./.handler-saves/step.save... method load_reply_handlers (line 400) | def load_reply_handlers(self, filename="./.handler-saves/reply.save", ... method set_webhook (line 417) | def set_webhook(self, url: Optional[str]=None, certificate: Optional[U... method run_webhooks (line 476) | def run_webhooks(self, method delete_webhook (line 582) | def delete_webhook(self, drop_pending_updates: Optional[bool]=None, ti... method get_webhook_info (line 602) | def get_webhook_info(self, timeout: Optional[int]=None) -> types.Webho... method remove_webhook (line 620) | def remove_webhook(self) -> bool: method get_updates (line 630) | def get_updates(self, offset: Optional[int]=None, limit: Optional[int]... method __skip_updates (line 665) | def __skip_updates(self): method __retrieve_updates (line 675) | def __retrieve_updates(self, timeout=20, long_polling_timeout=20, allo... method process_new_updates (line 693) | def process_new_updates(self, updates: List[types.Update]): method process_new_messages (line 861) | def process_new_messages(self, new_messages): method process_new_edited_messages (line 870) | def process_new_edited_messages(self, new_edited_message): method process_new_channel_posts (line 876) | def process_new_channel_posts(self, new_channel_post): method process_new_edited_channel_posts (line 882) | def process_new_edited_channel_posts(self, new_edited_channel_post): method process_new_message_reaction (line 888) | def process_new_message_reaction(self, new_message_reactions): method process_new_message_reaction_count (line 894) | def process_new_message_reaction_count(self, new_message_reaction_coun... method process_new_inline_query (line 900) | def process_new_inline_query(self, new_inline_queries): method process_new_chosen_inline_query (line 906) | def process_new_chosen_inline_query(self, new_chosen_inline_queries): method process_new_callback_query (line 912) | def process_new_callback_query(self, new_callback_queries): method process_new_shipping_query (line 918) | def process_new_shipping_query(self, new_shipping_queries): method process_new_pre_checkout_query (line 924) | def process_new_pre_checkout_query(self, new_pre_checkout_queries): method process_new_poll (line 930) | def process_new_poll(self, new_polls): method process_new_poll_answer (line 936) | def process_new_poll_answer(self, new_poll_answers): method process_new_my_chat_member (line 942) | def process_new_my_chat_member(self, new_my_chat_members): method process_new_chat_member (line 948) | def process_new_chat_member(self, new_chat_members): method process_new_chat_join_request (line 954) | def process_new_chat_join_request(self, new_chat_join_request): method process_new_chat_boost (line 960) | def process_new_chat_boost(self, new_chat_boosts): method process_new_removed_chat_boost (line 966) | def process_new_removed_chat_boost(self, new_removed_chat_boosts): method process_new_business_connection (line 972) | def process_new_business_connection(self, new_business_connections): method process_new_business_message (line 978) | def process_new_business_message(self, new_business_messages): method process_new_edited_business_message (line 984) | def process_new_edited_business_message(self, new_edited_business_mess... method process_new_deleted_business_messages (line 990) | def process_new_deleted_business_messages(self, new_deleted_business_m... method process_new_purchased_paid_media (line 996) | def process_new_purchased_paid_media(self, new_purchased_paid_media): method process_middlewares (line 1002) | def process_middlewares(self, update): method __notify_update (line 1025) | def __notify_update(self, new_messages): method _setup_change_detector (line 1034) | def _setup_change_detector(self, path_to_watch: str): method __hide_token (line 1055) | def __hide_token(self, message: str) -> str: method infinity_polling (line 1062) | def infinity_polling(self, timeout: Optional[int]=20, skip_pending: Op... method polling (line 1126) | def polling(self, non_stop: Optional[bool]=False, skip_pending: Option... method _handle_exception (line 1204) | def _handle_exception(self, exception: Exception) -> bool: method __threaded_polling (line 1211) | def __threaded_polling(self, non_stop = False, interval = 0, timeout =... method __non_threaded_polling (line 1286) | def __non_threaded_polling(self, non_stop=False, interval=0, timeout=N... method _exec_task (line 1334) | def _exec_task(self, task, *args, **kwargs): method stop_polling (line 1346) | def stop_polling(self): method stop_bot (line 1355) | def stop_bot(self): method set_update_listener (line 1364) | def set_update_listener(self, listener: Callable): method get_me (line 1374) | def get_me(self) -> types.User: method get_file (line 1386) | def get_file(self, file_id: Optional[str]) -> types.File: method get_file_url (line 1406) | def get_file_url(self, file_id: Optional[str]) -> str: method download_file (line 1419) | def download_file(self, file_path: str) -> bytes: method log_out (line 1432) | def log_out(self) -> bool: method close (line 1449) | def close(self) -> bool: method set_message_reaction (line 1463) | def set_message_reaction(self, chat_id: Union[int, str], message_id: i... method get_user_profile_photos (line 1490) | def get_user_profile_photos(self, user_id: int, offset: Optional[int]=... method get_user_profile_audios (line 1515) | def get_user_profile_audios(self, user_id: int, offset: Optional[int]=... method set_user_emoji_status (line 1538) | def set_user_emoji_status(self, user_id: int, emoji_status_custom_emoj... method get_chat (line 1559) | def get_chat(self, chat_id: Union[int, str]) -> types.ChatFullInfo: method leave_chat (line 1577) | def leave_chat(self, chat_id: Union[int, str]) -> bool: method get_chat_administrators (line 1591) | def get_chat_administrators(self, chat_id: Union[int, str]) -> List[ty... method get_chat_members_count (line 1609) | def get_chat_members_count(self, chat_id: Union[int, str]) -> int: method get_chat_member_count (line 1629) | def get_chat_member_count(self, chat_id: Union[int, str]) -> int: method set_chat_sticker_set (line 1644) | def set_chat_sticker_set(self, chat_id: Union[int, str], sticker_set_n... method delete_chat_sticker_set (line 1664) | def delete_chat_sticker_set(self, chat_id: Union[int, str]) -> bool: method get_chat_member (line 1681) | def get_chat_member(self, chat_id: Union[int, str], user_id: int) -> t... method send_message (line 1701) | def send_message( method forward_message (line 1845) | def forward_message( method copy_message (line 1912) | def copy_message( method approve_suggested_post (line 2044) | def approve_suggested_post(self, chat_id: int, message_id: int, send_d... method decline_suggested_post (line 2066) | def decline_suggested_post(self, chat_id: int, message_id: int, commen... method delete_message (line 2088) | def delete_message(self, chat_id: Union[int, str], message_id: int, method delete_messages (line 2118) | def delete_messages(self, chat_id: Union[int, str], message_ids: List[... method forward_messages (line 2136) | def forward_messages(self, chat_id: Union[str, int], from_chat_id: Uni... method copy_messages (line 2182) | def copy_messages(self, chat_id: Union[str, int], from_chat_id: Union[... method send_checklist (line 2233) | def send_checklist( method edit_message_checklist (line 2286) | def edit_message_checklist( method send_dice (line 2318) | def send_dice( method send_photo (line 2426) | def send_photo( method send_audio (line 2555) | def send_audio( method send_voice (line 2704) | def send_voice( method send_document (line 2827) | def send_document( method send_sticker (line 2979) | def send_sticker( method send_video (line 3100) | def send_video( method send_animation (line 3278) | def send_animation( method send_video_note (line 3435) | def send_video_note( method send_paid_media (line 3564) | def send_paid_media( method send_media_group (line 3645) | def send_media_group( method send_location (line 3746) | def send_location( method edit_message_live_location (line 3872) | def edit_message_live_location( method stop_message_live_location (line 3940) | def stop_message_live_location( method send_venue (line 3982) | def send_venue( method send_contact (line 4116) | def send_contact( method send_message_draft (line 4231) | def send_message_draft( method send_chat_action (line 4270) | def send_chat_action( method kick_chat_member (line 4309) | def kick_chat_member( method ban_chat_member (line 4320) | def ban_chat_member( method unban_chat_member (line 4355) | def unban_chat_member( method restrict_chat_member (line 4383) | def restrict_chat_member( method promote_chat_member (line 4472) | def promote_chat_member( method set_chat_administrator_custom_title (line 4589) | def set_chat_administrator_custom_title( method set_chat_member_tag (line 4614) | def set_chat_member_tag( method ban_chat_sender_chat (line 4638) | def ban_chat_sender_chat(self, chat_id: Union[int, str], sender_chat_i... method unban_chat_sender_chat (line 4661) | def unban_chat_sender_chat(self, chat_id: Union[int, str], sender_chat... method set_chat_permissions (line 4682) | def set_chat_permissions( method create_chat_invite_link (line 4712) | def create_chat_invite_link( method edit_chat_invite_link (line 4750) | def edit_chat_invite_link( method create_chat_subscription_invite_link (line 4789) | def create_chat_subscription_invite_link( method edit_chat_subscription_invite_link (line 4821) | def edit_chat_subscription_invite_link( method revoke_chat_invite_link (line 4846) | def revoke_chat_invite_link( method export_chat_invite_link (line 4870) | def export_chat_invite_link(self, chat_id: Union[int, str]) -> str: method approve_chat_join_request (line 4887) | def approve_chat_join_request(self, chat_id: Union[str, int], user_id:... method decline_chat_join_request (line 4908) | def decline_chat_join_request(self, chat_id: Union[str, int], user_id:... method set_chat_photo (line 4929) | def set_chat_photo(self, chat_id: Union[int, str], photo: Any) -> bool: method delete_chat_photo (line 4951) | def delete_chat_photo(self, chat_id: Union[int, str]) -> bool: method get_my_commands (line 4970) | def get_my_commands(self, scope: Optional[types.BotCommandScope]=None, method set_my_name (line 4994) | def set_my_name(self, name: Optional[str]=None, language_code: Optiona... method get_my_name (line 5012) | def get_my_name(self, language_code: Optional[str]=None): method set_my_description (line 5029) | def set_my_description(self, description: Optional[str]=None, language... method get_my_description (line 5051) | def get_my_description(self, language_code: Optional[str]=None): method set_my_short_description (line 5067) | def set_my_short_description(self, short_description:Optional[str]=Non... method get_my_short_description (line 5088) | def get_my_short_description(self, language_code: Optional[str]=None): method set_my_profile_photo (line 5103) | def set_my_profile_photo(self, photo: types.InputProfilePhoto) -> bool: method remove_my_profile_photo (line 5117) | def remove_my_profile_photo(self) -> bool: method set_chat_menu_button (line 5129) | def set_chat_menu_button(self, chat_id: Union[int, str]=None, menu_but... method get_chat_menu_button (line 5150) | def get_chat_menu_button(self, chat_id: Union[int, str]=None) -> types... method set_my_default_administrator_rights (line 5169) | def set_my_default_administrator_rights(self, rights: types.ChatAdmini... method get_my_default_administrator_rights (line 5194) | def get_my_default_administrator_rights(self, for_channels: Optional[b... method get_business_connection (line 5212) | def get_business_connection(self, business_connection_id: str) -> type... method set_my_commands (line 5231) | def set_my_commands(self, commands: List[types.BotCommand], method delete_my_commands (line 5257) | def delete_my_commands(self, scope: Optional[types.BotCommandScope]=None, method set_chat_title (line 5281) | def set_chat_title(self, chat_id: Union[int, str], title: str) -> bool: method set_chat_description (line 5304) | def set_chat_description(self, chat_id: Union[int, str], description: ... method pin_chat_message (line 5324) | def pin_chat_message( method unpin_chat_message (line 5357) | def unpin_chat_message(self, chat_id: Union[int, str], message_id: Opt... method unpin_all_chat_messages (line 5381) | def unpin_all_chat_messages(self, chat_id: Union[int, str]) -> bool: method edit_message_text (line 5399) | def edit_message_text( method edit_message_media (line 5483) | def edit_message_media( method edit_message_reply_markup (line 5531) | def edit_message_reply_markup( method send_game (line 5573) | def send_game( method set_game_score (line 5667) | def set_game_score( method get_game_high_scores (line 5712) | def get_game_high_scores( method send_invoice (line 5746) | def send_invoice( method create_invoice_link (line 5936) | def create_invoice_link(self, method send_poll (line 6054) | def send_poll( method stop_poll (line 6222) | def stop_poll( method answer_shipping_query (line 6251) | def answer_shipping_query( method answer_pre_checkout_query (line 6280) | def answer_pre_checkout_query( method get_my_star_balance (line 6310) | def get_my_star_balance(self) -> types.StarAmount: method get_star_transactions (line 6322) | def get_star_transactions(self, offset: Optional[int]=None, limit: Opt... method refund_star_payment (line 6342) | def refund_star_payment(self, user_id: int, telegram_payment_charge_id... method edit_user_star_subscription (line 6359) | def edit_user_star_subscription(self, user_id: int, telegram_payment_c... method edit_message_caption (line 6379) | def edit_message_caption( method reply_to (line 6440) | def reply_to(self, message: types.Message, text: str, **kwargs) -> typ... method answer_inline_query (line 6474) | def answer_inline_query( method unpin_all_general_forum_topic_messages (line 6533) | def unpin_all_general_forum_topic_messages(self, chat_id: Union[int, s... method answer_callback_query (line 6551) | def answer_callback_query( method get_user_chat_boosts (line 6584) | def get_user_chat_boosts(self, chat_id: Union[int, str], user_id: int)... method set_sticker_set_thumbnail (line 6604) | def set_sticker_set_thumbnail(self, name: str, user_id: int, thumbnail... method set_sticker_set_thumb (line 6639) | def set_sticker_set_thumb(self, name: str, user_id: int, thumb: Union[... method get_sticker_set (line 6662) | def get_sticker_set(self, name: str) -> types.StickerSet: method get_custom_emoji_stickers (line 6678) | def get_custom_emoji_stickers(self, custom_emoji_ids: List[str]) -> Li... method set_sticker_keywords (line 6693) | def set_sticker_keywords(self, sticker: str, keywords: List[str]=None)... method set_sticker_mask_position (line 6711) | def set_sticker_mask_position(self, sticker: str, mask_position: types... method set_custom_emoji_sticker_set_thumbnail (line 6729) | def set_custom_emoji_sticker_set_thumbnail(self, name: str, custom_emo... method set_sticker_set_title (line 6746) | def set_sticker_set_title(self, name: str, title: str) -> bool: method delete_sticker_set (line 6763) | def delete_sticker_set(self, name:str) -> bool: method send_gift (line 6775) | def send_gift(self, user_id: Optional[Union[str, int]] = None, gift_id... method verify_user (line 6817) | def verify_user(self, user_id: int, custom_description: Optional[str]=... method verify_chat (line 6834) | def verify_chat(self, chat_id: Union[int, str], custom_description: Op... method remove_user_verification (line 6851) | def remove_user_verification(self, user_id: int) -> bool: method remove_chat_verification (line 6866) | def remove_chat_verification(self, chat_id: int) -> bool: method read_business_message (line 6880) | def read_business_message(self, business_connection_id: str, chat_id: ... method delete_business_messages (line 6900) | def delete_business_messages(self, business_connection_id: str, messag... method set_business_account_name (line 6917) | def set_business_account_name(self, business_connection_id: str, first... method set_business_account_username (line 6937) | def set_business_account_username(self, business_connection_id: str, u... method set_business_account_bio (line 6955) | def set_business_account_bio(self, business_connection_id: str, bio: O... method set_business_account_gift_settings (line 6972) | def set_business_account_gift_settings( method get_business_account_star_balance (line 6994) | def get_business_account_star_balance(self, business_connection_id: st... method transfer_business_account_stars (line 7010) | def transfer_business_account_stars(self, business_connection_id: str,... method get_business_account_gifts (line 7027) | def get_business_account_gifts( method get_user_gifts (line 7111) | def get_user_gifts( method get_chat_gifts (line 7170) | def get_chat_gifts( method convert_gift_to_stars (line 7240) | def convert_gift_to_stars(self, business_connection_id: str, owned_gif... method upgrade_gift (line 7257) | def upgrade_gift( method transfer_gift (line 7289) | def transfer_gift( method post_story (line 7321) | def post_story( method repost_story (line 7377) | def repost_story( method edit_story (line 7421) | def edit_story( method delete_story (line 7468) | def delete_story(self, business_connection_id: str, story_id: int) -> ... method gift_premium_subscription (line 7485) | def gift_premium_subscription( method set_business_account_profile_photo (line 7521) | def set_business_account_profile_photo( method remove_business_account_profile_photo (line 7544) | def remove_business_account_profile_photo( method get_available_gifts (line 7563) | def get_available_gifts(self) -> types.Gifts: method replace_sticker_in_set (line 7576) | def replace_sticker_in_set(self, user_id: int, name: str, old_sticker:... method set_sticker_emoji_list (line 7601) | def set_sticker_emoji_list(self, sticker: str, emoji_list: List[str]) ... method upload_sticker_file (line 7618) | def upload_sticker_file(self, user_id: int, png_sticker: Union[Any, st... method create_new_sticker_set (line 7652) | def create_new_sticker_set( method add_sticker_to_set (line 7748) | def add_sticker_to_set( method set_sticker_position_in_set (line 7812) | def set_sticker_position_in_set(self, sticker: str, position: int) -> ... method delete_sticker_from_set (line 7830) | def delete_sticker_from_set(self, sticker: str) -> bool: method create_forum_topic (line 7843) | def create_forum_topic(self, method edit_forum_topic (line 7874) | def edit_forum_topic( method close_forum_topic (line 7908) | def close_forum_topic(self, chat_id: Union[str, int], message_thread_i... method reopen_forum_topic (line 7928) | def reopen_forum_topic(self, chat_id: Union[str, int], message_thread_... method delete_forum_topic (line 7948) | def delete_forum_topic(self, chat_id: Union[str, int], message_thread_... method unpin_all_forum_topic_messages (line 7968) | def unpin_all_forum_topic_messages(self, chat_id: Union[str, int], mes... method edit_general_forum_topic (line 7988) | def edit_general_forum_topic(self, chat_id: Union[int, str], name: str... method close_general_forum_topic (line 8005) | def close_general_forum_topic(self, chat_id: Union[int, str]) -> bool: method reopen_general_forum_topic (line 8019) | def reopen_general_forum_topic(self, chat_id: Union[int, str]) -> bool: method hide_general_forum_topic (line 8033) | def hide_general_forum_topic(self, chat_id: Union[int, str]) -> bool: method unhide_general_forum_topic (line 8047) | def unhide_general_forum_topic(self, chat_id: Union[int, str]) -> bool: method get_forum_topic_icon_stickers (line 8061) | def get_forum_topic_icon_stickers(self) -> List[types.Sticker]: method answer_web_app_query (line 8074) | def answer_web_app_query(self, web_app_query_id: str, result: types.In... method save_prepared_inline_message (line 8094) | def save_prepared_inline_message( method register_for_reply (line 8131) | def register_for_reply(self, message: types.Message, callback: Callabl... method register_for_reply_by_message_id (line 8152) | def register_for_reply_by_message_id( method _notify_reply_handlers (line 8174) | def _notify_reply_handlers(self, new_messages) -> None: method register_next_step_handler (line 8189) | def register_next_step_handler(self, message: types.Message, callback:... method setup_middleware (line 8210) | def setup_middleware(self, middleware: BaseMiddleware): method set_state (line 8233) | def set_state(self, user_id: int, state: Union[str, State], chat_id: O... method reset_data (line 8282) | def reset_data(self, user_id: int, chat_id: Optional[int]=None, method delete_state (line 8314) | def delete_state(self, user_id: int, chat_id: Optional[int]=None, busi... method retrieve_data (line 8349) | def retrieve_data(self, user_id: int, chat_id: Optional[int]=None, bus... method get_state (line 8380) | def get_state(self, user_id: int, chat_id: Optional[int]=None, method add_data (line 8418) | def add_data(self, user_id: int, chat_id: Optional[int]=None, method register_next_step_handler_by_chat_id (line 8453) | def register_next_step_handler_by_chat_id( method clear_step_handler (line 8475) | def clear_step_handler(self, message: types.Message) -> None: method clear_step_handler_by_chat_id (line 8487) | def clear_step_handler_by_chat_id(self, chat_id: Union[int, str]) -> N... method clear_reply_handlers (line 8499) | def clear_reply_handlers(self, message: types.Message) -> None: method clear_reply_handlers_by_message_id (line 8511) | def clear_reply_handlers_by_message_id(self, message_id: int) -> None: method _notify_next_handlers (line 8523) | def _notify_next_handlers(self, new_messages): method _build_handler_dict (line 8543) | def _build_handler_dict(handler, pass_bot=False, **filters): method middleware_handler (line 8560) | def middleware_handler(self, update_types: Optional[List[str]]=None): method add_middleware_handler (line 8597) | def add_middleware_handler(self, handler, update_types=None): method register_middleware_handler (line 8625) | def register_middleware_handler(self, callback, update_types=None): method check_commands_input (line 8650) | def check_commands_input(commands, method_name): method check_regexp_input (line 8659) | def check_regexp_input(regexp, method_name): method message_handler (line 8667) | def message_handler( method add_message_handler (line 8760) | def add_message_handler(self, handler_dict): method register_message_handler (line 8773) | def register_message_handler(self, callback: Callable, content_types: ... method edited_message_handler (line 8830) | def edited_message_handler(self, commands=None, regexp=None, func=None... method add_edited_message_handler (line 8885) | def add_edited_message_handler(self, handler_dict): method register_edited_message_handler (line 8898) | def register_edited_message_handler(self, callback: Callable, content_... method channel_post_handler (line 8954) | def channel_post_handler(self, commands=None, regexp=None, func=None, ... method add_channel_post_handler (line 9005) | def add_channel_post_handler(self, handler_dict): method register_channel_post_handler (line 9018) | def register_channel_post_handler( method edited_channel_post_handler (line 9070) | def edited_channel_post_handler(self, commands=None, regexp=None, func... method add_edited_channel_post_handler (line 9121) | def add_edited_channel_post_handler(self, handler_dict): method register_edited_channel_post_handler (line 9134) | def register_edited_channel_post_handler( method message_reaction_handler (line 9186) | def message_reaction_handler(self, func=None, **kwargs): method add_message_reaction_handler (line 9206) | def add_message_reaction_handler(self, handler_dict): method register_message_reaction_handler (line 9219) | def register_message_reaction_handler(self, callback: Callable, func: ... method message_reaction_count_handler (line 9240) | def message_reaction_count_handler(self, func=None, **kwargs): method add_message_reaction_count_handler (line 9260) | def add_message_reaction_count_handler(self, handler_dict): method register_message_reaction_count_handler (line 9273) | def register_message_reaction_count_handler(self, callback: Callable, ... method inline_handler (line 9294) | def inline_handler(self, func=None, **kwargs): method add_inline_handler (line 9314) | def add_inline_handler(self, handler_dict): method register_inline_handler (line 9327) | def register_inline_handler(self, callback: Callable, func: Callable, ... method chosen_inline_handler (line 9348) | def chosen_inline_handler(self, func, **kwargs): method add_chosen_inline_handler (line 9369) | def add_chosen_inline_handler(self, handler_dict): method register_chosen_inline_handler (line 9382) | def register_chosen_inline_handler(self, callback: Callable, func: Cal... method callback_query_handler (line 9403) | def callback_query_handler(self, func=None, **kwargs): method add_callback_query_handler (line 9423) | def add_callback_query_handler(self, handler_dict): method register_callback_query_handler (line 9436) | def register_callback_query_handler(self, callback: Callable, func: Ca... method shipping_query_handler (line 9457) | def shipping_query_handler(self, func, **kwargs): method add_shipping_query_handler (line 9477) | def add_shipping_query_handler(self, handler_dict): method register_shipping_query_handler (line 9490) | def register_shipping_query_handler(self, callback: Callable, func: Ca... method pre_checkout_query_handler (line 9511) | def pre_checkout_query_handler(self, func, **kwargs): method add_pre_checkout_query_handler (line 9531) | def add_pre_checkout_query_handler(self, handler_dict): method register_pre_checkout_query_handler (line 9544) | def register_pre_checkout_query_handler(self, callback: Callable, func... method purchased_paid_media_handler (line 9563) | def purchased_paid_media_handler(self, func=None, **kwargs): method add_purchased_paid_media_handler (line 9581) | def add_purchased_paid_media_handler(self, handler_dict): method register_purchased_paid_media_handler (line 9593) | def register_purchased_paid_media_handler(self, callback: Callable, fu... method poll_handler (line 9613) | def poll_handler(self, func, **kwargs): method add_poll_handler (line 9632) | def add_poll_handler(self, handler_dict): method register_poll_handler (line 9645) | def register_poll_handler(self, callback: Callable, func: Callable, pa... method poll_answer_handler (line 9666) | def poll_answer_handler(self, func=None, **kwargs): method add_poll_answer_handler (line 9687) | def add_poll_answer_handler(self, handler_dict): method register_poll_answer_handler (line 9700) | def register_poll_answer_handler(self, callback: Callable, func: Calla... method my_chat_member_handler (line 9721) | def my_chat_member_handler(self, func=None, **kwargs): method add_my_chat_member_handler (line 9742) | def add_my_chat_member_handler(self, handler_dict): method register_my_chat_member_handler (line 9755) | def register_my_chat_member_handler(self, callback: Callable, func: Op... method chat_member_handler (line 9776) | def chat_member_handler(self, func=None, **kwargs): method add_chat_member_handler (line 9798) | def add_chat_member_handler(self, handler_dict): method register_chat_member_handler (line 9811) | def register_chat_member_handler( method chat_join_request_handler (line 9833) | def chat_join_request_handler(self, func=None, **kwargs): method add_chat_join_request_handler (line 9854) | def add_chat_join_request_handler(self, handler_dict): method register_chat_join_request_handler (line 9867) | def register_chat_join_request_handler( method chat_boost_handler (line 9889) | def chat_boost_handler(self, func=None, **kwargs): method add_chat_boost_handler (line 9908) | def add_chat_boost_handler(self, handler_dict): method register_chat_boost_handler (line 9921) | def register_chat_boost_handler( method removed_chat_boost_handler (line 9942) | def removed_chat_boost_handler(self, func=None, **kwargs): method add_removed_chat_boost_handler (line 9961) | def add_removed_chat_boost_handler(self, handler_dict): method register_removed_chat_boost_handler (line 9974) | def register_removed_chat_boost_handler( method business_connection_handler (line 9995) | def business_connection_handler(self, func=None, **kwargs): method add_business_connection_handler (line 10013) | def add_business_connection_handler(self, handler_dict): method register_business_connection_handler (line 10026) | def register_business_connection_handler( method business_message_handler (line 10048) | def business_message_handler( method add_business_message_handler (line 10131) | def add_business_message_handler(self, handler_dict): method register_business_message_handler (line 10144) | def register_business_message_handler(self, method edited_business_message_handler (line 10182) | def edited_business_message_handler(self, commands=None, regexp=None, ... method add_edited_business_message_handler (line 10233) | def add_edited_business_message_handler(self, handler_dict): method register_edited_business_message_handler (line 10246) | def register_edited_business_message_handler(self, callback: Callable,... method deleted_business_messages_handler (line 10298) | def deleted_business_messages_handler(self, func=None, **kwargs): method add_deleted_business_messages_handler (line 10318) | def add_deleted_business_messages_handler(self, handler_dict): method register_deleted_business_messages_handler (line 10328) | def register_deleted_business_messages_handler(self, callback: Callabl... method add_custom_filter (line 10350) | def add_custom_filter(self, custom_filter: Union[SimpleCustomFilter, A... method _test_message_handler (line 10369) | def _test_message_handler(self, message_handler, message): method _test_filter (line 10387) | def _test_filter(self, message_filter, filter_value, message): method _check_filter (line 10412) | def _check_filter(self, message_filter, filter_value, message): method _get_middlewares (line 10426) | def _get_middlewares(self, update_type): method _run_middlewares_and_handler (line 10439) | def _run_middlewares_and_handler(self, message, handlers, middlewares,... method _notify_command_handlers (line 10532) | def _notify_command_handlers(self, handlers, new_messages, update_type): FILE: telebot/apihelper.py function _get_req_session (line 51) | def _get_req_session(reset=False): function _make_request (line 70) | def _make_request(token, method_name, method='get', params=None, files=N... function _check_result (line 175) | def _check_result(method_name, result): function get_me (line 202) | def get_me(token): function log_out (line 207) | def log_out(token): function close (line 212) | def close(token): function get_file (line 217) | def get_file(token, file_id): function get_file_url (line 222) | def get_file_url(token, file_id): function download_file (line 230) | def download_file(token, file_path): function send_message (line 244) | def send_message( function set_webhook (line 285) | def set_webhook(token, url=None, certificate=None, max_connections=None,... function delete_webhook (line 309) | def delete_webhook(token, drop_pending_updates=None, timeout=None): function get_webhook_info (line 319) | def get_webhook_info(token, timeout=None): function get_updates (line 327) | def get_updates(token, offset=None, limit=None, timeout=None, allowed_up... function get_user_profile_photos (line 342) | def get_user_profile_photos(token, user_id, offset=None, limit=None): function get_user_profile_audios (line 352) | def get_user_profile_audios(token, user_id, offset=None, limit=None): function set_user_emoji_status (line 362) | def set_user_emoji_status(token, user_id, emoji_status_custom_emoji_id=N... function set_message_reaction (line 371) | def set_message_reaction(token, chat_id, message_id, reaction=None, is_b... function get_chat (line 382) | def get_chat(token, chat_id): function leave_chat (line 388) | def leave_chat(token, chat_id): function get_chat_administrators (line 394) | def get_chat_administrators(token, chat_id): function get_chat_member_count (line 400) | def get_chat_member_count(token, chat_id): function set_sticker_set_thumbnail (line 407) | def set_sticker_set_thumbnail(token, name, user_id, thumbnail, format): function replace_sticker_in_set (line 419) | def replace_sticker_in_set(token, user_id, name, old_sticker, sticker): function set_chat_sticker_set (line 424) | def set_chat_sticker_set(token, chat_id, sticker_set_name): function delete_chat_sticker_set (line 430) | def delete_chat_sticker_set(token, chat_id): function get_chat_member (line 436) | def get_chat_member(token, chat_id, user_id): function forward_message (line 442) | def forward_message( function copy_message (line 468) | def copy_message(token, chat_id, from_chat_id, message_id, caption=None,... function send_checklist (line 507) | def send_checklist( function edit_message_checklist (line 527) | def edit_message_checklist( function send_dice (line 538) | def send_dice( function send_photo (line 573) | def send_photo( function send_paid_media (line 624) | def send_paid_media( function send_media_group (line 665) | def send_media_group( function send_location (line 697) | def send_location( function edit_message_live_location (line 741) | def edit_message_live_location( function stop_message_live_location (line 769) | def stop_message_live_location( function send_venue (line 789) | def send_venue( function send_contact (line 830) | def send_contact( function send_message_draft (line 867) | def send_message_draft( function send_chat_action (line 881) | def send_chat_action(token, chat_id, action, timeout=None, message_threa... function send_video (line 893) | def send_video(token, chat_id, data, duration=None, caption=None, reply_... function send_animation (line 968) | def send_animation( function send_voice (line 1030) | def send_voice(token, chat_id, voice, caption=None, duration=None, reply... function send_video_note (line 1074) | def send_video_note(token, chat_id, data, duration=None, length=None, re... function send_audio (line 1124) | def send_audio(token, chat_id, audio, caption=None, duration=None, perfo... function send_data (line 1180) | def send_data(token, chat_id, data, data_type, reply_markup=None, parse_... function get_method_by_type (line 1238) | def get_method_by_type(data_type): function ban_chat_member (line 1247) | def ban_chat_member(token, chat_id, user_id, until_date=None, revoke_mes... function unban_chat_member (line 1259) | def unban_chat_member(token, chat_id, user_id, only_if_banned): function restrict_chat_member (line 1267) | def restrict_chat_member( function promote_chat_member (line 1284) | def promote_chat_member( function set_chat_administrator_custom_title (line 1330) | def set_chat_administrator_custom_title(token, chat_id, user_id, custom_... function set_chat_member_tag (line 1338) | def set_chat_member_tag(token, chat_id, user_id, tag=None): function ban_chat_sender_chat (line 1346) | def ban_chat_sender_chat(token, chat_id, sender_chat_id): function unban_chat_sender_chat (line 1352) | def unban_chat_sender_chat(token, chat_id, sender_chat_id): function set_chat_permissions (line 1358) | def set_chat_permissions(token, chat_id, permissions, use_independent_ch... function create_chat_invite_link (line 1369) | def create_chat_invite_link(token, chat_id, name, expire_date, member_li... function edit_chat_invite_link (line 1390) | def edit_chat_invite_link(token, chat_id, invite_link, name, expire_date... function create_chat_subscription_invite_link (line 1412) | def create_chat_subscription_invite_link(token, chat_id, subscription_pe... function edit_chat_subscription_invite_link (line 1423) | def edit_chat_subscription_invite_link(token, chat_id, invite_link, name... function revoke_chat_invite_link (line 1433) | def revoke_chat_invite_link(token, chat_id, invite_link): function export_chat_invite_link (line 1442) | def export_chat_invite_link(token, chat_id): function approve_chat_join_request (line 1448) | def approve_chat_join_request(token, chat_id, user_id): function decline_chat_join_request (line 1457) | def decline_chat_join_request(token, chat_id, user_id): function set_chat_photo (line 1466) | def set_chat_photo(token, chat_id, photo): function delete_chat_photo (line 1479) | def delete_chat_photo(token, chat_id): function set_chat_title (line 1485) | def set_chat_title(token, chat_id, title): function set_my_description (line 1491) | def set_my_description(token, description=None, language_code=None): function get_my_description (line 1501) | def get_my_description(token, language_code=None): function set_my_short_description (line 1508) | def set_my_short_description(token, short_description=None, language_cod... function get_my_short_description (line 1517) | def get_my_short_description(token, language_code=None): function get_my_commands (line 1524) | def get_my_commands(token, scope=None, language_code=None): function set_my_name (line 1533) | def set_my_name(token, name=None, language_code=None): function get_my_name (line 1542) | def get_my_name(token, language_code=None): function set_my_profile_photo (line 1549) | def set_my_profile_photo(token, photo): function delete_my_profile_photo (line 1556) | def delete_my_profile_photo(token): function set_chat_menu_button (line 1560) | def set_chat_menu_button(token, chat_id=None, menu_button=None): function get_chat_menu_button (line 1569) | def get_chat_menu_button(token, chat_id=None): function set_my_default_administrator_rights (line 1577) | def set_my_default_administrator_rights(token, rights=None, for_channels... function get_my_default_administrator_rights (line 1587) | def get_my_default_administrator_rights(token, for_channels=None): function set_my_commands (line 1595) | def set_my_commands(token, commands, scope=None, language_code=None): function get_business_connection (line 1604) | def get_business_connection(token, business_connection_id): function delete_my_commands (line 1609) | def delete_my_commands(token, scope=None, language_code=None): function set_chat_description (line 1619) | def set_chat_description(token, chat_id, description): function pin_chat_message (line 1627) | def pin_chat_message(token, chat_id, message_id, disable_notification=No... function unpin_chat_message (line 1637) | def unpin_chat_message(token, chat_id, message_id, business_connection_i... function unpin_all_chat_messages (line 1647) | def unpin_all_chat_messages(token, chat_id): function edit_message_text (line 1655) | def edit_message_text( function edit_message_caption (line 1681) | def edit_message_caption( function edit_message_media (line 1707) | def edit_message_media( function edit_message_reply_markup (line 1728) | def edit_message_reply_markup( function approve_suggested_post (line 1747) | def approve_suggested_post(token, chat_id, message_id, send_date=None): function decline_suggested_post (line 1754) | def decline_suggested_post(token, chat_id, message_id, comment=None): function delete_message (line 1762) | def delete_message(token, chat_id, message_id, timeout=None): function send_game (line 1772) | def send_game( function set_game_score (line 1801) | def set_game_score(token, user_id, score, force=None, disable_edit_messa... function get_game_high_scores (line 1831) | def get_game_high_scores(token, user_id, chat_id=None, message_id=None, ... function send_invoice (line 1855) | def send_invoice( function answer_shipping_query (line 1958) | def answer_shipping_query(token, shipping_query_id, ok, shipping_options... function answer_pre_checkout_query (line 1977) | def answer_pre_checkout_query(token, pre_checkout_query_id, ok, error_me... function get_my_star_balance (line 1992) | def get_my_star_balance(token): function get_star_transactions (line 1996) | def get_star_transactions(token, offset=None, limit=None): function refund_star_payment (line 2006) | def refund_star_payment(token, user_id, telegram_payment_charge_id): function edit_user_star_subscription (line 2011) | def edit_user_star_subscription(token, user_id, telegram_payment_charge_... function unpin_all_general_forum_topic_messages (line 2017) | def unpin_all_general_forum_topic_messages(token, chat_id): function answer_callback_query (line 2024) | def answer_callback_query(token, callback_query_id, text=None, show_aler... function get_user_chat_boosts (line 2050) | def get_user_chat_boosts(token, chat_id, user_id): function answer_inline_query (line 2055) | def answer_inline_query(token, inline_query_id, results, cache_time=None... function get_sticker_set (line 2070) | def get_sticker_set(token, name): function get_custom_emoji_stickers (line 2074) | def get_custom_emoji_stickers(token, custom_emoji_ids): function set_sticker_keywords (line 2078) | def set_sticker_keywords(token, sticker, keywords=None): function set_sticker_mask_position (line 2085) | def set_sticker_mask_position(token, sticker, mask_position=None): function upload_sticker_file (line 2093) | def upload_sticker_file(token, user_id, sticker, sticker_format): function set_custom_emoji_sticker_set_thumbnail (line 2100) | def set_custom_emoji_sticker_set_thumbnail(token, name, custom_emoji_id=... function set_sticker_set_title (line 2108) | def set_sticker_set_title(token, name, title): function delete_sticker_set (line 2114) | def delete_sticker_set(token, name): function get_available_gifts (line 2120) | def get_available_gifts(token): function send_gift (line 2125) | def send_gift(token, gift_id, text=None, text_parse_mode=None, text_enti... function verify_user (line 2144) | def verify_user(token, user_id, custom_description=None): function verify_chat (line 2152) | def verify_chat(token, chat_id, custom_description=None): function remove_user_verification (line 2160) | def remove_user_verification(token, user_id): function remove_chat_verification (line 2166) | def remove_chat_verification(token, chat_id): function read_business_message (line 2172) | def read_business_message(token, business_connection_id, chat_id, messag... function delete_business_messages (line 2178) | def delete_business_messages(token, business_connection_id, message_ids): function set_business_account_name (line 2184) | def set_business_account_name(token, business_connection_id, first_name,... function set_business_account_username (line 2192) | def set_business_account_username(token, business_connection_id, usernam... function set_business_account_bio (line 2200) | def set_business_account_bio(token, business_connection_id, bio=None): function set_business_account_gift_settings (line 2208) | def set_business_account_gift_settings(token, business_connection_id, sh... function set_sticker_emoji_list (line 2214) | def set_sticker_emoji_list(token, sticker, emoji_list): function get_business_account_star_balance (line 2219) | def get_business_account_star_balance(token, business_connection_id): function transfer_business_account_stars (line 2224) | def transfer_business_account_stars(token, business_connection_id, star_... function get_business_account_gifts (line 2229) | def get_business_account_gifts(token, business_connection_id, exclude_un... function get_user_gifts (line 2259) | def get_user_gifts(token, user_id, exclude_unlimited=None, exclude_limit... function get_chat_gifts (line 2284) | def get_chat_gifts(token, chat_id, exclude_unsaved=None, exclude_saved=N... function convert_gift_to_stars (line 2315) | def convert_gift_to_stars(token, business_connection_id, owned_gift_id): function upgrade_gift (line 2320) | def upgrade_gift(token, business_connection_id, owned_gift_id, keep_orig... function transfer_gift (line 2329) | def transfer_gift(token, business_connection_id, owned_gift_id, new_owne... function post_story (line 2336) | def post_story(token, business_connection_id, content, active_period, ca... function repost_story (line 2359) | def repost_story(token, business_connection_id, from_chat_id, from_story... function edit_story (line 2372) | def edit_story(token, business_connection_id, story_id, content, caption... function delete_story (line 2390) | def delete_story(token, business_connection_id, story_id): function gift_premium_subscription (line 2395) | def gift_premium_subscription(token, user_id, month_count, star_count, t... function set_business_account_profile_photo (line 2407) | def set_business_account_profile_photo(token, business_connection_id, ph... function remove_business_account_profile_photo (line 2416) | def remove_business_account_profile_photo(token, business_connection_id,... function create_new_sticker_set (line 2423) | def create_new_sticker_set( function add_sticker_to_set (line 2449) | def add_sticker_to_set(token, user_id, name, sticker): function set_sticker_position_in_set (line 2456) | def set_sticker_position_in_set(token, sticker, position): function delete_sticker_from_set (line 2462) | def delete_sticker_from_set(token, sticker): function answer_web_app_query (line 2468) | def answer_web_app_query(token, web_app_query_id, result: types.InlineQu... function save_prepared_inline_message (line 2474) | def save_prepared_inline_message(token, user_id, result: types.InlineQue... function create_invoice_link (line 2489) | def create_invoice_link(token, title, description, payload, provider_token, function send_poll (line 2535) | def send_poll( function create_forum_topic (line 2596) | def create_forum_topic(token, chat_id, name, icon_color=None, icon_custo... function edit_forum_topic (line 2605) | def edit_forum_topic(token, chat_id, message_thread_id, name=None, icon_... function close_forum_topic (line 2614) | def close_forum_topic(token, chat_id, message_thread_id): function reopen_forum_topic (line 2619) | def reopen_forum_topic(token, chat_id, message_thread_id): function delete_forum_topic (line 2624) | def delete_forum_topic(token, chat_id, message_thread_id): function unpin_all_forum_topic_messages (line 2629) | def unpin_all_forum_topic_messages(token, chat_id, message_thread_id): function get_forum_topic_icon_stickers (line 2634) | def get_forum_topic_icon_stickers(token): function stop_poll (line 2638) | def stop_poll(token, chat_id, message_id, reply_markup=None, business_co... function edit_general_forum_topic (line 2647) | def edit_general_forum_topic(token, chat_id, name): function close_general_forum_topic (line 2652) | def close_general_forum_topic(token, chat_id): function reopen_general_forum_topic (line 2657) | def reopen_general_forum_topic(token, chat_id): function hide_general_forum_topic (line 2662) | def hide_general_forum_topic(token, chat_id): function unhide_general_forum_topic (line 2667) | def unhide_general_forum_topic(token, chat_id): function delete_messages (line 2672) | def delete_messages(token, chat_id, message_ids): function forward_messages (line 2680) | def forward_messages(token, chat_id, from_chat_id, message_ids, disable_... function copy_messages (line 2698) | def copy_messages(token, chat_id, from_chat_id, message_ids, disable_not... function _convert_list_json_serializable (line 2722) | def _convert_list_json_serializable(results): function _convert_markup (line 2732) | def _convert_markup(markup): function convert_input_media (line 2738) | def convert_input_media(media): function convert_input_media_array (line 2744) | def convert_input_media_array(array): function _no_encode (line 2764) | def _no_encode(func): class ApiException (line 2774) | class ApiException(Exception): method __init__ (line 2782) | def __init__(self, msg, function_name, result): class ApiHTTPException (line 2788) | class ApiHTTPException(ApiException): method __init__ (line 2793) | def __init__(self, function_name, result): class ApiInvalidJSONException (line 2801) | class ApiInvalidJSONException(ApiException): method __init__ (line 2806) | def __init__(self, function_name, result): class ApiTelegramException (line 2814) | class ApiTelegramException(ApiException): method __init__ (line 2818) | def __init__(self, function_name, result, result_json): FILE: telebot/async_telebot.py class Handler (line 43) | class Handler: method __init__ (line 47) | def __init__(self, callback, *args, **kwargs): method __getitem__ (line 52) | def __getitem__(self, item): class ExceptionHandler (line 56) | class ExceptionHandler: method handle (line 62) | async def handle(self, exception): class AsyncTeleBot (line 66) | class AsyncTeleBot: method __init__ (line 128) | def __init__(self, token: str, parse_mode: Optional[str]=None, offset:... method user (line 202) | def user(self): method close_session (line 205) | async def close_session(self): method get_updates (line 212) | async def get_updates(self, offset: Optional[int]=None, limit: Optiona... method _setup_change_detector (line 244) | def _setup_change_detector(self, path_to_watch: str) -> None: method polling (line 263) | async def polling(self, non_stop: bool=True, skip_pending=False, inter... method infinity_polling (line 326) | async def infinity_polling(self, timeout: Optional[int]=20, skip_pendi... method _handle_exception (line 389) | async def _handle_exception(self, exception: Exception) -> bool: method __hide_token (line 399) | def __hide_token(self, message: str) -> str: method _handle_error_interval (line 406) | async def _handle_error_interval(self, error_interval: float): method _process_polling (line 415) | async def _process_polling(self, non_stop: bool=False, interval: int=0... method _loop_create_task (line 509) | def _loop_create_task(coro): method _process_updates (line 512) | async def _process_updates(self, handlers, messages, update_type): method _run_middlewares_and_handlers (line 526) | async def _run_middlewares_and_handlers(self, message, handlers, middl... method process_new_updates (line 604) | async def process_new_updates(self, updates: List[types.Update]): method process_new_messages (line 762) | async def process_new_messages(self, new_messages): method process_new_edited_messages (line 769) | async def process_new_edited_messages(self, edited_message): method process_new_channel_posts (line 775) | async def process_new_channel_posts(self, channel_post): method process_new_edited_channel_posts (line 781) | async def process_new_edited_channel_posts(self, edited_channel_post): method process_new_message_reaction (line 787) | async def process_new_message_reaction(self, message_reaction): method process_new_message_reaction_count (line 793) | async def process_new_message_reaction_count(self, message_reaction_co... method process_new_inline_query (line 799) | async def process_new_inline_query(self, new_inline_queries): method process_new_chosen_inline_query (line 805) | async def process_new_chosen_inline_query(self, new_chosen_inline_quer... method process_new_callback_query (line 811) | async def process_new_callback_query(self, new_callback_queries): method process_new_shipping_query (line 817) | async def process_new_shipping_query(self, new_shipping_queries): method process_new_pre_checkout_query (line 823) | async def process_new_pre_checkout_query(self, pre_checkout_queries): method process_new_poll (line 829) | async def process_new_poll(self, polls): method process_new_poll_answer (line 835) | async def process_new_poll_answer(self, poll_answers): method process_new_my_chat_member (line 841) | async def process_new_my_chat_member(self, my_chat_members): method process_new_chat_member (line 847) | async def process_new_chat_member(self, chat_members): method process_chat_join_request (line 853) | async def process_chat_join_request(self, chat_join_request): method process_new_chat_boost (line 859) | async def process_new_chat_boost(self, chat_boost): method process_new_removed_chat_boost (line 865) | async def process_new_removed_chat_boost(self, removed_chat_boost): method process_new_business_connection (line 871) | async def process_new_business_connection(self, new_business_connectio... method process_new_business_message (line 877) | async def process_new_business_message(self, new_business_messages): method process_new_edited_business_message (line 883) | async def process_new_edited_business_message(self, new_edited_busines... method process_new_deleted_business_messages (line 889) | async def process_new_deleted_business_messages(self, new_deleted_busi... method process_new_purchased_paid_media (line 895) | async def process_new_purchased_paid_media(self, new_purchased_paid_me... method _get_middlewares (line 901) | async def _get_middlewares(self, update_type): method __notify_update (line 910) | async def __notify_update(self, new_messages): method _test_message_handler (line 916) | async def _test_message_handler(self, message_handler, message): method set_update_listener (line 933) | def set_update_listener(self, func: Awaitable): method add_custom_filter (line 953) | def add_custom_filter(self, custom_filter: Union[asyncio_filters.Simpl... method _test_filter (line 973) | async def _test_filter(self, message_filter, filter_value, message): method _check_filter (line 1006) | async def _check_filter(self, message_filter, filter_value, message): method setup_middleware (line 1026) | def setup_middleware(self, middleware: BaseMiddleware): method check_commands_input (line 1050) | def check_commands_input(commands, method_name): method check_regexp_input (line 1059) | def check_regexp_input(regexp, method_name): method message_handler (line 1066) | def message_handler(self, commands=None, regexp=None, func=None, conte... method add_message_handler (line 1146) | def add_message_handler(self, handler_dict): method register_message_handler (line 1158) | def register_message_handler(self, callback: Callable[[Any], Awaitable... method edited_message_handler (line 1208) | def edited_message_handler(self, commands=None, regexp=None, func=None... method add_edited_message_handler (line 1258) | def add_edited_message_handler(self, handler_dict): method register_edited_message_handler (line 1270) | def register_edited_message_handler(self, callback: Callable[[Any], Aw... method channel_post_handler (line 1320) | def channel_post_handler(self, commands=None, regexp=None, func=None, ... method add_channel_post_handler (line 1363) | def add_channel_post_handler(self, handler_dict): method register_channel_post_handler (line 1375) | def register_channel_post_handler(self, callback: Callable[[Any], Awai... method edited_channel_post_handler (line 1419) | def edited_channel_post_handler(self, commands=None, regexp=None, func... method add_edited_channel_post_handler (line 1463) | def add_edited_channel_post_handler(self, handler_dict): method register_edited_channel_post_handler (line 1475) | def register_edited_channel_post_handler(self, callback: Callable[[Any... method message_reaction_handler (line 1519) | def message_reaction_handler(self, func=None, **kwargs): method add_message_reaction_handler (line 1539) | def add_message_reaction_handler(self, handler_dict): method register_message_reaction_handler (line 1551) | def register_message_reaction_handler(self, callback: Callable[[Any], ... method message_reaction_count_handler (line 1571) | def message_reaction_count_handler(self, func=None, **kwargs): method add_message_reaction_count_handler (line 1591) | def add_message_reaction_count_handler(self, handler_dict): method register_message_reaction_count_handler (line 1603) | def register_message_reaction_count_handler(self, callback: Callable[[... method inline_handler (line 1624) | def inline_handler(self, func=None, **kwargs): method add_inline_handler (line 1644) | def add_inline_handler(self, handler_dict): method register_inline_handler (line 1656) | def register_inline_handler(self, callback: Callable[[Any], Awaitable]... method chosen_inline_handler (line 1676) | def chosen_inline_handler(self, func, **kwargs): method add_chosen_inline_handler (line 1697) | def add_chosen_inline_handler(self, handler_dict): method register_chosen_inline_handler (line 1709) | def register_chosen_inline_handler(self, callback: Callable[[Any], Awa... method callback_query_handler (line 1729) | def callback_query_handler(self, func=None, **kwargs): method add_callback_query_handler (line 1749) | def add_callback_query_handler(self, handler_dict): method register_callback_query_handler (line 1761) | def register_callback_query_handler(self, callback: Callable[[Any], Aw... method shipping_query_handler (line 1781) | def shipping_query_handler(self, func, **kwargs): method add_shipping_query_handler (line 1801) | def add_shipping_query_handler(self, handler_dict): method register_shipping_query_handler (line 1813) | def register_shipping_query_handler(self, callback: Callable[[Any], Aw... method pre_checkout_query_handler (line 1833) | def pre_checkout_query_handler(self, func, **kwargs): method add_pre_checkout_query_handler (line 1853) | def add_pre_checkout_query_handler(self, handler_dict): method register_pre_checkout_query_handler (line 1865) | def register_pre_checkout_query_handler(self, callback: Callable[[Any]... method purchased_paid_media_handler (line 1884) | def purchased_paid_media_handler(self, func=None, **kwargs): method add_purchased_paid_media_handler (line 1902) | def add_purchased_paid_media_handler(self, handler_dict): method register_purchased_paid_media_handler (line 1914) | def register_purchased_paid_media_handler(self, callback: Callable, fu... method poll_handler (line 1934) | def poll_handler(self, func, **kwargs): method add_poll_handler (line 1953) | def add_poll_handler(self, handler_dict): method register_poll_handler (line 1965) | def register_poll_handler(self, callback: Callable[[Any], Awaitable], ... method poll_answer_handler (line 1985) | def poll_answer_handler(self, func=None, **kwargs): method add_poll_answer_handler (line 2006) | def add_poll_answer_handler(self, handler_dict): method register_poll_answer_handler (line 2018) | def register_poll_answer_handler(self, callback: Callable[[Any], Await... method my_chat_member_handler (line 2038) | def my_chat_member_handler(self, func=None, **kwargs): method add_my_chat_member_handler (line 2059) | def add_my_chat_member_handler(self, handler_dict): method register_my_chat_member_handler (line 2071) | def register_my_chat_member_handler(self, callback: Callable[[Any], Aw... method chat_member_handler (line 2091) | def chat_member_handler(self, func=None, **kwargs): method add_chat_member_handler (line 2113) | def add_chat_member_handler(self, handler_dict): method register_chat_member_handler (line 2125) | def register_chat_member_handler(self, callback: Callable[[Any], Await... method chat_join_request_handler (line 2145) | def chat_join_request_handler(self, func=None, **kwargs): method add_chat_join_request_handler (line 2166) | def add_chat_join_request_handler(self, handler_dict): method register_chat_join_request_handler (line 2178) | def register_chat_join_request_handler(self, callback: Callable[[Any],... method chat_boost_handler (line 2199) | def chat_boost_handler(self, func=None, **kwargs): method add_chat_boost_handler (line 2217) | def add_chat_boost_handler(self, handler_dict): method register_chat_boost_handler (line 2229) | def register_chat_boost_handler(self, callback: Callable, func: Option... method removed_chat_boost_handler (line 2248) | def removed_chat_boost_handler(self, func=None, **kwargs): method add_removed_chat_boost_handler (line 2266) | def add_removed_chat_boost_handler(self, handler_dict): method register_removed_chat_boost_handler (line 2278) | def register_removed_chat_boost_handler(self, callback: Callable, func... method business_connection_handler (line 2298) | def business_connection_handler(self, func=None, **kwargs): method add_business_connection_handler (line 2315) | def add_business_connection_handler(self, handler_dict): method register_business_connection_handler (line 2327) | def register_business_connection_handler( method business_message_handler (line 2348) | def business_message_handler( method add_business_message_handler (line 2430) | def add_business_message_handler(self, handler_dict): method register_business_message_handler (line 2442) | def register_business_message_handler(self, method edited_business_message_handler (line 2482) | def edited_business_message_handler(self, commands=None, regexp=None, ... method add_edited_business_message_handler (line 2533) | def add_edited_business_message_handler(self, handler_dict): method register_edited_business_message_handler (line 2546) | def register_edited_business_message_handler(self, callback: Callable,... method deleted_business_messages_handler (line 2598) | def deleted_business_messages_handler(self, func=None, **kwargs): method add_deleted_business_messages_handler (line 2617) | def add_deleted_business_messages_handler(self, handler_dict): method register_deleted_business_messages_handler (line 2626) | def register_deleted_business_messages_handler(self, callback: Callabl... method _build_handler_dict (line 2648) | def _build_handler_dict(handler, pass_bot=False, **filters): method skip_updates (line 2664) | async def skip_updates(self): method get_me (line 2674) | async def get_me(self) -> types.User: method get_file (line 2683) | async def get_file(self, file_id: Optional[str]) -> types.File: method get_file_url (line 2700) | async def get_file_url(self, file_id: Optional[str]) -> str: method download_file (line 2712) | async def download_file(self, file_path: Optional[str]) -> bytes: method log_out (line 2724) | async def log_out(self) -> bool: method close (line 2740) | async def close(self) -> bool: method enable_saving_states (line 2754) | def enable_saving_states(self, filename="./.state-save/states.pkl"): method set_webhook (line 2768) | async def set_webhook(self, url: Optional[str]=None, certificate: Opti... method run_webhooks (line 2825) | async def run_webhooks(self, method delete_webhook (line 2901) | async def delete_webhook(self, drop_pending_updates: Optional[bool]=No... method remove_webhook (line 2919) | async def remove_webhook(self) -> bool: method get_webhook_info (line 2926) | async def get_webhook_info(self, timeout: Optional[int]=None) -> types... method set_message_reaction (line 2942) | async def set_message_reaction(self, chat_id: Union[int, str], message... method get_user_profile_photos (line 2968) | async def get_user_profile_photos(self, user_id: int, offset: Optional... method get_user_profile_audios (line 2992) | async def get_user_profile_audios(self, user_id: int, offset: Optional... method set_user_emoji_status (line 3012) | async def set_user_emoji_status(self, user_id: int, emoji_status_custo... method get_chat (line 3032) | async def get_chat(self, chat_id: Union[int, str]) -> types.ChatFullInfo: method leave_chat (line 3048) | async def leave_chat(self, chat_id: Union[int, str]) -> bool: method get_chat_administrators (line 3062) | async def get_chat_administrators(self, chat_id: Union[int, str]) -> L... method get_chat_members_count (line 3079) | async def get_chat_members_count(self, chat_id: Union[int, str]) -> int: method get_chat_member_count (line 3099) | async def get_chat_member_count(self, chat_id: Union[int, str]) -> int: method set_chat_sticker_set (line 3114) | async def set_chat_sticker_set(self, chat_id: Union[int, str], sticker... method delete_chat_sticker_set (line 3134) | async def delete_chat_sticker_set(self, chat_id: Union[int, str]) -> b... method answer_web_app_query (line 3151) | async def answer_web_app_query(self, web_app_query_id: str, result: ty... method save_prepared_inline_message (line 3172) | async def save_prepared_inline_message(self, user_id: int, result: typ... method get_chat_member (line 3202) | async def get_chat_member(self, chat_id: Union[int, str], user_id: int... method send_message (line 3220) | async def send_message( method forward_message (line 3370) | async def forward_message( method copy_message (line 3435) | async def copy_message( method approve_suggested_post (line 3570) | async def approve_suggested_post(self, chat_id: int, message_id: int, ... method decline_suggested_post (line 3592) | async def decline_suggested_post(self, chat_id: int, message_id: int, ... method delete_message (line 3614) | async def delete_message(self, chat_id: Union[int, str], message_id: int, method delete_messages (line 3643) | async def delete_messages(self, chat_id: Union[int, str], message_ids:... method forward_messages (line 3661) | async def forward_messages(self, chat_id: Union[str, int], from_chat_i... method copy_messages (line 3703) | async def copy_messages(self, chat_id: Union[str, int], from_chat_id: ... method send_checklist (line 3749) | async def send_checklist( method edit_message_checklist (line 3802) | async def edit_message_checklist( method send_dice (line 3834) | async def send_dice( method send_photo (line 3941) | async def send_photo( method send_audio (line 4071) | async def send_audio( method send_voice (line 4221) | async def send_voice( method send_document (line 4344) | async def send_document( method send_sticker (line 4501) | async def send_sticker( method send_video (line 4625) | async def send_video( method send_animation (line 4798) | async def send_animation( method send_video_note (line 4954) | async def send_video_note( method send_paid_media (line 5086) | async def send_paid_media( method send_media_group (line 5166) | async def send_media_group( method send_location (line 5266) | async def send_location( method edit_message_live_location (line 5394) | async def edit_message_live_location( method stop_message_live_location (line 5461) | async def stop_message_live_location( method send_venue (line 5500) | async def send_venue( method send_contact (line 5635) | async def send_contact( method send_message_draft (line 5751) | async def send_message_draft( method send_chat_action (line 5788) | async def send_chat_action( method kick_chat_member (line 5824) | async def kick_chat_member( method ban_chat_member (line 5834) | async def ban_chat_member( method unban_chat_member (line 5867) | async def unban_chat_member( method restrict_chat_member (line 5894) | async def restrict_chat_member( method promote_chat_member (line 5981) | async def promote_chat_member( method set_chat_administrator_custom_title (line 6095) | async def set_chat_administrator_custom_title( method set_chat_member_tag (line 6120) | async def set_chat_member_tag( method ban_chat_sender_chat (line 6144) | async def ban_chat_sender_chat(self, chat_id: Union[int, str], sender_... method unban_chat_sender_chat (line 6166) | async def unban_chat_sender_chat(self, chat_id: Union[int, str], sende... method set_chat_permissions (line 6186) | async def set_chat_permissions( method create_chat_invite_link (line 6214) | async def create_chat_invite_link( method edit_chat_invite_link (line 6251) | async def edit_chat_invite_link( method create_chat_subscription_invite_link (line 6290) | async def create_chat_subscription_invite_link( method edit_chat_subscription_invite_link (line 6322) | async def edit_chat_subscription_invite_link( method revoke_chat_invite_link (line 6347) | async def revoke_chat_invite_link( method export_chat_invite_link (line 6370) | async def export_chat_invite_link(self, chat_id: Union[int, str]) -> str: method approve_chat_join_request (line 6387) | async def approve_chat_join_request(self, chat_id: Union[str, int], us... method decline_chat_join_request (line 6407) | async def decline_chat_join_request(self, chat_id: Union[str, int], us... method set_chat_photo (line 6427) | async def set_chat_photo(self, chat_id: Union[int, str], photo: Any) -... method delete_chat_photo (line 6448) | async def delete_chat_photo(self, chat_id: Union[int, str]) -> bool: method set_my_description (line 6466) | async def set_my_description(self, description: Optional[str]=None, la... method get_my_description (line 6484) | async def get_my_description(self, language_code: Optional[str]=None): method set_my_short_description (line 6497) | async def set_my_short_description(self, short_description:Optional[st... method get_my_short_description (line 6515) | async def get_my_short_description(self, language_code: Optional[str]=... method get_my_commands (line 6528) | async def get_my_commands(self, scope: Optional[types.BotCommandScope], method set_my_name (line 6551) | async def set_my_name(self, name: Optional[str]=None, language_code: O... method get_my_name (line 6569) | async def get_my_name(self, language_code: Optional[str]=None): method set_my_profile_photo (line 6585) | async def set_my_profile_photo(self, photo: types.InputProfilePhoto) -... method remove_my_profile_photo (line 6599) | async def remove_my_profile_photo(self) -> bool: method set_chat_menu_button (line 6610) | async def set_chat_menu_button(self, chat_id: Union[int, str]=None, method get_chat_menu_button (line 6632) | async def get_chat_menu_button(self, chat_id: Union[int, str]=None) ->... method set_my_default_administrator_rights (line 6650) | async def set_my_default_administrator_rights(self, rights: types.Chat... method get_my_default_administrator_rights (line 6676) | async def get_my_default_administrator_rights(self, for_channels: bool... method get_business_connection (line 6692) | async def get_business_connection(self, business_connection_id: str) -... method set_my_commands (line 6712) | async def set_my_commands(self, commands: List[types.BotCommand], method delete_my_commands (line 6737) | async def delete_my_commands(self, scope: Optional[types.BotCommandSco... method set_chat_title (line 6760) | async def set_chat_title(self, chat_id: Union[int, str], title: str) -... method set_chat_description (line 6782) | async def set_chat_description(self, chat_id: Union[int, str], descrip... method pin_chat_message (line 6801) | async def pin_chat_message( method unpin_chat_message (line 6832) | async def unpin_chat_message(self, chat_id: Union[int, str], message_i... method unpin_all_chat_messages (line 6855) | async def unpin_all_chat_messages(self, chat_id: Union[int, str]) -> b... method edit_message_text (line 6872) | async def edit_message_text( method edit_message_media (line 6953) | async def edit_message_media( method edit_message_reply_markup (line 6998) | async def edit_message_reply_markup( method send_game (line 7037) | async def send_game( method set_game_score (line 7128) | async def set_game_score( method get_game_high_scores (line 7170) | async def get_game_high_scores( method send_invoice (line 7202) | async def send_invoice( method create_invoice_link (line 7389) | async def create_invoice_link(self, method send_poll (line 7504) | async def send_poll( method stop_poll (line 7671) | async def stop_poll( method answer_shipping_query (line 7697) | async def answer_shipping_query( method answer_pre_checkout_query (line 7724) | async def answer_pre_checkout_query( method get_my_star_balance (line 7754) | async def get_my_star_balance(self) -> types.StarAmount: method get_star_transactions (line 7761) | async def get_star_transactions(self, offset: Optional[int]=None, limi... method refund_star_payment (line 7779) | async def refund_star_payment(self, user_id: int, telegram_payment_cha... method edit_user_star_subscription (line 7796) | async def edit_user_star_subscription(self, user_id: int, telegram_pay... method edit_message_caption (line 7816) | async def edit_message_caption( method reply_to (line 7874) | async def reply_to(self, message: types.Message, text: str, **kwargs) ... method answer_inline_query (line 7907) | async def answer_inline_query( method unpin_all_general_forum_topic_messages (line 7964) | async def unpin_all_general_forum_topic_messages(self, chat_id: Union[... method answer_callback_query (line 7982) | async def answer_callback_query( method get_user_chat_boosts (line 8020) | async def get_user_chat_boosts(self, chat_id: Union[int, str], user_id... method set_sticker_set_thumbnail (line 8040) | async def set_sticker_set_thumbnail(self, name: str, user_id: int, thu... method set_sticker_set_thumb (line 8070) | async def set_sticker_set_thumb(self, name: str, user_id: int, thumb: ... method get_sticker_set (line 8092) | async def get_sticker_set(self, name: str) -> types.StickerSet: method set_sticker_keywords (line 8107) | async def set_sticker_keywords(self, sticker: str, keywords: List[str]... method set_sticker_mask_position (line 8124) | async def set_sticker_mask_position(self, sticker: str, mask_position:... method get_custom_emoji_stickers (line 8141) | async def get_custom_emoji_stickers(self, custom_emoji_ids: List[str])... method upload_sticker_file (line 8155) | async def upload_sticker_file(self, user_id: int, png_sticker: Union[A... method set_custom_emoji_sticker_set_thumbnail (line 8187) | async def set_custom_emoji_sticker_set_thumbnail(self, name: str, cust... method set_sticker_set_title (line 8203) | async def set_sticker_set_title(self, name: str, title: str) -> bool: method delete_sticker_set (line 8220) | async def delete_sticker_set(self, name:str) -> bool: method send_gift (line 8233) | async def send_gift(self, user_id: Optional[Union[str, int]] = None, g... method verify_user (line 8275) | async def verify_user(self, user_id: int, custom_description: Optional... method verify_chat (line 8292) | async def verify_chat(self, chat_id: Union[int, str], custom_descripti... method remove_user_verification (line 8310) | async def remove_user_verification(self, user_id: int) -> bool: method remove_chat_verification (line 8325) | async def remove_chat_verification(self, chat_id: int) -> bool: method read_business_message (line 8339) | async def read_business_message(self, business_connection_id: str, cha... method delete_business_messages (line 8359) | async def delete_business_messages(self, business_connection_id: str, ... method set_business_account_name (line 8376) | async def set_business_account_name(self, business_connection_id: str,... method set_business_account_username (line 8396) | async def set_business_account_username(self, business_connection_id: ... method set_business_account_bio (line 8414) | async def set_business_account_bio(self, business_connection_id: str, ... method set_business_account_gift_settings (line 8431) | async def set_business_account_gift_settings( method get_business_account_star_balance (line 8452) | async def get_business_account_star_balance(self, business_connection_... method transfer_business_account_stars (line 8468) | async def transfer_business_account_stars(self, business_connection_id... method get_business_account_gifts (line 8485) | async def get_business_account_gifts( method get_user_gifts (line 8569) | async def get_user_gifts( method get_chat_gifts (line 8629) | async def get_chat_gifts( method convert_gift_to_stars (line 8698) | async def convert_gift_to_stars(self, business_connection_id: str, own... method upgrade_gift (line 8715) | async def upgrade_gift( method transfer_gift (line 8747) | async def transfer_gift( method post_story (line 8779) | async def post_story( method repost_story (line 8835) | async def repost_story( method edit_story (line 8879) | async def edit_story( method delete_story (line 8926) | async def delete_story(self, business_connection_id: str, story_id: in... method set_business_account_profile_photo (line 8943) | async def set_business_account_profile_photo( method remove_business_account_profile_photo (line 8966) | async def remove_business_account_profile_photo( method gift_premium_subscription (line 8985) | async def gift_premium_subscription( method get_available_gifts (line 9021) | async def get_available_gifts(self) -> types.Gifts: method replace_sticker_in_set (line 9034) | async def replace_sticker_in_set(self, user_id: int, name: str, old_st... method set_sticker_emoji_list (line 9059) | async def set_sticker_emoji_list(self, name: str, emoji_list: List[str... method create_new_sticker_set (line 9077) | async def create_new_sticker_set( method add_sticker_to_set (line 9173) | async def add_sticker_to_set( method set_sticker_position_in_set (line 9237) | async def set_sticker_position_in_set(self, sticker: str, position: in... method delete_sticker_from_set (line 9254) | async def delete_sticker_from_set(self, sticker: str) -> bool: method create_forum_topic (line 9266) | async def create_forum_topic(self, method edit_forum_topic (line 9295) | async def edit_forum_topic( method close_forum_topic (line 9327) | async def close_forum_topic(self, chat_id: Union[str, int], message_th... method reopen_forum_topic (line 9346) | async def reopen_forum_topic(self, chat_id: Union[str, int], message_t... method delete_forum_topic (line 9365) | async def delete_forum_topic(self, chat_id: Union[str, int], message_t... method unpin_all_forum_topic_messages (line 9384) | async def unpin_all_forum_topic_messages(self, chat_id: Union[str, int... method edit_general_forum_topic (line 9403) | async def edit_general_forum_topic(self, chat_id: Union[int, str], nam... method close_general_forum_topic (line 9420) | async def close_general_forum_topic(self, chat_id: Union[int, str]) ->... method reopen_general_forum_topic (line 9433) | async def reopen_general_forum_topic(self, chat_id: Union[int, str]) -... method hide_general_forum_topic (line 9446) | async def hide_general_forum_topic(self, chat_id: Union[int, str]) -> ... method unhide_general_forum_topic (line 9459) | async def unhide_general_forum_topic(self, chat_id: Union[int, str]) -... method get_forum_topic_icon_stickers (line 9472) | async def get_forum_topic_icon_stickers(self) -> List[types.Sticker]: method set_state (line 9485) | async def set_state(self, user_id: int, state: Union[int, str, State],... method reset_data (line 9534) | async def reset_data(self, user_id: int, chat_id: Optional[int]=None, method delete_state (line 9566) | async def delete_state(self, user_id: int, chat_id: Optional[int]=None... method retrieve_data (line 9596) | def retrieve_data(self, user_id: int, chat_id: Optional[int]=None, bus... method get_state (line 9627) | async def get_state(self, user_id: int, chat_id: Optional[int]=None, method add_data (line 9665) | async def add_data(self, user_id: int, chat_id: Optional[int]=None, FILE: telebot/asyncio_filters.py class SimpleCustomFilter (line 9) | class SimpleCustomFilter(ABC): method check (line 31) | async def check(self, message) -> bool: class AdvancedCustomFilter (line 38) | class AdvancedCustomFilter(ABC): method check (line 61) | async def check(self, message, text): class TextFilter (line 68) | class TextFilter: method __init__ (line 94) | def __init__(self, method _check_iterable (line 131) | def _check_iterable(self, iterable, filter_name): method check (line 142) | async def check(self, obj: Union[types.Message, types.CallbackQuery, t... class TextMatchFilter (line 190) | class TextMatchFilter(AdvancedCustomFilter): method check (line 203) | async def check(self, message, text): class TextContainsFilter (line 215) | class TextContainsFilter(AdvancedCustomFilter): method check (line 231) | async def check(self, message, text): class TextStartsFilter (line 245) | class TextStartsFilter(AdvancedCustomFilter): method check (line 259) | async def check(self, message, text): class ChatFilter (line 266) | class ChatFilter(AdvancedCustomFilter): method check (line 279) | async def check(self, message, text): class ForwardFilter (line 288) | class ForwardFilter(SimpleCustomFilter): method check (line 301) | async def check(self, message): class IsReplyFilter (line 308) | class IsReplyFilter(SimpleCustomFilter): method check (line 321) | async def check(self, message): class LanguageFilter (line 330) | class LanguageFilter(AdvancedCustomFilter): method check (line 343) | async def check(self, message, text): class IsAdminFilter (line 353) | class IsAdminFilter(SimpleCustomFilter): method __init__ (line 366) | def __init__(self, bot): method check (line 369) | async def check(self, message): class StateFilter (line 380) | class StateFilter(AdvancedCustomFilter): method __init__ (line 391) | def __init__(self, bot): method check (line 396) | async def check(self, message, text): class IsDigitFilter (line 434) | class IsDigitFilter(SimpleCustomFilter): method check (line 446) | async def check(self, message): FILE: telebot/asyncio_handler_backends.py class BaseMiddleware (line 7) | class BaseMiddleware: method __init__ (line 42) | def __init__(self): method pre_process (line 45) | async def pre_process(self, message, data): method post_process (line 48) | async def post_process(self, message, data, exception): class SkipHandler (line 52) | class SkipHandler: method __init__ (line 61) | def __init__(self) -> None: class CancelUpdate (line 65) | class CancelUpdate: method __init__ (line 74) | def __init__(self) -> None: class ContinueHandling (line 78) | class ContinueHandling: method __init__ (line 97) | def __init__(self) -> None: FILE: telebot/asyncio_helper.py class SessionManager (line 31) | class SessionManager: method __init__ (line 32) | def __init__(self) -> None: method create_session (line 37) | async def create_session(self): method get_session (line 44) | async def get_session(self): function _process_request (line 61) | async def _process_request(token, url, method='get', params=None, files=... function _prepare_file (line 107) | def _prepare_file(obj): function _prepare_data (line 115) | def _prepare_data(params=None, files=None): function _convert_markup (line 147) | async def _convert_markup(markup): function get_me (line 154) | async def get_me(token): function log_out (line 159) | async def log_out(token): function close (line 164) | async def close(token): function get_file (line 169) | async def get_file(token, file_id): function get_file_url (line 174) | async def get_file_url(token, file_id): function download_file (line 182) | async def download_file(token, file_path): function set_webhook (line 197) | async def set_webhook(token, url=None, certificate=None, max_connections... function delete_webhook (line 221) | async def delete_webhook(token, drop_pending_updates=None, timeout=None): function get_webhook_info (line 231) | async def get_webhook_info(token, timeout=None): function get_updates (line 240) | async def get_updates(token, offset=None, limit=None, function _check_result (line 254) | async def _check_result(method_name, result: aiohttp.ClientResponse): function send_message (line 281) | async def send_message( function get_user_profile_photos (line 323) | async def get_user_profile_photos(token, user_id, offset=None, limit=None): function get_user_profile_audios (line 333) | async def get_user_profile_audios(token, user_id, offset=None, limit=None): function set_user_emoji_status (line 343) | async def set_user_emoji_status(token, user_id, emoji_status_custom_emoj... function set_message_reaction (line 352) | async def set_message_reaction(token, chat_id, message_id, reaction=None... function get_chat (line 362) | async def get_chat(token, chat_id): function leave_chat (line 368) | async def leave_chat(token, chat_id): function get_chat_administrators (line 374) | async def get_chat_administrators(token, chat_id): function get_chat_member_count (line 380) | async def get_chat_member_count(token, chat_id): function replace_sticker_in_set (line 387) | async def replace_sticker_in_set(token, user_id, name, old_sticker, stic... function set_sticker_set_thumbnail (line 392) | async def set_sticker_set_thumbnail(token, name, user_id, thumbnail, for... function set_chat_sticker_set (line 405) | async def set_chat_sticker_set(token, chat_id, sticker_set_name): function delete_chat_sticker_set (line 411) | async def delete_chat_sticker_set(token, chat_id): function answer_web_app_query (line 417) | async def answer_web_app_query(token, web_app_query_id, result: types.In... function save_prepared_inline_message (line 423) | async def save_prepared_inline_message(token, user_id, result: types.Inl... function get_chat_member (line 437) | async def get_chat_member(token, chat_id, user_id): function forward_message (line 443) | async def forward_message( function copy_message (line 469) | async def copy_message(token, chat_id, from_chat_id, message_id, caption... function send_checklist (line 508) | async def send_checklist( function edit_message_checklist (line 528) | async def edit_message_checklist( function send_dice (line 538) | async def send_dice( function send_photo (line 573) | async def send_photo( function send_paid_media (line 624) | async def send_paid_media( function send_media_group (line 667) | async def send_media_group( function send_location (line 699) | async def send_location( function edit_message_live_location (line 741) | async def edit_message_live_location( function stop_message_live_location (line 769) | async def stop_message_live_location( function send_venue (line 789) | async def send_venue( function send_contact (line 831) | async def send_contact( function send_message_draft (line 866) | async def send_message_draft( function send_chat_action (line 879) | async def send_chat_action(token, chat_id, action, timeout=None, message... function send_video (line 891) | async def send_video(token, chat_id, data, duration=None, caption=None, ... function send_animation (line 965) | async def send_animation( function send_voice (line 1027) | async def send_voice(token, chat_id, voice, caption=None, duration=None,... function send_video_note (line 1071) | async def send_video_note(token, chat_id, data, duration=None, length=No... function send_audio (line 1121) | async def send_audio(token, chat_id, audio, caption=None, duration=None,... function send_data (line 1177) | async def send_data(token, chat_id, data, data_type, reply_markup=None,... function get_method_by_type (line 1235) | async def get_method_by_type(data_type): function ban_chat_member (line 1242) | async def ban_chat_member(token, chat_id, user_id, until_date=None, revo... function unban_chat_member (line 1254) | async def unban_chat_member(token, chat_id, user_id, only_if_banned): function restrict_chat_member (line 1262) | async def restrict_chat_member( function promote_chat_member (line 1278) | async def promote_chat_member( function set_chat_administrator_custom_title (line 1324) | async def set_chat_administrator_custom_title(token, chat_id, user_id, c... function set_chat_member_tag (line 1332) | async def set_chat_member_tag(token, chat_id, user_id, tag=None): function ban_chat_sender_chat (line 1340) | async def ban_chat_sender_chat(token, chat_id, sender_chat_id): function unban_chat_sender_chat (line 1346) | async def unban_chat_sender_chat(token, chat_id, sender_chat_id): function set_chat_permissions (line 1351) | async def set_chat_permissions(token, chat_id, permissions, use_independ... function create_chat_invite_link (line 1362) | async def create_chat_invite_link(token, chat_id, name, expire_date, mem... function edit_chat_invite_link (line 1383) | async def edit_chat_invite_link(token, chat_id, invite_link, name, expir... function create_chat_subscription_invite_link (line 1405) | async def create_chat_subscription_invite_link(token, chat_id, subscript... function edit_chat_subscription_invite_link (line 1416) | async def edit_chat_subscription_invite_link(token, chat_id, invite_link... function revoke_chat_invite_link (line 1427) | async def revoke_chat_invite_link(token, chat_id, invite_link): function export_chat_invite_link (line 1436) | async def export_chat_invite_link(token, chat_id): function approve_chat_join_request (line 1441) | async def approve_chat_join_request(token, chat_id, user_id): function decline_chat_join_request (line 1450) | async def decline_chat_join_request(token, chat_id, user_id): function set_chat_photo (line 1459) | async def set_chat_photo(token, chat_id, photo): function delete_chat_photo (line 1472) | async def delete_chat_photo(token, chat_id): function set_chat_title (line 1478) | async def set_chat_title(token, chat_id, title): function set_my_description (line 1483) | async def set_my_description(token, description=None, language_code=None): function get_my_description (line 1492) | async def get_my_description(token, language_code=None): function set_my_short_description (line 1499) | async def set_my_short_description(token, short_description=None, langua... function get_my_short_description (line 1508) | async def get_my_short_description(token, language_code=None): function get_my_commands (line 1515) | async def get_my_commands(token, scope=None, language_code=None): function set_my_name (line 1525) | async def set_my_name(token, name=None, language_code=None): function get_my_name (line 1534) | async def get_my_name(token, language_code=None): function set_my_profile_photo (line 1541) | async def set_my_profile_photo(token, photo): function remove_my_profile_photo (line 1549) | async def remove_my_profile_photo(token): function set_chat_menu_button (line 1553) | async def set_chat_menu_button(token, chat_id=None, menu_button=None): function get_chat_menu_button (line 1563) | async def get_chat_menu_button(token, chat_id=None): function set_my_default_administrator_rights (line 1572) | async def set_my_default_administrator_rights(token, rights=None, for_ch... function get_my_default_administrator_rights (line 1582) | async def get_my_default_administrator_rights(token, for_channels=None): function set_my_commands (line 1590) | async def set_my_commands(token, commands, scope=None, language_code=None): function get_business_connection (line 1599) | async def get_business_connection(token, business_connection_id): function delete_my_commands (line 1604) | async def delete_my_commands(token, scope=None, language_code=None): function set_chat_description (line 1614) | async def set_chat_description(token, chat_id, description): function pin_chat_message (line 1622) | async def pin_chat_message(token, chat_id, message_id, disable_notificat... function unpin_chat_message (line 1632) | async def unpin_chat_message(token, chat_id, message_id, business_connec... function unpin_all_chat_messages (line 1642) | async def unpin_all_chat_messages(token, chat_id): function edit_message_text (line 1650) | async def edit_message_text( function edit_message_caption (line 1676) | async def edit_message_caption( function edit_message_media (line 1702) | async def edit_message_media( function edit_message_reply_markup (line 1723) | async def edit_message_reply_markup( function approve_suggested_post (line 1743) | async def approve_suggested_post(token, chat_id, message_id, send_date=N... function decline_suggested_post (line 1751) | async def decline_suggested_post(token, chat_id, message_id, comment=None): function delete_message (line 1758) | async def delete_message(token, chat_id, message_id, timeout=None): function send_game (line 1768) | async def send_game( function set_game_score (line 1797) | async def set_game_score(token, user_id, score, force=None, disable_edit... function get_game_high_scores (line 1827) | async def get_game_high_scores(token, user_id, chat_id=None, message_id=... function send_invoice (line 1851) | async def send_invoice( function answer_shipping_query (line 1955) | async def answer_shipping_query(token, shipping_query_id, ok, shipping_o... function answer_pre_checkout_query (line 1974) | async def answer_pre_checkout_query(token, pre_checkout_query_id, ok, er... function get_my_star_balance (line 1990) | async def get_my_star_balance(token): function get_star_transactions (line 1994) | async def get_star_transactions(token, offset=None, limit=None): function refund_star_payment (line 2003) | async def refund_star_payment(token, user_id, telegram_payment_charge_id): function edit_user_star_subscription (line 2009) | async def edit_user_star_subscription(token, user_id, telegram_payment_c... function unpin_all_general_forum_topic_messages (line 2015) | async def unpin_all_general_forum_topic_messages(token, chat_id): function answer_callback_query (line 2022) | async def answer_callback_query(token, callback_query_id, text=None, sho... function get_user_chat_boosts (line 2047) | async def get_user_chat_boosts(token, chat_id, user_id): function answer_inline_query (line 2052) | async def answer_inline_query(token, inline_query_id, results, cache_tim... function get_sticker_set (line 2069) | async def get_sticker_set(token, name): function get_custom_emoji_stickers (line 2073) | async def get_custom_emoji_stickers(token, custom_emoji_ids): function set_sticker_keywords (line 2077) | async def set_sticker_keywords(token, sticker, keywords=None): function set_sticker_mask_position (line 2085) | async def set_sticker_mask_position(token, sticker, mask_position=None): function upload_sticker_file (line 2092) | async def upload_sticker_file(token, user_id, sticker, sticker_format): function set_sticker_emoji_list (line 2098) | async def set_sticker_emoji_list(token, sticker, emoji_list): function delete_sticker_set (line 2103) | async def delete_sticker_set(token, name): function send_gift (line 2108) | async def send_gift(token, gift_id, text=None, text_parse_mode=None, tex... function verify_user (line 2126) | async def verify_user(token, user_id, custom_description=None): function verify_chat (line 2133) | async def verify_chat(token, chat_id, custom_description=None): function remove_user_verification (line 2140) | async def remove_user_verification(token, user_id): function remove_chat_verification (line 2145) | async def remove_chat_verification(token, chat_id): function read_business_message (line 2151) | async def read_business_message(token, business_connection_id, chat_id, ... function delete_business_messages (line 2157) | async def delete_business_messages(token, business_connection_id, messag... function set_business_account_name (line 2163) | async def set_business_account_name(token, business_connection_id, first... function set_business_account_username (line 2171) | async def set_business_account_username(token, business_connection_id, u... function set_business_account_bio (line 2179) | async def set_business_account_bio(token, business_connection_id, bio=No... function set_business_account_gift_settings (line 2186) | async def set_business_account_gift_settings(token, business_connection_... function get_business_account_star_balance (line 2191) | async def get_business_account_star_balance(token, business_connection_id): function transfer_business_account_stars (line 2196) | async def transfer_business_account_stars(token, business_connection_id,... function get_business_account_gifts (line 2201) | async def get_business_account_gifts(token, business_connection_id, excl... function get_user_gifts (line 2229) | async def get_user_gifts(token, user_id, exclude_unlimited=None, exclude... function get_chat_gifts (line 2254) | async def get_chat_gifts(token, chat_id, exclude_unsaved=None, exclude_s... function convert_gift_to_stars (line 2284) | async def convert_gift_to_stars(token, business_connection_id, owned_gif... function upgrade_gift (line 2289) | async def upgrade_gift(token, business_connection_id, owned_gift_id, kee... function transfer_gift (line 2298) | async def transfer_gift(token, business_connection_id, owned_gift_id, ne... function post_story (line 2305) | async def post_story(token, business_connection_id, content, active_peri... function repost_story (line 2327) | async def repost_story(token, business_connection_id, from_chat_id, from... function edit_story (line 2339) | async def edit_story(token, business_connection_id, story_id, content, c... function delete_story (line 2357) | async def delete_story(token, business_connection_id, story_id): function gift_premium_subscription (line 2362) | async def gift_premium_subscription(token, user_id, month_count, star_co... function set_business_account_profile_photo (line 2374) | async def set_business_account_profile_photo(token, business_connection_... function remove_business_account_profile_photo (line 2383) | async def remove_business_account_profile_photo(token, business_connecti... function get_available_gifts (line 2391) | async def get_available_gifts(token): function set_custom_emoji_sticker_set_thumbnail (line 2395) | async def set_custom_emoji_sticker_set_thumbnail(token, name, custom_emo... function set_sticker_set_title (line 2403) | async def set_sticker_set_title(token, name, title): function create_new_sticker_set (line 2408) | async def create_new_sticker_set( function add_sticker_to_set (line 2435) | async def add_sticker_to_set(token, user_id, name, sticker): function set_sticker_position_in_set (line 2444) | async def set_sticker_position_in_set(token, sticker, position): function delete_sticker_from_set (line 2450) | async def delete_sticker_from_set(token, sticker): function create_invoice_link (line 2457) | async def create_invoice_link(token, title, description, payload, provid... function send_poll (line 2504) | async def send_poll( function create_forum_topic (line 2568) | async def create_forum_topic(token, chat_id, name, icon_color=None, icon... function edit_forum_topic (line 2577) | async def edit_forum_topic(token, chat_id, message_thread_id, name=None,... function close_forum_topic (line 2586) | async def close_forum_topic(token, chat_id, message_thread_id): function reopen_forum_topic (line 2591) | async def reopen_forum_topic(token, chat_id, message_thread_id): function delete_forum_topic (line 2596) | async def delete_forum_topic(token, chat_id, message_thread_id): function unpin_all_forum_topic_messages (line 2601) | async def unpin_all_forum_topic_messages(token, chat_id, message_thread_... function get_forum_topic_icon_stickers (line 2606) | async def get_forum_topic_icon_stickers(token): function edit_general_forum_topic (line 2610) | async def edit_general_forum_topic(token, chat_id, name): function close_general_forum_topic (line 2615) | async def close_general_forum_topic(token, chat_id): function reopen_general_forum_topic (line 2620) | async def reopen_general_forum_topic(token, chat_id): function hide_general_forum_topic (line 2625) | async def hide_general_forum_topic(token, chat_id): function unhide_general_forum_topic (line 2630) | async def unhide_general_forum_topic(token, chat_id): function delete_messages (line 2635) | async def delete_messages(token, chat_id, message_ids): function forward_messages (line 2643) | async def forward_messages(token, chat_id, from_chat_id, message_ids, di... function copy_messages (line 2663) | async def copy_messages(token, chat_id, from_chat_id, message_ids, disab... function _convert_list_json_serializable (line 2686) | async def _convert_list_json_serializable(results): function convert_input_media (line 2696) | async def convert_input_media(media): function convert_input_media_array (line 2702) | async def convert_input_media_array(array): function _no_encode (line 2721) | async def _no_encode(func): function stop_poll (line 2730) | async def stop_poll(token, chat_id, message_id, reply_markup=None, busin... class ApiException (line 2740) | class ApiException(Exception): method __init__ (line 2748) | def __init__(self, msg, function_name, result): class ApiHTTPException (line 2753) | class ApiHTTPException(ApiException): method __init__ (line 2758) | def __init__(self, function_name, result: aiohttp.ClientResponse): class ApiInvalidJSONException (line 2765) | class ApiInvalidJSONException(ApiException): method __init__ (line 2770) | def __init__(self, function_name, result): class ApiTelegramException (line 2777) | class ApiTelegramException(ApiException): method __init__ (line 2781) | def __init__(self, function_name, result, result_json): class RequestTimeout (line 2791) | class RequestTimeout(Exception): FILE: telebot/asyncio_storage/base_storage.py class StateStorageBase (line 4) | class StateStorageBase: method __init__ (line 5) | def __init__(self) -> None: method set_data (line 8) | async def set_data(self, chat_id, user_id, key, value, method get_data (line 18) | async def get_data(self, chat_id, user_id): method set_state (line 24) | async def set_state(self, chat_id, user_id, state, method delete_state (line 39) | async def delete_state(self, chat_id, user_id, method reset_data (line 49) | async def reset_data(self, chat_id, user_id, method get_state (line 59) | async def get_state(self, chat_id, user_id, method get_interactive_data (line 66) | def get_interactive_data(self, chat_id, user_id, method save (line 77) | async def save(self, chat_id, user_id, data): method _get_key (line 80) | def _get_key( class StateDataContext (line 106) | class StateDataContext: method __init__ (line 111) | def __init__( method __aenter__ (line 128) | async def __aenter__(self): method __aexit__ (line 139) | async def __aexit__(self, exc_type, exc_val, exc_tb): FILE: telebot/asyncio_storage/memory_storage.py class StateMemoryStorage (line 5) | class StateMemoryStorage(StateStorageBase): method __init__ (line 23) | def __init__( method set_state (line 35) | async def set_state( method get_state (line 64) | async def get_state( method delete_state (line 88) | async def delete_state( method set_data (line 112) | async def set_data( method get_data (line 138) | async def get_data( method reset_data (line 159) | async def reset_data( method get_interactive_data (line 183) | def get_interactive_data( method save (line 200) | async def save( method __str__ (line 224) | def __str__(self) -> str: FILE: telebot/asyncio_storage/pickle_storage.py function with_lock (line 15) | def with_lock(func: Callable) -> Callable: class StatePickleStorage (line 23) | class StatePickleStorage(StateStorageBase): method __init__ (line 48) | def __init__( method _read_from_file (line 64) | async def _read_from_file(self) -> dict: method _write_to_file (line 69) | async def _write_to_file(self, data: dict) -> None: method create_dir (line 73) | def create_dir(self): method set_state (line 84) | async def set_state( method get_state (line 111) | async def get_state( method delete_state (line 132) | async def delete_state( method set_data (line 157) | async def set_data( method get_data (line 187) | async def get_data( method reset_data (line 208) | async def reset_data( method get_interactive_data (line 232) | def get_interactive_data( method save (line 250) | async def save( method __str__ (line 273) | def __str__(self) -> str: FILE: telebot/asyncio_storage/redis_storage.py function async_with_lock (line 15) | def async_with_lock(func: Callable[..., Coroutine]) -> Callable[..., Cor... function async_with_pipeline (line 23) | def async_with_pipeline(func: Callable[..., Coroutine]) -> Callable[...,... class StateRedisStorage (line 34) | class StateRedisStorage(StateStorageBase): method __init__ (line 69) | def __init__( method set_state (line 100) | async def set_state( method get_state (line 132) | async def get_state( method delete_state (line 152) | async def delete_state( method set_data (line 174) | async def set_data( method get_data (line 205) | async def get_data( method reset_data (line 227) | async def reset_data( method get_interactive_data (line 251) | def get_interactive_data( method save (line 270) | async def save( method migrate_format (line 295) | def migrate_format(self, bot_id: int, prefix: Optional[str] = "telebot... method __str__ (line 337) | def __str__(self) -> str: FILE: telebot/callback_data.py class CallbackDataFilter (line 35) | class CallbackDataFilter: method __init__ (line 40) | def __init__(self, factory, config: typing.Dict[str, str]): method check (line 44) | def check(self, query) -> bool: class CallbackData (line 69) | class CallbackData: method __init__ (line 75) | def __init__(self, *parts, prefix: str, sep=':'): method new (line 88) | def new(self, *args, **kwargs) -> str: method parse (line 126) | def parse(self, callback_data: str) -> typing.Dict[str, str]: method filter (line 144) | def filter(self, **config) -> CallbackDataFilter: FILE: telebot/custom_filters.py class SimpleCustomFilter (line 9) | class SimpleCustomFilter(ABC): method check (line 31) | def check(self, message): class AdvancedCustomFilter (line 38) | class AdvancedCustomFilter(ABC): method check (line 61) | def check(self, message, text): class TextFilter (line 68) | class TextFilter: method __init__ (line 94) | def __init__(self, method _check_iterable (line 131) | def _check_iterable(self, iterable, filter_name: str): method check (line 142) | def check(self, obj: Union[types.Message, types.CallbackQuery, types.I... class TextMatchFilter (line 198) | class TextMatchFilter(AdvancedCustomFilter): method check (line 211) | def check(self, message, text): class TextContainsFilter (line 223) | class TextContainsFilter(AdvancedCustomFilter): method check (line 239) | def check(self, message, text): class TextStartsFilter (line 253) | class TextStartsFilter(AdvancedCustomFilter): method check (line 267) | def check(self, message, text): class ChatFilter (line 274) | class ChatFilter(AdvancedCustomFilter): method check (line 287) | def check(self, message, text): class ForwardFilter (line 296) | class ForwardFilter(SimpleCustomFilter): method check (line 309) | def check(self, message): class IsReplyFilter (line 316) | class IsReplyFilter(SimpleCustomFilter): method check (line 329) | def check(self, message): class LanguageFilter (line 338) | class LanguageFilter(AdvancedCustomFilter): method check (line 351) | def check(self, message, text): class IsAdminFilter (line 361) | class IsAdminFilter(SimpleCustomFilter): method __init__ (line 374) | def __init__(self, bot): method check (line 377) | def check(self, message): class StateFilter (line 386) | class StateFilter(AdvancedCustomFilter): method __init__ (line 397) | def __init__(self, bot): method check (line 402) | def check(self, message, text): class IsDigitFilter (line 439) | class IsDigitFilter(SimpleCustomFilter): method check (line 451) | def check(self, message): FILE: telebot/ext/aio/webhooks.py class AsyncWebhookListener (line 26) | class AsyncWebhookListener: method __init__ (line 27) | def __init__(self, bot, method _check_dependencies (line 75) | def _check_dependencies(self): method _prepare_endpoint_urls (line 85) | def _prepare_endpoint_urls(self): method process_update (line 89) | async def process_update(self, request: Request, update: dict): method run_app (line 107) | async def run_app(self): FILE: telebot/ext/reloader.py class EventHandler (line 11) | class EventHandler(FileSystemEventHandler): method on_any_event (line 12) | def on_any_event(self, event: FileSystemEvent): function restart_file (line 16) | def restart_file(): FILE: telebot/ext/sync/webhooks.py class SyncWebhookListener (line 22) | class SyncWebhookListener: method __init__ (line 23) | def __init__(self, bot, method _check_dependencies (line 72) | def _check_dependencies(): method _prepare_endpoint_urls (line 82) | def _prepare_endpoint_urls(self): method process_update (line 86) | def process_update(self, request: Request, update: dict): method run_app (line 103) | def run_app(self): FILE: telebot/formatting.py function format_text (line 10) | def format_text(*args, separator="\n"): function escape_html (line 33) | def escape_html(content: str) -> str: function escape_markdown (line 47) | def escape_markdown(content: str) -> str: function mbold (line 65) | def mbold(content: str, escape: Optional[bool]=True) -> str: function hbold (line 81) | def hbold(content: str, escape: Optional[bool]=True) -> str: function mitalic (line 97) | def mitalic(content: str, escape: Optional[bool]=True) -> str: function hitalic (line 113) | def hitalic(content: str, escape: Optional[bool]=True) -> str: function munderline (line 129) | def munderline(content: str, escape: Optional[bool]=True) -> str: function hunderline (line 145) | def hunderline(content: str, escape: Optional[bool]=True) -> str: function mstrikethrough (line 162) | def mstrikethrough(content: str, escape: Optional[bool]=True) -> str: function hstrikethrough (line 178) | def hstrikethrough(content: str, escape: Optional[bool]=True) -> str: function mspoiler (line 194) | def mspoiler(content: str, escape: Optional[bool]=True) -> str: function hspoiler (line 210) | def hspoiler(content: str, escape: Optional[bool]=True) -> str: function mlink (line 226) | def mlink(content: str, url: str, escape: Optional[bool]=True) -> str: function hlink (line 245) | def hlink(content: str, url: str, escape: Optional[bool]=True) -> str: function mcode (line 264) | def mcode(content: str, language: str="", escape: Optional[bool]=True) -... function hcode (line 283) | def hcode(content: str, escape: Optional[bool]=True) -> str: function hpre (line 299) | def hpre(content: str, escape: Optional[bool]=True, language: str="") ->... function hide_link (line 318) | def hide_link(url: str) -> str: function mcite (line 331) | def mcite(content: str, escape: Optional[bool] = True, expandable: Optio... function hcite (line 354) | def hcite(content: str, escape: Optional[bool] = True, expandable: Optio... function apply_html_entities (line 376) | def apply_html_entities(text: str, entities: Optional[List]=None, custom... FILE: telebot/handler_backends.py class HandlerBackend (line 15) | class HandlerBackend(object): method __init__ (line 21) | def __init__(self, handlers=None): method register_handler (line 26) | def register_handler(self, handler_group_id, handler): method clear_handlers (line 29) | def clear_handlers(self, handler_group_id): method get_handlers (line 32) | def get_handlers(self, handler_group_id): class MemoryHandlerBackend (line 36) | class MemoryHandlerBackend(HandlerBackend): method register_handler (line 40) | def register_handler(self, handler_group_id, handler): method clear_handlers (line 46) | def clear_handlers(self, handler_group_id): method get_handlers (line 49) | def get_handlers(self, handler_group_id): method load_handlers (line 52) | def load_handlers(self, filename, del_file_after_loading): class FileHandlerBackend (line 56) | class FileHandlerBackend(HandlerBackend): method __init__ (line 60) | def __init__(self, handlers=None, filename='./.handler-saves/handlers.... method register_handler (line 66) | def register_handler(self, handler_group_id, handler): method clear_handlers (line 73) | def clear_handlers(self, handler_group_id): method get_handlers (line 77) | def get_handlers(self, handler_group_id): method start_save_timer (line 82) | def start_save_timer(self): method save_handlers (line 90) | def save_handlers(self): method load_handlers (line 93) | def load_handlers(self, filename=None, del_file_after_loading=True): method dump_handlers (line 101) | def dump_handlers(handlers, filename, file_mode="wb"): method return_load_handlers (line 117) | def return_load_handlers(filename, del_file_after_loading=True): class RedisHandlerBackend (line 131) | class RedisHandlerBackend(HandlerBackend): method __init__ (line 135) | def __init__(self, handlers=None, host='localhost', port=6379, db=0, p... method _key (line 142) | def _key(self, handle_group_id): method register_handler (line 145) | def register_handler(self, handler_group_id, handler): method clear_handlers (line 153) | def clear_handlers(self, handler_group_id): method get_handlers (line 156) | def get_handlers(self, handler_group_id): class BaseMiddleware (line 165) | class BaseMiddleware: method __init__ (line 204) | def __init__(self): method pre_process (line 207) | def pre_process(self, message, data): method post_process (line 210) | def post_process(self, message, data, exception): class SkipHandler (line 214) | class SkipHandler: method __init__ (line 222) | def __init__(self) -> None: class CancelUpdate (line 226) | class CancelUpdate: method __init__ (line 234) | def __init__(self) -> None: class ContinueHandling (line 238) | class ContinueHandling: method __init__ (line 257) | def __init__(self) -> None: FILE: telebot/service_utils.py function is_string (line 13) | def is_string(var) -> bool: function is_dict (line 20) | def is_dict(var) -> bool: function is_bytes (line 33) | def is_bytes(var) -> bool: function is_pil_image (line 46) | def is_pil_image(var) -> bool: function pil_image_to_file (line 59) | def pil_image_to_file(image, extension='JPEG', quality='web_low'): function chunks (line 70) | def chunks(lst, n): function generate_random_token (line 77) | def generate_random_token() -> str: FILE: telebot/states/__init__.py class State (line 8) | class State: method __init__ (line 18) | def __init__(self) -> None: method __str__ (line 22) | def __str__(self) -> str: class StatesGroup (line 26) | class StatesGroup: method __init_subclass__ (line 36) | def __init_subclass__(cls) -> None: method state_list (line 51) | def state_list(self): function resolve_context (line 55) | def resolve_context(message, bot_id: int) -> tuple: FILE: telebot/states/asyncio/context.py class StateContext (line 9) | class StateContext: method __init__ (line 24) | def __init__(self, message: Union[Message, CallbackQuery], bot: AsyncT... method set (line 29) | async def set(self, state: Union[State, str]) -> bool: method get (line 58) | async def get(self) -> str: method delete (line 77) | async def delete(self) -> bool: method reset_data (line 96) | async def reset_data(self) -> bool: method data (line 113) | def data(self) -> dict: method add_data (line 135) | async def add_data(self, **kwargs) -> None: FILE: telebot/states/asyncio/middleware.py class StateMiddleware (line 8) | class StateMiddleware(BaseMiddleware): method __init__ (line 10) | def __init__(self, bot: AsyncTeleBot) -> None: method pre_process (line 15) | async def pre_process(self, message, data): method post_process (line 20) | async def post_process(self, message, data, exception): FILE: telebot/states/sync/context.py class StateContext (line 10) | class StateContext(): method __init__ (line 25) | def __init__(self, message: Union[Message, CallbackQuery], bot: str) -... method set (line 30) | def set(self, state: Union[State, str]) -> bool: method get (line 57) | def get(self) -> str: method delete (line 74) | def delete(self) -> bool: method reset_data (line 91) | def reset_data(self) -> bool: method data (line 106) | def data(self) -> dict: method add_data (line 126) | def add_data(self, **kwargs) -> None: FILE: telebot/states/sync/middleware.py class StateMiddleware (line 8) | class StateMiddleware(BaseMiddleware): method __init__ (line 10) | def __init__(self, bot: TeleBot) -> None: method pre_process (line 15) | def pre_process(self, message, data): method post_process (line 20) | def post_process(self, message, data, exception): FILE: telebot/storage/base_storage.py class StateStorageBase (line 4) | class StateStorageBase: method __init__ (line 5) | def __init__(self) -> None: method set_data (line 8) | def set_data(self, chat_id, user_id, key, value, method get_data (line 18) | def get_data(self, chat_id, user_id): method set_state (line 24) | def set_state(self, chat_id, user_id, state, method delete_state (line 39) | def delete_state(self, chat_id, user_id, method reset_data (line 49) | def reset_data(self, chat_id, user_id, method get_state (line 59) | def get_state(self, chat_id, user_id, method get_interactive_data (line 66) | def get_interactive_data(self, chat_id, user_id, method save (line 73) | def save(self, chat_id, user_id, data): method _get_key (line 76) | def _get_key( class StateDataContext (line 102) | class StateDataContext: method __init__ (line 107) | def __init__( method __enter__ (line 131) | def __enter__(self): method __exit__ (line 134) | def __exit__(self, exc_type, exc_val, exc_tb): FILE: telebot/storage/memory_storage.py class StateMemoryStorage (line 5) | class StateMemoryStorage(StateStorageBase): method __init__ (line 23) | def __init__( method set_state (line 35) | def set_state( method get_state (line 64) | def get_state( method delete_state (line 88) | def delete_state( method set_data (line 112) | def set_data( method get_data (line 138) | def get_data( method reset_data (line 159) | def reset_data( method get_interactive_data (line 183) | def get_interactive_data( method save (line 200) | def save( method __str__ (line 224) | def __str__(self) -> str: FILE: telebot/storage/pickle_storage.py function with_lock (line 8) | def with_lock(func: Callable) -> Callable: class StatePickleStorage (line 16) | class StatePickleStorage(StateStorageBase): method __init__ (line 41) | def __init__( method _read_from_file (line 54) | def _read_from_file(self) -> dict: method _write_to_file (line 58) | def _write_to_file(self, data: dict) -> None: method create_dir (line 62) | def create_dir(self): method set_state (line 73) | def set_state( method get_state (line 100) | def get_state( method delete_state (line 121) | def delete_state( method set_data (line 146) | def set_data( method get_data (line 176) | def get_data( method reset_data (line 197) | def reset_data( method get_interactive_data (line 221) | def get_interactive_data( method save (line 239) | def save( method __str__ (line 262) | def __str__(self) -> str: FILE: telebot/storage/redis_storage.py class StateRedisStorage (line 12) | class StateRedisStorage(StateStorageBase): method __init__ (line 47) | def __init__( method set_state (line 76) | def set_state( method get_state (line 114) | def get_state( method delete_state (line 134) | def delete_state( method set_data (line 153) | def set_data( method get_data (line 187) | def get_data( method reset_data (line 207) | def reset_data( method get_interactive_data (line 235) | def get_interactive_data( method save (line 252) | def save( method migrate_format (line 281) | def migrate_format(self, bot_id: int, prefix: Optional[str] = "telebot... method __str__ (line 323) | def __str__(self) -> str: FILE: telebot/types.py function log_deprecation_warning (line 28) | def log_deprecation_warning(warning_message, logging_level=logging.WARNI... class JsonSerializable (line 37) | class JsonSerializable(object): method to_json (line 43) | def to_json(self): class Dictionaryable (line 55) | class Dictionaryable(object): method to_dict (line 61) | def to_dict(self): class JsonDeserializable (line 73) | class JsonDeserializable(object): method de_json (line 80) | def de_json(cls, json_string): method check_json (line 92) | def check_json(json_type, dict_copy = True): method __str__ (line 110) | def __str__(self): class Update (line 118) | class Update(JsonDeserializable): method de_json (line 214) | def de_json(cls, json_string): method __init__ (line 248) | def __init__(self, update_id, message, edited_message, channel_post, e... class ChatMemberUpdated (line 279) | class ChatMemberUpdated(JsonDeserializable): method de_json (line 314) | def de_json(cls, json_string): method __init__ (line 324) | def __init__(self, chat, from_user, date, old_chat_member, new_chat_me... method difference (line 337) | def difference(self) -> Dict[str, List]: class ChatJoinRequest (line 357) | class ChatJoinRequest(JsonDeserializable): method de_json (line 389) | def de_json(cls, json_string): method __init__ (line 397) | def __init__(self, chat, from_user, user_chat_id, date, bio=None, invi... class WebhookInfo (line 406) | class WebhookInfo(JsonDeserializable): method de_json (line 448) | def de_json(cls, json_string): method __init__ (line 453) | def __init__(self, url, has_custom_certificate, pending_update_count, ... class User (line 467) | class User(JsonDeserializable, Dictionaryable, JsonSerializable): method de_json (line 525) | def de_json(cls, json_string): method __init__ (line 531) | def __init__(self, id, is_bot, first_name, last_name=None, username=No... method full_name (line 552) | def full_name(self) -> str: method to_json (line 561) | def to_json(self): method to_dict (line 564) | def to_dict(self): class GroupChat (line 584) | class GroupChat(JsonDeserializable): method de_json (line 589) | def de_json(cls, json_string): method __init__ (line 594) | def __init__(self, id, title, **kwargs): class ChatFullInfo (line 600) | class ChatFullInfo(JsonDeserializable): method de_json (line 774) | def de_json(cls, json_string): method __init__ (line 809) | def __init__(self, id, type, title=None, username=None, first_name=None, method can_send_gift (line 879) | def can_send_gift(self) -> bool: class Chat (line 891) | class Chat(ChatFullInfo): class MessageID (line 903) | class MessageID(JsonDeserializable): method de_json (line 916) | def de_json(cls, json_string): method __init__ (line 921) | def __init__(self, message_id, **kwargs): class WebAppData (line 925) | class WebAppData(JsonDeserializable, Dictionaryable): method de_json (line 943) | def de_json(cls, json_string): method __init__ (line 948) | def __init__(self, data, button_text, **kwargs): method to_dict (line 951) | def to_dict(self): class Message (line 956) | class Message(JsonDeserializable): method de_json (line 1318) | def de_json(cls, json_string): method parse_chat (line 1614) | def parse_chat(cls, chat) -> Union[User, GroupChat]: method parse_photo (line 1624) | def parse_photo(cls, photo_size_array) -> List[PhotoSize]: method parse_entities (line 1634) | def parse_entities(cls, message_entity_array) -> List[MessageEntity]: method __init__ (line 1643) | def __init__(self, message_id, from_user, date, chat, content_type, op... method html_text (line 1755) | def html_text(self) -> Optional[str]: method html_caption (line 1764) | def html_caption(self) -> Optional[str]: method voice_chat_scheduled (line 1773) | def voice_chat_scheduled(self): method voice_chat_started (line 1778) | def voice_chat_started(self): method voice_chat_ended (line 1783) | def voice_chat_ended(self): method voice_chat_participants_invited (line 1788) | def voice_chat_participants_invited(self): method new_chat_member (line 1793) | def new_chat_member(self): method forward_from (line 1798) | def forward_from(self): method forward_from_chat (line 1805) | def forward_from_chat(self): method forward_from_message_id (line 1814) | def forward_from_message_id(self): method forward_signature (line 1821) | def forward_signature(self): method forward_sender_name (line 1830) | def forward_sender_name(self): method forward_date (line 1837) | def forward_date(self): method user_shared (line 1844) | def user_shared(self): method any_text (line 1849) | def any_text(self) -> Optional[str]: method any_entities (line 1853) | def any_entities(self) -> Optional[List[MessageEntity]]: class MessageEntity (line 1858) | class MessageEntity(Dictionaryable, JsonSerializable, JsonDeserializable): method to_list_of_dicts (line 1900) | def to_list_of_dicts(entity_list) -> Union[List[Dict], None]: method de_json (line 1912) | def de_json(cls, json_string): method __init__ (line 1919) | def __init__(self, type, offset, length, url=None, user=None, language... method to_json (line 1931) | def to_json(self): method to_dict (line 1934) | def to_dict(self): class Dice (line 1946) | class Dice(JsonSerializable, Dictionaryable, JsonDeserializable): method de_json (line 1962) | def de_json(cls, json_string): method __init__ (line 1967) | def __init__(self, value, emoji, **kwargs): method to_json (line 1971) | def to_json(self): method to_dict (line 1974) | def to_dict(self): class PhotoSize (line 1979) | class PhotoSize(JsonDeserializable): method de_json (line 2005) | def de_json(cls, json_string): method __init__ (line 2010) | def __init__(self, file_id, file_unique_id, width, height, file_size=N... class Audio (line 2018) | class Audio(JsonDeserializable): method de_json (line 2058) | def de_json(cls, json_string): method __init__ (line 2067) | def __init__(self, file_id, file_unique_id, duration, performer=None, ... method thumb (line 2080) | def thumb(self) -> Optional[PhotoSize]: class Voice (line 2085) | class Voice(JsonDeserializable): method de_json (line 2113) | def de_json(cls, json_string): method __init__ (line 2118) | def __init__(self, file_id, file_unique_id, duration, mime_type=None, ... class Document (line 2126) | class Document(JsonDeserializable): method de_json (line 2157) | def de_json(cls, json_string): method __init__ (line 2166) | def __init__(self, file_id, file_unique_id, thumbnail=None, file_name=... method thumb (line 2175) | def thumb(self) -> Optional[PhotoSize]: class Video (line 2180) | class Video(JsonDeserializable): method de_json (line 2229) | def de_json(cls, json_string): method __init__ (line 2240) | def __init__(self, file_id, file_unique_id, width, height, duration, t... method thumb (line 2256) | def thumb(self) -> Optional[PhotoSize]: class VideoNote (line 2261) | class VideoNote(JsonDeserializable): method de_json (line 2290) | def de_json(cls, json_string): method __init__ (line 2297) | def __init__(self, file_id, file_unique_id, length, duration, thumbnai... method thumb (line 2306) | def thumb(self) -> Optional[PhotoSize]: class Contact (line 2311) | class Contact(JsonDeserializable): method de_json (line 2338) | def de_json(cls, json_string): method __init__ (line 2343) | def __init__(self, phone_number, first_name, last_name=None, user_id=N... class Location (line 2351) | class Location(JsonDeserializable, JsonSerializable, Dictionaryable): method de_json (line 2381) | def de_json(cls, json_string): method __init__ (line 2386) | def __init__(self, longitude, latitude, horizontal_accuracy=None, method to_json (line 2395) | def to_json(self): method to_dict (line 2398) | def to_dict(self): class Venue (line 2409) | class Venue(JsonDeserializable): method de_json (line 2441) | def de_json(cls, json_string): method __init__ (line 2447) | def __init__(self, location, title, address, foursquare_id=None, fours... class UserProfilePhotos (line 2458) | class UserProfilePhotos(JsonDeserializable): method de_json (line 2474) | def de_json(cls, json_string): method __init__ (line 2482) | def __init__(self, total_count, photos=None, **kwargs): class File (line 2487) | class File(JsonDeserializable): method de_json (line 2513) | def de_json(cls, json_string): method __init__ (line 2518) | def __init__(self, file_id, file_unique_id, file_size=None, file_path=... class ForceReply (line 2526) | class ForceReply(JsonSerializable): method __init__ (line 2548) | def __init__(self, selective: Optional[bool]=None, input_field_placeho... method to_json (line 2552) | def to_json(self): class ReplyKeyboardRemove (line 2562) | class ReplyKeyboardRemove(JsonSerializable): method __init__ (line 2584) | def __init__(self, selective: Optional[bool]=None): method to_json (line 2587) | def to_json(self): class WebAppInfo (line 2594) | class WebAppInfo(JsonDeserializable, Dictionaryable): method de_json (line 2607) | def de_json(cls, json_string): method __init__ (line 2612) | def __init__(self, url, **kwargs): method to_dict (line 2615) | def to_dict(self): class ReplyKeyboardMarkup (line 2620) | class ReplyKeyboardMarkup(JsonSerializable): method __init__ (line 2676) | def __init__(self, resize_keyboard: Optional[bool]=None, one_time_keyb... method add (line 2693) | def add(self, *args, row_width=None) -> 'ReplyKeyboardMarkup': method row (line 2732) | def row(self, *args) -> 'ReplyKeyboardMarkup': method to_json (line 2747) | def to_json(self): class KeyboardButtonPollType (line 2763) | class KeyboardButtonPollType(Dictionaryable): method __init__ (line 2775) | def __init__(self, type=None): method to_dict (line 2778) | def to_dict(self): class KeyboardButtonRequestUsers (line 2782) | class KeyboardButtonRequestUsers(Dictionaryable): method __init__ (line 2816) | def __init__( method to_dict (line 2828) | def to_dict(self) -> dict: class KeyboardButtonRequestUser (line 2845) | class KeyboardButtonRequestUser(KeyboardButtonRequestUsers): method __init__ (line 2847) | def __init__( class KeyboardButtonRequestChat (line 2854) | class KeyboardButtonRequestChat(Dictionaryable): method __init__ (line 2903) | def __init__(self, request_id: int, chat_is_channel: bool, chat_is_for... method to_dict (line 2921) | def to_dict(self) -> dict: class KeyboardButton (line 2945) | class KeyboardButton(Dictionaryable, JsonSerializable): method __init__ (line 2993) | def __init__(self, text: str, request_contact: Optional[bool]=None, method to_json (line 3014) | def to_json(self): method to_dict (line 3017) | def to_dict(self): class InlineKeyboardMarkup (line 3038) | class InlineKeyboardMarkup(Dictionaryable, JsonSerializable, JsonDeseria... method de_json (line 3073) | def de_json(cls, json_string): method __init__ (line 3079) | def __init__(self, keyboard=None, row_width=3): method add (line 3088) | def add(self, *args, row_width=None) -> 'InlineKeyboardMarkup': method row (line 3122) | def row(self, *args) -> 'InlineKeyboardMarkup': method to_json (line 3140) | def to_json(self): method to_dict (line 3143) | def to_dict(self): class InlineKeyboardButton (line 3149) | class InlineKeyboardButton(Dictionaryable, JsonSerializable, JsonDeseria... method de_json (line 3215) | def de_json(cls, json_string): method __init__ (line 3229) | def __init__(self, text: str, url: Optional[str]=None, callback_data: ... method to_json (line 3247) | def to_json(self): method to_dict (line 3250) | def to_dict(self): class LoginUrl (line 3279) | class LoginUrl(Dictionaryable, JsonSerializable, JsonDeserializable): method de_json (line 3308) | def de_json(cls, json_string): method __init__ (line 3313) | def __init__(self, url: str, forward_text: Optional[str]=None, bot_use... method to_json (line 3320) | def to_json(self): method to_dict (line 3323) | def to_dict(self): class CallbackQuery (line 3335) | class CallbackQuery(JsonDeserializable): method de_json (line 3369) | def de_json(cls, json_string): method __init__ (line 3386) | def __init__( class ChatPhoto (line 3399) | class ChatPhoto(JsonDeserializable): method de_json (line 3425) | def de_json(cls, json_string): method __init__ (line 3430) | def __init__(self, small_file_id, small_file_unique_id, big_file_id, b... class ChatMember (line 3437) | class ChatMember(JsonDeserializable, ABC): method __init__ (line 3452) | def __init__(self, user, status, **kwargs): method de_json (line 3457) | def de_json(cls, json_string): class ChatMemberOwner (line 3480) | class ChatMemberOwner(ChatMember): method __init__ (line 3501) | def __init__(self, user, status, is_anonymous, custom_title=None, **kw... class ChatMemberAdministrator (line 3508) | class ChatMemberAdministrator(ChatMember): method __init__ (line 3584) | def __init__(self, user, status, can_be_edited, is_anonymous, can_mana... method can_manage_voice_chats (line 3611) | def can_manage_voice_chats(self): class ChatMemberMember (line 3617) | class ChatMemberMember(ChatMember): method __init__ (line 3638) | def __init__(self, user, status, until_date=None, tag=None, **kwargs): class ChatMemberRestricted (line 3645) | class ChatMemberRestricted(ChatMember): method __init__ (line 3714) | def __init__(self, user, status, is_member, can_send_messages, can_sen... class ChatMemberLeft (line 3741) | class ChatMemberLeft(ChatMember): class ChatMemberBanned (line 3760) | class ChatMemberBanned(ChatMember): method __init__ (line 3778) | def __init__(self, user, status, until_date=None, **kwargs): class ChatPermissions (line 3783) | class ChatPermissions(JsonDeserializable, JsonSerializable, Dictionaryab... method de_json (line 3845) | def de_json(cls, json_string): method __init__ (line 3850) | def __init__(self, can_send_messages=None, can_send_media_messages=Non... method to_json (line 3885) | def to_json(self): method to_dict (line 3888) | def to_dict(self): class BotCommand (line 3925) | class BotCommand(JsonSerializable, JsonDeserializable, Dictionaryable): method de_json (line 3942) | def de_json(cls, json_string): method __init__ (line 3947) | def __init__(self, command, description, **kwargs): method to_json (line 3951) | def to_json(self): method to_dict (line 3954) | def to_dict(self): class BotCommandScope (line 3961) | class BotCommandScope(ABC, JsonSerializable): method __init__ (line 4003) | def __init__(self, type='default', chat_id=None, user_id=None): method to_json (line 4008) | def to_json(self): class BotCommandScopeDefault (line 4018) | class BotCommandScopeDefault(BotCommandScope): method __init__ (line 4030) | def __init__(self): class BotCommandScopeAllPrivateChats (line 4039) | class BotCommandScopeAllPrivateChats(BotCommandScope): method __init__ (line 4051) | def __init__(self): class BotCommandScopeAllGroupChats (line 4059) | class BotCommandScopeAllGroupChats(BotCommandScope): method __init__ (line 4071) | def __init__(self): class BotCommandScopeAllChatAdministrators (line 4079) | class BotCommandScopeAllChatAdministrators(BotCommandScope): method __init__ (line 4091) | def __init__(self): class BotCommandScopeChat (line 4099) | class BotCommandScopeChat(BotCommandScope): method __init__ (line 4115) | def __init__(self, chat_id: Optional[Union[str, int]]=None): class BotCommandScopeChatAdministrators (line 4120) | class BotCommandScopeChatAdministrators(BotCommandScope): method __init__ (line 4136) | def __init__(self, chat_id: Optional[Union[str, int]]=None): class BotCommandScopeChatMember (line 4141) | class BotCommandScopeChatMember(BotCommandScope): method __init__ (line 4160) | def __init__(self, chat_id: Optional[Union[str, int]]=None, user_id: O... class InlineQuery (line 4167) | class InlineQuery(JsonDeserializable): method de_json (line 4198) | def de_json(cls, json_string): method __init__ (line 4206) | def __init__(self, id, from_user, query, offset, chat_type=None, locat... class InputTextMessageContent (line 4215) | class InputTextMessageContent(Dictionaryable): method __init__ (line 4241) | def __init__(self, message_text: str, parse_mode: Optional[str] = None... method to_dict (line 4255) | def to_dict(self): class InputLocationMessageContent (line 4266) | class InputLocationMessageContent(Dictionaryable): method __init__ (line 4293) | def __init__(self, latitude, longitude, horizontal_accuracy=None, live... method to_dict (line 4301) | def to_dict(self): class InputVenueMessageContent (line 4314) | class InputVenueMessageContent(Dictionaryable): method __init__ (line 4348) | def __init__(self, latitude, longitude, title, address, foursquare_id=... method to_dict (line 4359) | def to_dict(self): class InputContactMessageContent (line 4377) | class InputContactMessageContent(Dictionaryable): method __init__ (line 4398) | def __init__(self, phone_number, first_name, last_name=None, vcard=None): method to_dict (line 4404) | def to_dict(self): class InputInvoiceMessageContent (line 4413) | class InputInvoiceMessageContent(Dictionaryable): method __init__ (line 4494) | def __init__(self, title: str, description: str, payload: str, provide... method to_dict (line 4520) | def to_dict(self): class ChosenInlineResult (line 4561) | class ChosenInlineResult(JsonDeserializable): method de_json (line 4587) | def de_json(cls, json_string): method __init__ (line 4595) | def __init__(self, result_id, from_user, query, location=None, inline_... class InlineQueryResultBase (line 4604) | class InlineQueryResultBase(ABC, Dictionaryable, JsonSerializable): method __init__ (line 4632) | def __init__(self, type: str, id: str, title: Optional[str] = None, ca... method to_json (line 4643) | def to_json(self): method to_dict (line 4646) | def to_dict(self): class SentWebAppMessage (line 4666) | class SentWebAppMessage(JsonDeserializable, Dictionaryable): method de_json (line 4680) | def de_json(cls, json_string): method __init__ (line 4685) | def __init__(self, inline_message_id=None, **kwargs): method to_dict (line 4688) | def to_dict(self): class InlineQueryResultArticle (line 4696) | class InlineQueryResultArticle(InlineQueryResultBase): method __init__ (line 4739) | def __init__(self, id: str, title: str, input_message_content: InputMe... method thumb_url (line 4757) | def thumb_url(self) -> str: method thumb_width (line 4762) | def thumb_width(self) -> int: method thumb_height (line 4767) | def thumb_height(self) -> int: method to_dict (line 4771) | def to_dict(self): class InlineQueryResultPhoto (line 4789) | class InlineQueryResultPhoto(InlineQueryResultBase): method __init__ (line 4842) | def __init__(self, id: str, photo_url: str, thumbnail_url: str, photo_... method thumb_url (line 4858) | def thumb_url(self) -> str: method to_dict (line 4862) | def to_dict(self): class InlineQueryResultGif (line 4878) | class InlineQueryResultGif(InlineQueryResultBase): method __init__ (line 4934) | def __init__(self, id: str, gif_url: str, thumbnail_url: str, gif_widt... method thumb_url (line 4952) | def thumb_url(self) -> str: method thumb_mime_type (line 4957) | def thumb_mime_type(self) -> str: method to_dict (line 4961) | def to_dict(self): class InlineQueryResultMpeg4Gif (line 4979) | class InlineQueryResultMpeg4Gif(InlineQueryResultBase): method __init__ (line 5035) | def __init__(self, id: str, mpeg4_url: str, thumbnail_url: str, mpeg4_... method thumb_url (line 5052) | def thumb_url(self) -> str: method thumb_mime_type (line 5057) | def thumb_mime_type(self) -> str: method to_dict (line 5061) | def to_dict(self): class InlineQueryResultVideo (line 5079) | class InlineQueryResultVideo(InlineQueryResultBase): method __init__ (line 5139) | def __init__(self, id: str, video_url: str, mime_type: str, thumbnail_... method thumb_url (line 5158) | def thumb_url(self) -> str: method to_dict (line 5162) | def to_dict(self): class InlineQueryResultAudio (line 5179) | class InlineQueryResultAudio(InlineQueryResultBase): method __init__ (line 5223) | def __init__(self, id: str, audio_url: str, title: str, caption: Optio... method to_dict (line 5234) | def to_dict(self): class InlineQueryResultVoice (line 5245) | class InlineQueryResultVoice(InlineQueryResultBase): method __init__ (line 5286) | def __init__(self, id: str, voice_url: str, title: str, caption: Optio... method to_dict (line 5296) | def to_dict(self): class InlineQueryResultDocument (line 5305) | class InlineQueryResultDocument(InlineQueryResultBase): method __init__ (line 5358) | def __init__(self, id: str, title: str, document_url: str, mime_type: ... method thumb_url (line 5375) | def thumb_url(self) -> str: method thumb_width (line 5380) | def thumb_width(self) -> int: method thumb_height (line 5385) | def thumb_height(self) -> int: method to_dict (line 5389) | def to_dict(self): class InlineQueryResultLocation (line 5405) | class InlineQueryResultLocation(InlineQueryResultBase): method __init__ (line 5456) | def __init__(self, id: str, title: str, latitude: float, longitude: fl... method thumb_url (line 5474) | def thumb_url(self) -> str: method thumb_width (line 5479) | def thumb_width(self) -> int: method thumb_height (line 5484) | def thumb_height(self) -> int: method to_dict (line 5488) | def to_dict(self): class InlineQueryResultVenue (line 5510) | class InlineQueryResultVenue(InlineQueryResultBase): method __init__ (line 5565) | def __init__(self, id: str, title: str, latitude: float, longitude: fl... method thumb_url (line 5584) | def thumb_url(self) -> str: method thumb_width (line 5589) | def thumb_width(self) -> int: method thumb_height (line 5594) | def thumb_height(self) -> int: method to_dict (line 5598) | def to_dict(self): class InlineQueryResultContact (line 5621) | class InlineQueryResultContact(InlineQueryResultBase): method __init__ (line 5664) | def __init__(self, id: str, phone_number: str, first_name: str, last_n... method thumb_url (line 5679) | def thumb_url(self) -> str: method thumb_width (line 5684) | def thumb_width(self) -> int: method thumb_height (line 5689) | def thumb_height(self) -> int: method to_dict (line 5693) | def to_dict(self): class InlineQueryResultGame (line 5711) | class InlineQueryResultGame(InlineQueryResultBase): method __init__ (line 5732) | def __init__(self, id: str, game_short_name: str, reply_markup: Option... method to_dict (line 5736) | def to_dict(self): class InlineQueryResultCachedBase (line 5742) | class InlineQueryResultCachedBase(ABC, JsonSerializable): method __init__ (line 5746) | def __init__(self): method to_json (line 5760) | def to_json(self): class InlineQueryResultCachedPhoto (line 5784) | class InlineQueryResultCachedPhoto(InlineQueryResultCachedBase): method __init__ (line 5828) | def __init__(self, id: str, photo_file_id: str, title: Optional[str] =... class InlineQueryResultCachedGif (line 5850) | class InlineQueryResultCachedGif(InlineQueryResultCachedBase): method __init__ (line 5890) | def __init__(self, id: str, gif_file_id: str, title: Optional[str] = N... class InlineQueryResultCachedMpeg4Gif (line 5911) | class InlineQueryResultCachedMpeg4Gif(InlineQueryResultCachedBase): method __init__ (line 5951) | def __init__(self, id: str, mpeg4_file_id: str, title: Optional[str] =... class InlineQueryResultCachedSticker (line 5971) | class InlineQueryResultCachedSticker(InlineQueryResultCachedBase): method __init__ (line 5995) | def __init__(self, id: str, sticker_file_id: str, reply_markup: Option... class InlineQueryResultCachedDocument (line 6008) | class InlineQueryResultCachedDocument(InlineQueryResultCachedBase): method __init__ (line 6050) | def __init__(self, id: str, document_file_id: str, title: str, descrip... class InlineQueryResultCachedVideo (line 6070) | class InlineQueryResultCachedVideo(InlineQueryResultCachedBase): method __init__ (line 6115) | def __init__(self, id: str, video_file_id: str, title: str, descriptio... class InlineQueryResultCachedVoice (line 6136) | class InlineQueryResultCachedVoice(InlineQueryResultCachedBase): method __init__ (line 6175) | def __init__(self, id: str, voice_file_id: str, title: str, caption: O... class InlineQueryResultCachedAudio (line 6193) | class InlineQueryResultCachedAudio(InlineQueryResultCachedBase): method __init__ (line 6229) | def __init__(self, id: str, audio_file_id: str, caption: Optional[str]... class Game (line 6246) | class Game(JsonDeserializable): method de_json (line 6276) | def de_json(cls, json_string): method parse_photo (line 6287) | def parse_photo(cls, photo_size_array) -> List[PhotoSize]: method parse_entities (line 6297) | def parse_entities(cls, message_entity_array) -> List[MessageEntity]: method __init__ (line 6306) | def __init__(self, title, description, photo, text=None, text_entities... class Animation (line 6315) | class Animation(JsonDeserializable): method de_json (line 6355) | def de_json(cls, json_string): method __init__ (line 6364) | def __init__(self, file_id, file_unique_id, width=None, height=None, d... method thumb (line 6377) | def thumb(self) -> Optional[PhotoSize]: class GameHighScore (line 6382) | class GameHighScore(JsonDeserializable): method de_json (line 6401) | def de_json(cls, json_string): method __init__ (line 6407) | def __init__(self, position: int, user: User, score: int, **kwargs): class LabeledPrice (line 6415) | class LabeledPrice(JsonSerializable, Dictionaryable): method __init__ (line 6432) | def __init__(self, label, amount): method to_dict (line 6436) | def to_dict(self): method to_json (line 6441) | def to_json(self): class Invoice (line 6445) | class Invoice(JsonDeserializable): method de_json (line 6472) | def de_json(cls, json_string): method __init__ (line 6477) | def __init__(self, title, description, start_parameter, currency, tota... class ShippingAddress (line 6485) | class ShippingAddress(JsonDeserializable): method de_json (line 6513) | def de_json(cls, json_string): method __init__ (line 6518) | def __init__(self, country_code, state, city, street_line1, street_lin... class OrderInfo (line 6527) | class OrderInfo(JsonDeserializable): method de_json (line 6549) | def de_json(cls, json_string): method __init__ (line 6555) | def __init__(self, name=None, phone_number=None, email=None, shipping_... class ShippingOption (line 6563) | class ShippingOption(JsonSerializable): method __init__ (line 6581) | def __init__(self, id, title): method add_price (line 6586) | def add_price(self, *args) -> 'ShippingOption': method to_json (line 6599) | def to_json(self): class SuccessfulPayment (line 6607) | class SuccessfulPayment(JsonDeserializable): method de_json (line 6649) | def de_json(cls, json_string): method __init__ (line 6655) | def __init__(self, currency, total_amount, invoice_payload, shipping_o... class ShippingQuery (line 6671) | class ShippingQuery(JsonDeserializable): method de_json (line 6693) | def de_json(cls, json_string): method __init__ (line 6700) | def __init__(self, id, from_user, invoice_payload, shipping_address, *... class PreCheckoutQuery (line 6708) | class PreCheckoutQuery(JsonDeserializable): method de_json (line 6741) | def de_json(cls, json_string): method __init__ (line 6748) | def __init__(self, id, from_user, currency, total_amount, invoice_payl... class StickerSet (line 6760) | class StickerSet(JsonDeserializable): method de_json (line 6785) | def de_json(cls, json_string): method __init__ (line 6798) | def __init__(self, name, title, sticker_type, stickers, thumbnail=None... method thumb (line 6806) | def thumb(self) -> Optional[PhotoSize]: method contains_masks (line 6811) | def contains_masks(self) -> bool: method is_animated (line 6816) | def is_animated(self) -> bool: method is_video (line 6821) | def is_video(self) -> bool: class Sticker (line 6827) | class Sticker(JsonDeserializable): method de_json (line 6887) | def de_json(cls, json_string): method __init__ (line 6900) | def __init__(self, file_id, file_unique_id, type, width, height, is_an... method thumb (line 6920) | def thumb(self) -> Optional[PhotoSize]: class MaskPosition (line 6925) | class MaskPosition(Dictionaryable, JsonDeserializable, JsonSerializable): method de_json (line 6951) | def de_json(cls, json_string): method __init__ (line 6956) | def __init__(self, point, x_shift, y_shift, scale, **kwargs): method to_json (line 6962) | def to_json(self): method to_dict (line 6965) | def to_dict(self): class InputMedia (line 6972) | class InputMedia(Dictionaryable, JsonSerializable): method __init__ (line 6982) | def __init__(self, type, media, caption=None, parse_mode=None, caption... method to_json (line 7011) | def to_json(self): method to_dict (line 7014) | def to_dict(self): method convert_input_media (line 7026) | def convert_input_media(self): class InputMediaPhoto (line 7040) | class InputMediaPhoto(InputMedia): method __init__ (line 7071) | def __init__(self, media: Union[str, InputFile], caption: Optional[str... method to_dict (line 7083) | def to_dict(self): class InputMediaVideo (line 7092) | class InputMediaVideo(InputMedia): method __init__ (line 7150) | def __init__(self, media: Union[str, InputFile], thumbnail: Optional[U... method thumb (line 7169) | def thumb(self) -> Optional[Union[str, Any]]: method to_dict (line 7173) | def to_dict(self): class InputMediaAnimation (line 7194) | class InputMediaAnimation(InputMedia): method __init__ (line 7242) | def __init__(self, media: Union[str, InputFile], thumbnail: Optional[U... method thumb (line 7257) | def thumb(self) -> Optional[Union[str, Any]]: method to_dict (line 7261) | def to_dict(self): class InputMediaAudio (line 7276) | class InputMediaAudio(InputMedia): method __init__ (line 7317) | def __init__(self, media: Union[str, InputFile], thumbnail: Optional[U... method thumb (line 7328) | def thumb(self) -> Optional[Union[str, Any]]: method to_dict (line 7332) | def to_dict(self): class InputMediaDocument (line 7343) | class InputMediaDocument(InputMedia): method __init__ (line 7379) | def __init__(self, media: Union[str, InputFile], thumbnail: Optional[U... method thumb (line 7388) | def thumb(self) -> Optional[Union[str, Any]]: method to_dict (line 7392) | def to_dict(self): class PollOption (line 7399) | class PollOption(JsonDeserializable): method de_json (line 7418) | def de_json(cls, json_string): method __init__ (line 7425) | def __init__(self, text, voter_count = 0, text_entities=None, **kwargs): class InputPollOption (line 7435) | class InputPollOption(JsonSerializable): method __init__ (line 7453) | def __init__(self, text: str, text_parse_mode: Optional[str] = None, t... method to_json (line 7459) | def to_json(self): method to_dict (line 7462) | def to_dict(self): class Poll (line 7474) | class Poll(JsonDeserializable): method de_json (line 7526) | def de_json(cls, json_string): method __init__ (line 7540) | def __init__( method add (line 7567) | def add(self, option): class PollAnswer (line 7580) | class PollAnswer(JsonSerializable, JsonDeserializable, Dictionaryable): method de_json (line 7602) | def de_json(cls, json_string): method __init__ (line 7611) | def __init__(self, poll_id: str, option_ids: List[int], user: Optional... method to_json (line 7618) | def to_json(self): method to_dict (line 7621) | def to_dict(self): class ChatLocation (line 7635) | class ChatLocation(JsonSerializable, JsonDeserializable, Dictionaryable): method de_json (line 7651) | def de_json(cls, json_string): method __init__ (line 7657) | def __init__(self, location: Location, address: str, **kwargs): method to_json (line 7661) | def to_json(self): method to_dict (line 7664) | def to_dict(self): class ChatInviteLink (line 7671) | class ChatInviteLink(JsonSerializable, JsonDeserializable, Dictionaryable): method de_json (line 7710) | def de_json(cls, json_string): method __init__ (line 7716) | def __init__(self, invite_link: str, creator: User, creates_join_reque... method to_json (line 7729) | def to_json(self): method to_dict (line 7732) | def to_dict(self): class ProximityAlertTriggered (line 7751) | class ProximityAlertTriggered(JsonDeserializable): method de_json (line 7770) | def de_json(cls, json_string): method __init__ (line 7775) | def __init__(self, traveler, watcher, distance, **kwargs): class VideoChatStarted (line 7781) | class VideoChatStarted(JsonDeserializable): method de_json (line 7786) | def de_json(cls, json_string): method __init__ (line 7789) | def __init__(self): class VoiceChatStarted (line 7792) | class VoiceChatStarted(VideoChatStarted): method __init__ (line 7797) | def __init__(self): class VideoChatScheduled (line 7802) | class VideoChatScheduled(JsonDeserializable): method de_json (line 7816) | def de_json(cls, json_string): method __init__ (line 7821) | def __init__(self, start_date, **kwargs): class VoiceChatScheduled (line 7825) | class VoiceChatScheduled(VideoChatScheduled): method __init__ (line 7829) | def __init__(self, *args, **kwargs): class VideoChatEnded (line 7834) | class VideoChatEnded(JsonDeserializable): method de_json (line 7847) | def de_json(cls, json_string): method __init__ (line 7852) | def __init__(self, duration, **kwargs): class VoiceChatEnded (line 7856) | class VoiceChatEnded(VideoChatEnded): method __init__ (line 7860) | def __init__(self, *args, **kwargs): class VideoChatParticipantsInvited (line 7866) | class VideoChatParticipantsInvited(JsonDeserializable): method de_json (line 7879) | def de_json(cls, json_string): method __init__ (line 7885) | def __init__(self, users=None, **kwargs): class VoiceChatParticipantsInvited (line 7889) | class VoiceChatParticipantsInvited(VideoChatParticipantsInvited): method __init__ (line 7893) | def __init__(self, *args, **kwargs): class MessageAutoDeleteTimerChanged (line 7898) | class MessageAutoDeleteTimerChanged(JsonDeserializable): method de_json (line 7911) | def de_json(cls, json_string): method __init__ (line 7916) | def __init__(self, message_auto_delete_time, **kwargs): class MenuButton (line 7920) | class MenuButton(JsonDeserializable, JsonSerializable, Dictionaryable): method de_json (line 7932) | def de_json(cls, json_string): method to_json (line 7942) | def to_json(self): method to_dict (line 7948) | def to_dict(self): class MenuButtonCommands (line 7956) | class MenuButtonCommands(MenuButton): method __init__ (line 7969) | def __init__(self, type: str = None, **kwargs): method to_dict (line 7972) | def to_dict(self): method to_json (line 7975) | def to_json(self): class MenuButtonWebApp (line 7980) | class MenuButtonWebApp(MenuButton): method __init__ (line 8002) | def __init__(self, type: str, text: str, web_app: WebAppInfo, **kwargs): method to_dict (line 8007) | def to_dict(self): method to_json (line 8010) | def to_json(self): class MenuButtonDefault (line 8015) | class MenuButtonDefault(MenuButton): method __init__ (line 8027) | def __init__(self, type: str = None, **kwargs): method to_dict (line 8030) | def to_dict(self): method to_json (line 8033) | def to_json(self): class ChatAdministratorRights (line 8037) | class ChatAdministratorRights(JsonDeserializable, JsonSerializable, Dict... method de_json (line 8104) | def de_json(cls, json_string): method __init__ (line 8109) | def __init__(self, is_anonymous: bool, can_manage_chat: bool, method to_dict (line 8138) | def to_dict(self): method to_json (line 8170) | def to_json(self): class InputFile (line 8175) | class InputFile: method __init__ (line 8212) | def __init__(self, file: Union[str, IOBase, Path], file_name: Optional... method _resolve_file (line 8219) | def _resolve_file(file): method file (line 8232) | def file(self) -> Union[IOBase, str]: method file_name (line 8239) | def file_name(self) -> str: class ForumTopicCreated (line 8246) | class ForumTopicCreated(JsonDeserializable): method de_json (line 8268) | def de_json(cls, json_string): method __init__ (line 8273) | def __init__(self, name: str, icon_color: int, icon_custom_emoji_id: O... class ForumTopicClosed (line 8280) | class ForumTopicClosed(JsonDeserializable): method de_json (line 8288) | def de_json(cls, json_string): method __init__ (line 8291) | def __init__(self) -> None: class ForumTopicReopened (line 8295) | class ForumTopicReopened(JsonDeserializable): method de_json (line 8303) | def de_json(cls, json_string): method __init__ (line 8306) | def __init__(self) -> None: class ForumTopicEdited (line 8309) | class ForumTopicEdited(JsonDeserializable): method de_json (line 8323) | def de_json(cls, json_string): method __init__ (line 8328) | def __init__(self, name: Optional[str]=None, icon_custom_emoji_id: Opt... class GeneralForumTopicHidden (line 8333) | class GeneralForumTopicHidden(JsonDeserializable): method de_json (line 8341) | def de_json(cls, json_string): method __init__ (line 8344) | def __init__(self) -> None: class GeneralForumTopicUnhidden (line 8348) | class GeneralForumTopicUnhidden(JsonDeserializable): method de_json (line 8357) | def de_json(cls, json_string): method __init__ (line 8360) | def __init__(self) -> None: class ForumTopic (line 8365) | class ForumTopic(JsonDeserializable): method de_json (line 8391) | def de_json(cls, json_string): method __init__ (line 8396) | def __init__(self, message_thread_id: int, name: str, icon_color: int,... class WriteAccessAllowed (line 8405) | class WriteAccessAllowed(JsonDeserializable): method de_json (line 8424) | def de_json(cls, json_string): method __init__ (line 8430) | def __init__(self, from_request: Optional[bool]=None, web_app_name: Op... class ChatShared (line 8437) | class ChatShared(JsonDeserializable): method de_json (line 8467) | def de_json(cls, json_string): method __init__ (line 8472) | def __init__(self, request_id: int, chat_id: int, title: Optional[str]... class BotDescription (line 8481) | class BotDescription(JsonDeserializable): method de_json (line 8495) | def de_json(cls, json_string): method __init__ (line 8500) | def __init__(self, description: str, **kwargs) -> None: class BotShortDescription (line 8504) | class BotShortDescription(JsonDeserializable): method de_json (line 8518) | def de_json(cls, json_string): method __init__ (line 8523) | def __init__(self, short_description: str, **kwargs) -> None: class InputSticker (line 8528) | class InputSticker(Dictionaryable, JsonSerializable): method __init__ (line 8554) | def __init__(self, sticker: Union[str, InputFile], emoji_list: List[st... method to_dict (line 8576) | def to_dict(self) -> dict: method to_json (line 8590) | def to_json(self) -> str: method convert_input_sticker (line 8593) | def convert_input_sticker(self) -> Tuple[str, Optional[dict]]: class SwitchInlineQueryChosenChat (line 8601) | class SwitchInlineQueryChosenChat(JsonDeserializable, Dictionaryable, Js... method de_json (line 8629) | def de_json(cls, json_string): method __init__ (line 8634) | def __init__(self, query: Optional[str]=None, allow_user_chats: Option... method to_dict (line 8643) | def to_dict(self): method to_json (line 8659) | def to_json(self): class BotName (line 8663) | class BotName(JsonDeserializable): method de_json (line 8677) | def de_json(cls, json_string): method __init__ (line 8682) | def __init__(self, name: str, **kwargs): class InlineQueryResultsButton (line 8686) | class InlineQueryResultsButton(JsonSerializable, Dictionaryable): method __init__ (line 8713) | def __init__(self, text: str, web_app: Optional[WebAppInfo]=None, star... method to_dict (line 8718) | def to_dict(self) -> dict: method to_json (line 8730) | def to_json(self) -> str: class Story (line 8735) | class Story(JsonDeserializable): method de_json (line 8752) | def de_json(cls, json_string): method __init__ (line 8758) | def __init__(self, chat: Chat, id: int, **kwargs) -> None: class ReactionType (line 8765) | class ReactionType(JsonDeserializable, Dictionaryable, JsonSerializable): method de_json (line 8779) | def de_json(cls, json_string): method __init__ (line 8795) | def __init__(self, type: str) -> None: method to_dict (line 8800) | def to_dict(self) -> dict: method to_json (line 8806) | def to_json(self) -> str: class ReactionTypeEmoji (line 8811) | class ReactionTypeEmoji(ReactionType): method __init__ (line 8827) | def __init__(self, emoji: str, **kwargs) -> None: method to_dict (line 8831) | def to_dict(self) -> dict: class ReactionTypeCustomEmoji (line 8838) | class ReactionTypeCustomEmoji(ReactionType): method __init__ (line 8854) | def __init__(self, custom_emoji_id: str, **kwargs) -> None: method to_dict (line 8858) | def to_dict(self) -> dict: class ReactionTypePaid (line 8864) | class ReactionTypePaid(ReactionType): method __init__ (line 8877) | def __init__(self, **kwargs) -> None: method to_dict (line 8880) | def to_dict(self) -> dict: class MessageReactionUpdated (line 8885) | class MessageReactionUpdated(JsonDeserializable): method de_json (line 8917) | def de_json(cls, json_string): method __init__ (line 8930) | def __init__(self, chat: Chat, message_id: int, date: int, old_reactio... class MessageReactionCountUpdated (line 8942) | class MessageReactionCountUpdated(JsonDeserializable): method de_json (line 8965) | def de_json(cls, json_string): method __init__ (line 8972) | def __init__(self, chat: Chat, message_id: int, date: int, reactions: ... class ReactionCount (line 8980) | class ReactionCount(JsonDeserializable): method de_json (line 8997) | def de_json(cls, json_string): method __init__ (line 9003) | def __init__(self, type: ReactionType, total_count: int, **kwargs) -> ... class ExternalReplyInfo (line 9008) | class ExternalReplyInfo(JsonDeserializable): method de_json (line 9094) | def de_json(cls, json_string): method __init__ (line 9144) | def __init__( class MessageOrigin (line 9184) | class MessageOrigin(JsonDeserializable, ABC): method de_json (line 9213) | def de_json(cls, json_string): method __init__ (line 9231) | def __init__(self, type: str, date: int) -> None: class MessageOriginUser (line 9236) | class MessageOriginUser(MessageOrigin): method __init__ (line 9244) | def __init__(self, date: int, sender_user: User) -> None: class MessageOriginHiddenUser (line 9249) | class MessageOriginHiddenUser(MessageOrigin): method __init__ (line 9257) | def __init__(self, date: int, sender_user_name: str) -> None: class MessageOriginChat (line 9262) | class MessageOriginChat(MessageOrigin): method __init__ (line 9273) | def __init__(self, date: int, sender_chat: Chat, author_signature: Opt... class MessageOriginChannel (line 9279) | class MessageOriginChannel(MessageOrigin): method __init__ (line 9293) | def __init__(self, date: int, chat: Chat, message_id: int, author_sign... class LinkPreviewOptions (line 9300) | class LinkPreviewOptions(JsonDeserializable, Dictionaryable, JsonSeriali... method de_json (line 9326) | def de_json(cls, json_string): method __init__ (line 9331) | def __init__(self, is_disabled: Optional[bool] = None, url: Optional[s... method to_dict (line 9340) | def to_dict(self) -> dict: method to_json (line 9355) | def to_json(self) -> str: class Giveaway (line 9359) | class Giveaway(JsonDeserializable): method de_json (line 9397) | def de_json(cls, json_string): method __init__ (line 9403) | def __init__(self, chats: List[Chat], winners_selection_date: int, win... class GiveawayWinners (line 9418) | class GiveawayWinners(JsonDeserializable): method de_json (line 9465) | def de_json(cls, json_string): method __init__ (line 9472) | def __init__(self, chat: Chat, giveaway_message_id: int, winners_selec... class GiveawayCompleted (line 9491) | class GiveawayCompleted(JsonDeserializable): method de_json (line 9514) | def de_json(cls, json_string): method __init__ (line 9521) | def __init__(self, winner_count: int, unclaimed_prize_count: Optional[... class GiveawayCreated (line 9529) | class GiveawayCreated(JsonDeserializable): method de_json (line 9540) | def de_json(cls, json_string): method __init__ (line 9545) | def __init__(self, prize_star_count=None, **kwargs) -> None: class TextQuote (line 9549) | class TextQuote(JsonDeserializable): method de_json (line 9572) | def de_json(cls, json_string): method __init__ (line 9579) | def __init__(self, text: str, position: int, method html_text (line 9588) | def html_text(self): class ReplyParameters (line 9597) | class ReplyParameters(JsonDeserializable, Dictionaryable, JsonSerializab... method de_json (line 9632) | def de_json(cls, json_string): method __init__ (line 9639) | def __init__(self, message_id: int, chat_id: Optional[Union[int, str]]... method to_dict (line 9652) | def to_dict(self) -> dict: method to_json (line 9672) | def to_json(self) -> str: class UsersShared (line 9676) | class UsersShared(JsonDeserializable): method de_json (line 9693) | def de_json(cls, json_string): method __init__ (line 9699) | def __init__(self, request_id: int, users: List[SharedUser], **kwargs): method user_id (line 9704) | def user_id(self) -> None: method user_ids (line 9709) | def user_ids(self) -> List[SharedUser]: class ChatBoostUpdated (line 9714) | class ChatBoostUpdated(JsonDeserializable): method de_json (line 9731) | def de_json(cls, json_string): method __init__ (line 9738) | def __init__(self, chat, boost, **kwargs): class ChatBoostRemoved (line 9743) | class ChatBoostRemoved(JsonDeserializable): method de_json (line 9766) | def de_json(cls, json_string): method __init__ (line 9773) | def __init__(self, chat, boost_id, remove_date, source, **kwargs): class ChatBoostSource (line 9780) | class ChatBoostSource(ABC, JsonDeserializable): method de_json (line 9794) | def de_json(cls, json_string): class ChatBoostSourcePremium (line 9807) | class ChatBoostSourcePremium(ChatBoostSource): method de_json (line 9824) | def de_json(cls, json_string): method __init__ (line 9830) | def __init__(self, source, user, **kwargs): class ChatBoostSourceGiftCode (line 9836) | class ChatBoostSourceGiftCode(ChatBoostSource): method de_json (line 9853) | def de_json(cls, json_string): method __init__ (line 9859) | def __init__(self, source, user, **kwargs): class ChatBoostSourceGiveaway (line 9865) | class ChatBoostSourceGiveaway(ChatBoostSource): method de_json (line 9891) | def de_json(cls, json_string): method __init__ (line 9897) | def __init__(self, source, giveaway_message_id, user=None, is_unclaime... class ChatBoost (line 9905) | class ChatBoost(JsonDeserializable): method de_json (line 9928) | def de_json(cls, json_string): method __init__ (line 9947) | def __init__(self, boost_id, add_date, expiration_date, source, **kwar... class UserChatBoosts (line 9954) | class UserChatBoosts(JsonDeserializable): method de_json (line 9968) | def de_json(cls, json_string): method __init__ (line 9974) | def __init__(self, boosts, **kwargs): class InaccessibleMessage (line 9978) | class InaccessibleMessage(JsonDeserializable): method de_json (line 9998) | def de_json(cls, json_string): method __init__ (line 10004) | def __init__(self, chat, message_id, date, **kwargs): method __universal_deprecation (line 10010) | def __universal_deprecation(property_name): method __getattr__ (line 10014) | def __getattr__(self, item): class ChatBoostAdded (line 10035) | class ChatBoostAdded(JsonDeserializable): method de_json (line 10049) | def de_json(cls, json_string): method __init__ (line 10054) | def __init__(self, boost_count, **kwargs): class BusinessConnection (line 10059) | class BusinessConnection(JsonDeserializable): method de_json (line 10091) | def de_json(cls, json_string): method __init__ (line 10098) | def __init__(self, id, user, user_chat_id, date, can_reply, is_enabled, method can_reply (line 10108) | def can_reply(self) -> bool: class BusinessMessagesDeleted (line 10117) | class BusinessMessagesDeleted(JsonDeserializable): method de_json (line 10137) | def de_json(cls, json_string): method __init__ (line 10144) | def __init__(self, business_connection_id, chat, message_ids, **kwargs): class BusinessIntro (line 10150) | class BusinessIntro(JsonDeserializable): method de_json (line 10170) | def de_json(cls, json_string): method __init__ (line 10177) | def __init__(self, title=None, message=None, sticker=None, **kwargs): class BusinessLocation (line 10183) | class BusinessLocation(JsonDeserializable): method de_json (line 10200) | def de_json(cls, json_string): method __init__ (line 10207) | def __init__(self, address, location=None, **kwargs): class BusinessOpeningHoursInterval (line 10212) | class BusinessOpeningHoursInterval(JsonDeserializable): method de_json (line 10229) | def de_json(cls, json_string): method __init__ (line 10234) | def __init__(self, opening_minute, closing_minute, **kwargs): class BusinessOpeningHours (line 10239) | class BusinessOpeningHours(JsonDeserializable): method de_json (line 10258) | def de_json(cls, json_string): method __init__ (line 10264) | def __init__(self, time_zone_name, opening_hours, **kwargs): class SharedUser (line 10269) | class SharedUser(JsonDeserializable): method de_json (line 10295) | def de_json(cls, json_string): method __init__ (line 10302) | def __init__(self, user_id, first_name=None, last_name=None, username=... class Birthdate (line 10310) | class Birthdate(JsonDeserializable): method de_json (line 10330) | def de_json(cls, json_string): method __init__ (line 10335) | def __init__(self, day, month, year=None, **kwargs): class BackgroundFill (line 10341) | class BackgroundFill(ABC, JsonDeserializable): method de_json (line 10355) | def de_json(cls, json_string): class BackgroundFillSolid (line 10368) | class BackgroundFillSolid(BackgroundFill): method de_json (line 10385) | def de_json(cls, json_string): method __init__ (line 10390) | def __init__(self, type, color, **kwargs): class BackgroundFillGradient (line 10396) | class BackgroundFillGradient(BackgroundFill): method de_json (line 10419) | def de_json(cls, json_string): method __init__ (line 10424) | def __init__(self, type, top_color, bottom_color, rotation_angle, **kw... class BackgroundFillFreeformGradient (line 10432) | class BackgroundFillFreeformGradient(BackgroundFill): method de_json (line 10449) | def de_json(cls, json_string): method __init__ (line 10454) | def __init__(self, type, colors, **kwargs): class BackgroundType (line 10459) | class BackgroundType(ABC, JsonDeserializable): method de_json (line 10474) | def de_json(cls, json_string): class BackgroundTypeFill (line 10489) | class BackgroundTypeFill(BackgroundFill): method de_json (line 10509) | def de_json(cls, json_string): method __init__ (line 10515) | def __init__(self, type, fill, dark_theme_dimming, **kwargs): class BackgroundTypeWallpaper (line 10522) | class BackgroundTypeWallpaper(BackgroundFill): method de_json (line 10548) | def de_json(cls, json_string): method __init__ (line 10554) | def __init__(self, type, document, dark_theme_dimming, is_blurred=None... class BackgroundTypePattern (line 10563) | class BackgroundTypePattern(BackgroundFill): method de_json (line 10592) | def de_json(cls, json_string): method __init__ (line 10598) | def __init__(self, type, document, fill, intensity, is_inverted=None, ... class BackgroundTypeChatTheme (line 10608) | class BackgroundTypeChatTheme(BackgroundFill): method de_json (line 10625) | def de_json(cls, json_string): method __init__ (line 10630) | def __init__(self, type, theme_name, **kwargs): class ChatBackground (line 10636) | class ChatBackground(JsonDeserializable): method de_json (line 10650) | def de_json(cls, json_string): method __init__ (line 10656) | def __init__(self, type, **kwargs): class RevenueWithdrawalState (line 10660) | class RevenueWithdrawalState(JsonDeserializable): method de_json (line 10678) | def de_json(cls, json_string): class RevenueWithdrawalStatePending (line 10691) | class RevenueWithdrawalStatePending(RevenueWithdrawalState): method __init__ (line 10704) | def __init__(self, type, **kwargs): method de_json (line 10708) | def de_json(cls, json_string): class RevenueWithdrawalStateSucceeded (line 10715) | class RevenueWithdrawalStateSucceeded(RevenueWithdrawalState): method __init__ (line 10734) | def __init__(self, type, date, url, **kwargs): method de_json (line 10740) | def de_json(cls, json_string): class RevenueWithdrawalStateFailed (line 10747) | class RevenueWithdrawalStateFailed(RevenueWithdrawalState): method __init__ (line 10760) | def __init__(self, type, **kwargs): method de_json (line 10764) | def de_json(cls, json_string): class TransactionPartner (line 10770) | class TransactionPartner(JsonDeserializable, ABC): method de_json (line 10792) | def de_json(cls, json_string): class TransactionPartnerFragment (line 10814) | class TransactionPartnerFragment(TransactionPartner): method __init__ (line 10831) | def __init__(self, type, withdrawal_state=None, **kwargs): method de_json (line 10836) | def de_json(cls, json_string): class TransactionPartnerTelegramApi (line 10845) | class TransactionPartnerTelegramApi(TransactionPartner): method __init__ (line 10861) | def __init__(self, type, request_count, **kwargs): method de_json (line 10866) | def de_json(cls, json_string): class TransactionPartnerUser (line 10873) | class TransactionPartnerUser(TransactionPartner): method __init__ (line 10912) | def __init__(self, type, user, affiliate=None, invoice_payload=None, p... method de_json (line 10926) | def de_json(cls, json_string): class TransactionPartnerTelegramAds (line 10940) | class TransactionPartnerTelegramAds(TransactionPartner): method __init__ (line 10953) | def __init__(self, type, **kwargs): method de_json (line 10957) | def de_json(cls, json_string): class TransactionPartnerOther (line 10964) | class TransactionPartnerOther(TransactionPartner): method __init__ (line 10977) | def __init__(self, type, **kwargs): method de_json (line 10981) | def de_json(cls, json_string): class StarTransaction (line 10988) | class StarTransaction(JsonDeserializable): method de_json (line 11017) | def de_json(cls, json_string): method __init__ (line 11026) | def __init__(self, id, amount, date, source=None, receiver=None, nanos... class StarTransactions (line 11035) | class StarTransactions(JsonDeserializable): method de_json (line 11050) | def de_json(cls, json_string): method __init__ (line 11056) | def __init__(self, transactions, **kwargs): class PaidMedia (line 11060) | class PaidMedia(JsonDeserializable, ABC): method de_json (line 11075) | def de_json(cls, json_string): class PaidMediaPreview (line 11089) | class PaidMediaPreview(PaidMedia): method __init__ (line 11111) | def __init__(self, type, width=None, height=None, duration=None, **kwa... method de_json (line 11118) | def de_json(cls, json_string): class PaidMediaPhoto (line 11125) | class PaidMediaPhoto(PaidMedia): method __init__ (line 11142) | def __init__(self, type, photo, **kwargs): method de_json (line 11147) | def de_json(cls, json_string): class PaidMediaVideo (line 11156) | class PaidMediaVideo(PaidMedia): method __init__ (line 11172) | def __init__(self, type, video, **kwargs): method de_json (line 11177) | def de_json(cls, json_string): class PaidMediaInfo (line 11184) | class PaidMediaInfo(JsonDeserializable): method de_json (line 11201) | def de_json(cls, json_string): method __init__ (line 11207) | def __init__(self, star_count, paid_media, **kwargs): class InputPaidMedia (line 11213) | class InputPaidMedia(Dictionaryable, JsonSerializable): method __init__ (line 11225) | def __init__(self, type: str, media: Union[str, InputFile], **kwargs): method to_json (line 11240) | def to_json(self): method to_dict (line 11243) | def to_dict(self): class InputPaidMediaPhoto (line 11251) | class InputPaidMediaPhoto(InputPaidMedia): method __init__ (line 11269) | def __init__(self, media: Union[str, InputFile], **kwargs): class InputPaidMediaVideo (line 11273) | class InputPaidMediaVideo(InputPaidMedia): method __init__ (line 11318) | def __init__(self, media: Union[str, InputFile], thumbnail: Optional[I... method to_dict (line 11330) | def to_dict(self): class RefundedPayment (line 11349) | class RefundedPayment(JsonDeserializable): method __init__ (line 11374) | def __init__(self, currency, total_amount, invoice_payload, telegram_p... method de_json (line 11382) | def de_json(cls, json_string): class PaidMediaPurchased (line 11388) | class PaidMediaPurchased(JsonDeserializable): method __init__ (line 11404) | def __init__(self, from_user, paid_media_payload, **kwargs): method de_json (line 11409) | def de_json(cls, json_string): class CopyTextButton (line 11416) | class CopyTextButton(JsonSerializable, JsonDeserializable): method __init__ (line 11428) | def __init__(self, text: str, **kwargs): method to_json (line 11431) | def to_json(self): method to_dict (line 11434) | def to_dict(self): method de_json (line 11441) | def de_json(cls, json_string): class PreparedInlineMessage (line 11448) | class PreparedInlineMessage(JsonDeserializable): method __init__ (line 11464) | def __init__(self, id, expiration_date, **kwargs): method de_json (line 11469) | def de_json(cls, json_string): class Gift (line 11476) | class Gift(JsonDeserializable): method __init__ (line 11525) | def __init__(self, id, sticker, star_count, total_count=None, remainin... method de_json (line 11543) | def de_json(cls, json_string): class Gifts (line 11554) | class Gifts(JsonDeserializable): method __init__ (line 11567) | def __init__(self, gifts, **kwargs): method de_json (line 11571) | def de_json(cls, json_string): class TransactionPartnerAffiliateProgram (line 11579) | class TransactionPartnerAffiliateProgram(TransactionPartner): method __init__ (line 11598) | def __init__(self, type, commission_per_mille, sponsor_user=None, **kw... method de_json (line 11604) | def de_json(cls, json_string): class AffiliateInfo (line 11613) | class AffiliateInfo(JsonDeserializable): method __init__ (line 11638) | def __init__(self, commission_per_mille, amount, affiliate_user=None, ... method de_json (line 11646) | def de_json(cls, json_string): class TransactionPartnerChat (line 11657) | class TransactionPartnerChat(TransactionPartner): method __init__ (line 11676) | def __init__(self, type, chat, gift=None, **kwargs): method de_json (line 11682) | def de_json(cls, json_string): class BusinessBotRights (line 11691) | class BusinessBotRights(JsonDeserializable): method __init__ (line 11742) | def __init__(self, can_reply=None, can_read_messages=None, can_delete_... method de_json (line 11762) | def de_json(cls, json_string): class AcceptedGiftTypes (line 11768) | class AcceptedGiftTypes(JsonDeserializable, JsonSerializable): method __init__ (line 11792) | def __init__(self, unlimited_gifts: bool, limited_gifts: bool, method to_json (line 11800) | def to_json(self): method to_dict (line 11803) | def to_dict(self): method de_json (line 11814) | def de_json(cls, json_string): class StarAmount (line 11820) | class StarAmount(JsonDeserializable): method __init__ (line 11835) | def __init__(self, amount, nanostar_amount=None, **kwargs): method de_json (line 11840) | def de_json(cls, json_string): class OwnedGift (line 11847) | class OwnedGift(JsonDeserializable, ABC): method __init__ (line 11856) | def __init__(self, type, **kwargs): method de_json (line 11861) | def de_json(cls, json_string): class OwnedGiftRegular (line 11873) | class OwnedGiftRegular(OwnedGift): method __init__ (line 11927) | def __init__(self, type, gift, owned_gift_id=None, sender_user=None, s... method de_json (line 11947) | def de_json(cls, json_string): class OwnedGiftUnique (line 11959) | class OwnedGiftUnique(OwnedGift): method __init__ (line 11995) | def __init__(self, type, gift, owned_gift_id=None, sender_user=None, s... method de_json (line 12008) | def de_json(cls, json_string): class OwnedGifts (line 12017) | class OwnedGifts(JsonDeserializable): method __init__ (line 12036) | def __init__(self, total_count, gifts, next_offset=None, **kwargs): method de_json (line 12042) | def de_json(cls, json_string): class UniqueGift (line 12049) | class UniqueGift(JsonDeserializable): method __init__ (line 12093) | def __init__(self, base_name, name, number, model, symbol, backdrop, g... method de_json (line 12109) | def de_json(cls, json_string): class UniqueGiftModel (line 12122) | class UniqueGiftModel(JsonDeserializable): method __init__ (line 12144) | def __init__(self, name, sticker, rarity_per_mille, rarity=None, **kwa... method de_json (line 12151) | def de_json(cls, json_string): class UniqueGiftSymbol (line 12158) | class UniqueGiftSymbol(JsonDeserializable): method __init__ (line 12177) | def __init__(self, name, sticker, rarity_per_mille, **kwargs): method de_json (line 12183) | def de_json(cls, json_string): class UniqueGiftBackdropColors (line 12190) | class UniqueGiftBackdropColors(JsonDeserializable): method __init__ (line 12211) | def __init__(self, center_color, edge_color, symbol_color, text_color,... method de_json (line 12218) | def de_json(cls, json_string): class UniqueGiftBackdrop (line 12224) | class UniqueGiftBackdrop(JsonDeserializable): method __init__ (line 12242) | def __init__(self, name, colors, rarity_per_mille, **kwargs): method de_json (line 12248) | def de_json(cls, json_string): class InputStoryContent (line 12256) | class InputStoryContent(JsonSerializable, ABC): method __init__ (line 12264) | def __init__(self, type: str, **kwargs): class InputStoryContentPhoto (line 12268) | class InputStoryContentPhoto(InputStoryContent): method __init__ (line 12280) | def __init__(self, photo: InputFile, **kwargs): method to_json (line 12286) | def to_json(self): method to_dict (line 12289) | def to_dict(self): method convert_input_story (line 12296) | def convert_input_story(self): class InputStoryContentVideo (line 12300) | class InputStoryContentVideo(InputStoryContent): method __init__ (line 12321) | def __init__(self, video: InputFile, duration: Optional[float] = None,... method to_json (line 12331) | def to_json(self): method to_dict (line 12334) | def to_dict(self): method convert_input_story (line 12347) | def convert_input_story(self): class StoryAreaPosition (line 12351) | class StoryAreaPosition(JsonSerializable): method __init__ (line 12378) | def __init__(self, x_percentage: float, y_percentage: float, width_per... method to_json (line 12387) | def to_json(self): method to_dict (line 12390) | def to_dict(self): class LocationAddress (line 12402) | class LocationAddress(JsonSerializable): method __init__ (line 12423) | def __init__(self, country_code: str, state: Optional[str] = None, cit... method to_json (line 12430) | def to_json(self): method to_dict (line 12433) | def to_dict(self): class StoryAreaType (line 12447) | class StoryAreaType(JsonSerializable, ABC): method __init__ (line 12461) | def __init__(self, type: str, **kwargs): class StoryAreaTypeLocation (line 12465) | class StoryAreaTypeLocation(StoryAreaType): method __init__ (line 12486) | def __init__(self,latitude: float, longitude: float, address: Location... method to_json (line 12492) | def to_json(self): method to_dict (line 12495) | def to_dict(self): class StoryAreaTypeSuggestedReaction (line 12506) | class StoryAreaTypeSuggestedReaction(StoryAreaType): method __init__ (line 12527) | def __init__(self, reaction_type: ReactionType, is_dark: Optional[bool... method to_json (line 12533) | def to_json(self): method to_dict (line 12536) | def to_dict(self): class StoryAreaTypeLink (line 12548) | class StoryAreaTypeLink(StoryAreaType): method __init__ (line 12563) | def __init__(self, url: str, **kwargs): method to_json (line 12567) | def to_json(self): method to_dict (line 12570) | def to_dict(self): class StoryAreaTypeWeather (line 12578) | class StoryAreaTypeWeather(StoryAreaType): method __init__ (line 12599) | def __init__(self, temperature: float, emoji: str, background_color: i... method to_json (line 12605) | def to_json(self): method to_dict (line 12608) | def to_dict(self): class StoryAreaTypeUniqueGift (line 12618) | class StoryAreaTypeUniqueGift(StoryAreaType): method __init__ (line 12633) | def __init__(self, name: str, **kwargs): method to_json (line 12637) | def to_json(self): method to_dict (line 12640) | def to_dict(self): class StoryArea (line 12650) | class StoryArea(JsonSerializable): method __init__ (line 12665) | def __init__(self, position: StoryAreaPosition, type: StoryAreaType, *... method to_json (line 12669) | def to_json(self): method to_dict (line 12672) | def to_dict(self): class GiftInfo (line 12680) | class GiftInfo(JsonDeserializable): method __init__ (line 12719) | def __init__(self, gift: Gift, owned_gift_id: Optional[str] = None, co... method de_json (line 12736) | def de_json(cls, json_string): class UniqueGiftInfo (line 12745) | class UniqueGiftInfo(JsonDeserializable): method __init__ (line 12780) | def __init__(self, gift: UniqueGift, origin: str, owned_gift_id: Optio... method last_resale_star_count (line 12793) | def last_resale_star_count(self) -> Optional[int]: method de_json (line 12802) | def de_json(cls, json_string): class PaidMessagePriceChanged (line 12809) | class PaidMessagePriceChanged(JsonDeserializable): method __init__ (line 12821) | def __init__(self, paid_message_star_count: int, **kwargs): method de_json (line 12825) | def de_json(cls, json_string): class InputProfilePhoto (line 12831) | class InputProfilePhoto(JsonSerializable, ABC): class InputProfilePhotoStatic (line 12844) | class InputProfilePhotoStatic(InputProfilePhoto): method __init__ (line 12860) | def __init__(self, photo: InputFile, **kwargs): method to_json (line 12866) | def to_json(self): method to_dict (line 12869) | def to_dict(self): method convert_input_profile_photo (line 12876) | def convert_input_profile_photo(self): class InputProfilePhotoAnimated (line 12880) | class InputProfilePhotoAnimated(InputProfilePhoto): method __init__ (line 12899) | def __init__(self, animation: InputFile, main_frame_timestamp: Optiona... method to_json (line 12906) | def to_json(self): method to_dict (line 12909) | def to_dict(self): method convert_input_profile_photo (line 12918) | def convert_input_profile_photo(self): class ChecklistTask (line 12923) | class ChecklistTask(JsonDeserializable): method __init__ (line 12950) | def __init__(self, id: int, text: str, text_entities: Optional[List[Me... method de_json (line 12962) | def de_json(cls, json_string): class Checklist (line 12974) | class Checklist(JsonDeserializable): method __init__ (line 12998) | def __init__(self, title: str, tasks: List[ChecklistTask], method de_json (line 13009) | def de_json(cls, json_string): class InputChecklistTask (line 13019) | class InputChecklistTask(JsonSerializable): method __init__ (line 13040) | def __init__(self, id: int, text: str, parse_mode: Optional[str] = None, method to_json (line 13047) | def to_json(self): method to_dict (line 13050) | def to_dict(self): class InputChecklist (line 13062) | class InputChecklist(JsonSerializable): method __init__ (line 13089) | def __init__(self, title: str, tasks: List[InputChecklistTask], method to_json (line 13101) | def to_json(self): method to_dict (line 13104) | def to_dict(self): class ChecklistTasksDone (line 13119) | class ChecklistTasksDone(JsonDeserializable): method __init__ (line 13137) | def __init__(self, checklist_message: Optional[Message] = None, method de_json (line 13145) | def de_json(cls, json_string): class ChecklistTasksAdded (line 13153) | class ChecklistTasksAdded(JsonDeserializable): method __init__ (line 13168) | def __init__(self, tasks: List[ChecklistTask], checklist_message: Opti... method de_json (line 13173) | def de_json(cls, json_string): class DirectMessagePriceChanged (line 13182) | class DirectMessagePriceChanged(JsonDeserializable): method __init__ (line 13197) | def __init__(self, are_direct_messages_enabled: bool, direct_message_s... method de_json (line 13202) | def de_json(cls, json_string): class UniqueGiftColors (line 13208) | class UniqueGiftColors(JsonDeserializable): method __init__ (line 13236) | def __init__(self, model_custom_emoji_id: str, symbol_custom_emoji_id:... method de_json (line 13247) | def de_json(cls, json_string): class DirectMessagesTopic (line 13253) | class DirectMessagesTopic(JsonDeserializable): method __init__ (line 13268) | def __init__(self, topic_id: int, user: Optional[User] = None, **kwargs): method de_json (line 13273) | def de_json(cls, json_string): class SuggestedPostPrice (line 13281) | class SuggestedPostPrice(JsonSerializable, JsonDeserializable): method __init__ (line 13296) | def __init__(self, currency: str, amount: int, **kwargs): method to_json (line 13300) | def to_json(self): method to_dict (line 13303) | def to_dict(self): method de_json (line 13311) | def de_json(cls, json_string): class SuggestedPostParameters (line 13317) | class SuggestedPostParameters(JsonSerializable): method __init__ (line 13332) | def __init__(self, price: Optional[SuggestedPostPrice] = None, send_da... method to_json (line 13336) | def to_json(self): method to_dict (line 13339) | def to_dict(self): class SuggestedPostInfo (line 13348) | class SuggestedPostInfo(JsonDeserializable): method __init__ (line 13366) | def __init__(self, state: str, price: Optional[SuggestedPostPrice] method de_json (line 13373) | def de_json(cls, json_string): class SuggestedPostApproved (line 13381) | class SuggestedPostApproved(JsonDeserializable): method __init__ (line 13399) | def __init__(self, send_date: int, method de_json (line 13408) | def de_json(cls, json_string): class GiftBackground (line 13418) | class GiftBackground(JsonDeserializable): method __init__ (line 13436) | def __init__(self, center_color: int, edge_color: int, text_color: int... class SuggestedPostApprovalFailed (line 13441) | class SuggestedPostApprovalFailed(JsonDeserializable): method __init__ (line 13457) | def __init__(self, price: SuggestedPostPrice, method de_json (line 13463) | def de_json(cls, json_string): class SuggestedPostDeclined (line 13471) | class SuggestedPostDeclined(JsonDeserializable): method __init__ (line 13486) | def __init__(self, suggested_post_message: Optional[Message] = None, c... method de_json (line 13491) | def de_json(cls, json_string): class SuggestedPostPaid (line 13498) | class SuggestedPostPaid(JsonDeserializable): method __init__ (line 13519) | def __init__(self, currency: str,suggested_post_message: Optional[Mess... method de_json (line 13527) | def de_json(cls, json_string): class SuggestedPostRefunded (line 13536) | class SuggestedPostRefunded(JsonDeserializable): method __init__ (line 13551) | def __init__(self, reason: str, suggested_post_message: Optional[Messa... method de_json (line 13556) | def de_json(cls, json_string): class UserRating (line 13564) | class UserRating(JsonDeserializable): method __init__ (line 13585) | def __init__(self, level: int, rating: int, current_level_rating: int, method de_json (line 13593) | def de_json(cls, json_string): class ChatOwnerLeft (line 13599) | class ChatOwnerLeft(JsonDeserializable): method __init__ (line 13611) | def __init__(self, new_owner: Optional[User] = None, **kwargs): method de_json (line 13615) | def de_json(cls, json_string): class ChatOwnerChanged (line 13622) | class ChatOwnerChanged(JsonDeserializable): method __init__ (line 13634) | def __init__(self, new_owner: User, **kwargs): method de_json (line 13638) | def de_json(cls, json_string): class VideoQuality (line 13644) | class VideoQuality(JsonDeserializable): method __init__ (line 13672) | def __init__(self, file_id: str, file_unique_id: str, width: int, heig... method de_json (line 13681) | def de_json(cls, json_string): class UserProfileAudios (line 13687) | class UserProfileAudios(JsonDeserializable): method __init__ (line 13702) | def __init__(self, total_count: int, audios: List[Audio], **kwargs): method de_json (line 13707) | def de_json(cls, json_string): FILE: telebot/util.py class WorkerThread (line 59) | class WorkerThread(threading.Thread): method __init__ (line 65) | def __init__(self, exception_callback=None, queue=None, name=None): method run (line 86) | def run(self): method put (line 110) | def put(self, task, *args, **kwargs): method raise_exceptions (line 113) | def raise_exceptions(self): method clear_exceptions (line 117) | def clear_exceptions(self): method stop (line 121) | def stop(self): class ThreadPool (line 125) | class ThreadPool: method __init__ (line 130) | def __init__(self, telebot, num_threads=2): method put (line 139) | def put(self, func, *args, **kwargs): method on_exception (line 142) | def on_exception(self, worker_thread, exc_info): method raise_exceptions (line 152) | def raise_exceptions(self): method clear_exceptions (line 156) | def clear_exceptions(self): method close (line 159) | def close(self): class AsyncTask (line 167) | class AsyncTask: method __init__ (line 172) | def __init__(self, target, *args, **kwargs): method _run (line 181) | def _run(self): method wait (line 188) | def wait(self): class CustomRequestResponse (line 197) | class CustomRequestResponse: method __init__ (line 202) | def __init__(self, json_text, status_code=200, reason=""): method json (line 207) | def json(self): function async_dec (line 211) | def async_dec(): function is_command (line 225) | def is_command(text: str) -> bool: function extract_command (line 239) | def extract_command(text: str) -> Union[str, None]: function extract_arguments (line 262) | def extract_arguments(text: str) -> Union[str, None]: function extract_entity (line 283) | def extract_entity(text: str, e: types.MessageEntity) -> str: function split_string (line 317) | def split_string(text: str, chars_per_string: int) -> List[str]: function smart_split (line 334) | def smart_split(text: str, chars_per_string: int = MAX_MESSAGE_LENGTH) -... function escape (line 375) | def escape(text: str) -> Optional[str]: function user_link (line 390) | def user_link(user: types.User, include_id: bool = False) -> str: function quick_markup (line 420) | def quick_markup(values: Dict[str, Dict[str, Any]], row_width: int = 2) ... function or_set (line 471) | def or_set(self): function or_clear (line 479) | def or_clear(self): function orify (line 487) | def orify(e, changed_callback): function OrEvent (line 500) | def OrEvent(*events): function per_thread (line 526) | def per_thread(key, construct_value, reset=False): function deprecated (line 537) | def deprecated(warn: bool = True, alternative: Optional[Callable] = None... function webhook_google_functions (line 575) | def webhook_google_functions(bot, request): function antiflood (line 600) | def antiflood(function: Callable, *args, number_retries=5, **kwargs): function parse_web_app_data (line 640) | def parse_web_app_data(token: str, raw_init_data: str): function validate_web_app_data (line 667) | def validate_web_app_data(token: str, raw_init_data: str): function validate_token (line 693) | def validate_token(token) -> bool: function extract_bot_id (line 705) | def extract_bot_id(token) -> Union[int, None]: FILE: tests/test_apihelper_95.py function test_promote_chat_member_can_manage_tags (line 4) | def test_promote_chat_member_can_manage_tags(monkeypatch): function test_set_chat_member_tag (line 29) | def test_set_chat_member_tag(monkeypatch): FILE: tests/test_handler_backends.py function telegram_bot (line 21) | def telegram_bot(): function private_chat (line 26) | def private_chat(): function user (line 31) | def user(): function message (line 36) | def message(user, private_chat): function reply_to_message (line 44) | def reply_to_message(user, private_chat, message): function update_type (line 54) | def update_type(message): function reply_to_message_update_type (line 78) | def reply_to_message_update_type(reply_to_message): function next_handler (line 101) | def next_handler(message): function test_memory_handler_backend_default_backend (line 105) | def test_memory_handler_backend_default_backend(telegram_bot): function test_memory_handler_backend_register_next_step_handler (line 110) | def test_memory_handler_backend_register_next_step_handler(telegram_bot,... function test_memory_handler_backend_clear_next_step_handler (line 127) | def test_memory_handler_backend_clear_next_step_handler(telegram_bot, pr... function test_memory_handler_backend_register_reply_handler (line 146) | def test_memory_handler_backend_register_reply_handler(telegram_bot, pri... function test_memory_handler_backend_clear_reply_handler (line 164) | def test_memory_handler_backend_clear_reply_handler(telegram_bot, privat... function test_file_handler_backend_register_next_step_handler (line 184) | def test_file_handler_backend_register_next_step_handler(telegram_bot, p... function test_file_handler_backend_clear_next_step_handler (line 217) | def test_file_handler_backend_clear_next_step_handler(telegram_bot, priv... function test_redis_handler_backend_register_next_step_handler (line 250) | def test_redis_handler_backend_register_next_step_handler(telegram_bot, ... function test_redis_handler_backend_clear_next_step_handler (line 268) | def test_redis_handler_backend_clear_next_step_handler(telegram_bot, pri... FILE: tests/test_telebot.py function deprecated1_new_function (line 24) | def deprecated1_new_function(): function deprecated1_old_function (line 26) | def deprecated1_old_function(): function deprecated2_new_function (line 31) | def deprecated2_new_function(): function deprecated2_old_function (line 34) | def deprecated2_old_function(): class TestTeleBot (line 38) | class TestTeleBot: method test_message_listener (line 39) | def test_message_listener(self): method test_message_handler (line 50) | def test_message_handler(self): method test_message_handler_reg (line 62) | def test_message_handler_reg(self): method test_message_handler_lambda (line 75) | def test_message_handler_lambda(self): method test_message_handler_lambda_fail (line 88) | def test_message_handler_lambda_fail(self): method test_message_handler_reg_fail (line 101) | def test_message_handler_reg_fail(self): method test_send_message_with_markdown (line 114) | def test_send_message_with_markdown(self): method test_send_message_with_disable_notification (line 124) | def test_send_message_with_disable_notification(self): method test_send_file (line 134) | def test_send_file(self): method test_send_file_with_filename (line 143) | def test_send_file_with_filename(self): method test_send_file_dis_noti (line 154) | def test_send_file_dis_noti(self): method test_send_file_caption (line 163) | def test_send_file_caption(self): method test_send_video (line 172) | def test_send_video(self): method test_send_video_dis_noti (line 178) | def test_send_video_dis_noti(self): method test_send_video_more_params (line 184) | def test_send_video_more_params(self): method test_send_video_more_params_dis_noti (line 190) | def test_send_video_more_params_dis_noti(self): method test_send_file_exception (line 196) | def test_send_file_exception(self): method test_send_photo (line 205) | def test_send_photo(self): method test_send_photo_dis_noti (line 214) | def test_send_photo_dis_noti(self): method test_send_audio (line 223) | def test_send_audio(self): method test_send_audio_dis_noti (line 231) | def test_send_audio_dis_noti(self): method test_send_voice (line 240) | def test_send_voice(self): method test_send_voice_dis_noti (line 246) | def test_send_voice_dis_noti(self): method test_get_file (line 252) | def test_get_file(self): method test_get_file_dis_noti (line 260) | def test_get_file_dis_noti(self): method test_send_message (line 268) | def test_send_message(self): method test_send_dice (line 274) | def test_send_dice(self): method test_send_message_dis_noti (line 280) | def test_send_message_dis_noti(self): method test_send_message_with_markup (line 286) | def test_send_message_with_markup(self): method test_send_message_with_markup_use_string (line 295) | def test_send_message_with_markup_use_string(self): method test_send_message_with_inlinemarkup (line 306) | def test_send_message_with_inlinemarkup(self): method test_forward_message (line 315) | def test_forward_message(self): method test_copy_message (line 322) | def test_copy_message(self): method test_forward_message_dis_noti (line 329) | def test_forward_message_dis_noti(self): method test_reply_to (line 336) | def test_reply_to(self): method test_register_for_reply (line 343) | def test_register_for_reply(self): method test_send_location (line 356) | def test_send_location(self): method test_send_location_dis_noti (line 364) | def test_send_location_dis_noti(self): method test_send_venue (line 372) | def test_send_venue(self): method test_send_venue_dis_noti (line 380) | def test_send_venue_dis_noti(self): method test_Chat (line 387) | def test_Chat(self): method test_edit_message_text (line 394) | def test_edit_message_text(self): method test_edit_message_caption (line 400) | def test_edit_message_caption(self): method test_edit_message_media (line 407) | def test_edit_message_media(self): method test_get_chat (line 421) | def test_get_chat(self): method test_get_chat_administrators (line 426) | def test_get_chat_administrators(self): method test_get_chat_members_count (line 431) | def test_get_chat_members_count(self): method test_export_chat_invite_link (line 436) | def test_export_chat_invite_link(self): method test_create_revoke_detailed_chat_invite_link (line 441) | def test_create_revoke_detailed_chat_invite_link(self): method test_edit_markup (line 455) | def test_edit_markup(self): method test_antiflood (line 467) | def test_antiflood(self): method test_extract_entity (line 475) | def test_extract_entity(self): method create_text_message (line 523) | def create_text_message(text): method create_message_update (line 529) | def create_message_update(text): method test_is_string_unicode (line 559) | def test_is_string_unicode(self): method test_is_string_string (line 563) | def test_is_string_string(self): method test_not_string (line 567) | def test_not_string(self): method test_send_video_note (line 571) | def test_send_video_note(self): method test_send_media_group (line 577) | def test_send_media_group(self): method test_send_media_group_local_files (line 587) | def test_send_media_group_local_files(self): method test_send_photo_formating_caption (line 598) | def test_send_photo_formating_caption(self): method test_send_video_formatting_caption (line 604) | def test_send_video_formatting_caption(self): method test_send_audio_formatting_caption (line 610) | def test_send_audio_formatting_caption(self): method test_send_voice_formatting_caprion (line 616) | def test_send_voice_formatting_caprion(self): method test_send_media_group_formatting_caption (line 623) | def test_send_media_group_formatting_caption(self): method test_send_document_formating_caption (line 635) | def test_send_document_formating_caption(self): method test_chat_commands (line 641) | def test_chat_commands(self): method test_typed_middleware_handler (line 659) | def test_typed_middleware_handler(self): method test_default_middleware_handler (line 680) | def test_default_middleware_handler(self): method test_deprecated_dec (line 701) | def test_deprecated_dec(self): method test_chat_permissions (line 705) | def test_chat_permissions(self): method test_apply_html_entities (line 711) | def test_apply_html_entities(self): FILE: tests/test_types.py function test_json_user (line 8) | def test_json_user(): function test_json_message (line 18) | def test_json_message(): function test_json_message_with_reply_markup (line 24) | def test_json_message_with_reply_markup(): function test_json_InlineKeyboardMarkup (line 31) | def test_json_InlineKeyboardMarkup(): function test_json_InlineKeyboardButton (line 38) | def test_json_InlineKeyboardButton(): function test_json_message_with_dice (line 46) | def test_json_message_with_dice(): function test_json_message_group (line 55) | def test_json_message_group(): function test_json_GroupChat (line 63) | def test_json_GroupChat(): function test_json_Document (line 69) | def test_json_Document(): function test_json_Message_Audio (line 76) | def test_json_Message_Audio(): function test_json_Message_Sticker (line 85) | def test_json_Message_Sticker(): function test_json_Message_Sticker_without_thumbnail (line 93) | def test_json_Message_Sticker_without_thumbnail(): function test_json_Message_Document (line 101) | def test_json_Message_Document(): function test_json_Message_Photo (line 108) | def test_json_Message_Photo(): function test_json_Message_Video (line 115) | def test_json_Message_Video(): function test_json_Message_Location (line 124) | def test_json_Message_Location(): function test_json_UserProfilePhotos (line 131) | def test_json_UserProfilePhotos(): function test_json_contact (line 138) | def test_json_contact(): function test_json_voice (line 145) | def test_json_voice(): function test_json_update (line 152) | def test_json_update(): function test_json_chat (line 160) | def test_json_chat(): function test_InlineQueryResultCachedPhoto (line 170) | def test_InlineQueryResultCachedPhoto(): function test_InlineQueryResultCachedPhoto_with_title (line 178) | def test_InlineQueryResultCachedPhoto_with_title(): function test_InlineQueryResultCachedPhoto_with_markup (line 187) | def test_InlineQueryResultCachedPhoto_with_markup(): function test_json_poll_1 (line 200) | def test_json_poll_1(): function test_json_poll_answer (line 212) | def test_json_poll_answer(): function test_KeyboardButtonPollType (line 221) | def test_KeyboardButtonPollType(): function test_json_chat_invite_link (line 229) | def test_json_chat_invite_link(): function test_chat_member_updated (line 244) | def test_chat_member_updated(): function test_webhook_info (line 254) | def test_webhook_info(): function test_sent_web_app_message (line 268) | def test_sent_web_app_message(): function test_message_entity (line 274) | def test_message_entity(): function test_message_entity_date_time (line 318) | def test_message_entity_date_time(): function test_message_sender_tag (line 332) | def test_message_sender_tag(): function test_chat_member_member_tag (line 338) | def test_chat_member_member_tag(): function test_chat_member_restricted_tag_and_can_edit_tag (line 345) | def test_chat_member_restricted_tag_and_can_edit_tag(): function test_chat_member_administrator_can_manage_tags (line 353) | def test_chat_member_administrator_can_manage_tags(): function test_chat_permissions_can_edit_tag (line 360) | def test_chat_permissions_can_edit_tag(): function test_chat_administrator_rights_can_manage_tags (line 365) | def test_chat_administrator_rights_can_manage_tags():