├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── pypi_release.yml │ └── python.yml ├── .gitignore ├── COPYING ├── COPYING.lesser ├── Extras.md ├── MANIFEST.in ├── Makefile ├── NOTICE ├── README.md ├── Release.ps1 ├── compiler ├── __init__.py ├── api │ ├── __init__.py │ ├── compiler.py │ ├── source │ │ ├── auth_key.tl │ │ ├── main_api.tl │ │ └── sys_msgs.tl │ └── template │ │ ├── combinator.txt │ │ └── type.txt ├── docs │ ├── __init__.py │ ├── compiler.py │ └── template │ │ ├── bound-methods.rst │ │ ├── methods.rst │ │ ├── page.txt │ │ ├── toctree.txt │ │ └── types.rst └── errors │ ├── __init__.py │ ├── compiler.py │ ├── sort.py │ ├── source │ ├── 303_SEE_OTHER.tsv │ ├── 400_BAD_REQUEST.tsv │ ├── 401_UNAUTHORIZED.tsv │ ├── 403_FORBIDDEN.tsv │ ├── 406_NOT_ACCEPTABLE.tsv │ ├── 420_FLOOD.tsv │ ├── 500_INTERNAL_SERVER_ERROR.tsv │ └── 503_SERVICE_UNAVAILABLE.tsv │ └── template │ ├── class.txt │ └── sub_class.txt ├── dev-requirements.txt ├── pyrogram ├── __init__.py ├── client.py ├── connection │ ├── __init__.py │ ├── connection.py │ └── transport │ │ ├── __init__.py │ │ └── tcp │ │ ├── __init__.py │ │ ├── tcp.py │ │ ├── tcp_abridged.py │ │ ├── tcp_abridged_o.py │ │ ├── tcp_full.py │ │ ├── tcp_intermediate.py │ │ └── tcp_intermediate_o.py ├── crypto │ ├── __init__.py │ ├── aes.py │ ├── mtproto.py │ ├── prime.py │ └── rsa.py ├── dispatcher.py ├── emoji.py ├── enums │ ├── __init__.py │ ├── auto_name.py │ ├── business_schedule.py │ ├── chat_action.py │ ├── chat_event_action.py │ ├── chat_join_type.py │ ├── chat_member_status.py │ ├── chat_members_filter.py │ ├── chat_type.py │ ├── client_platform.py │ ├── folder_color.py │ ├── message_entity_type.py │ ├── message_media_type.py │ ├── message_service_type.py │ ├── messages_filter.py │ ├── next_code_type.py │ ├── parse_mode.py │ ├── phone_call_discard_reason.py │ ├── poll_type.py │ ├── privacy_key.py │ ├── profile_color.py │ ├── reply_color.py │ ├── sent_code_type.py │ ├── stories_privacy_rules.py │ └── user_status.py ├── errors │ ├── __init__.py │ └── rpc_error.py ├── file_id.py ├── filters.py ├── handlers │ ├── __init__.py │ ├── callback_query_handler.py │ ├── chat_boost_handler.py │ ├── chat_join_request_handler.py │ ├── chat_member_updated_handler.py │ ├── chosen_inline_result_handler.py │ ├── deleted_messages_handler.py │ ├── disconnect_handler.py │ ├── edited_message_handler.py │ ├── handler.py │ ├── inline_query_handler.py │ ├── message_handler.py │ ├── message_reaction_count_handler.py │ ├── message_reaction_handler.py │ ├── poll_handler.py │ ├── pre_checkout_query_handler.py │ ├── purchased_paid_media_handler.py │ ├── raw_update_handler.py │ ├── shipping_query_handler.py │ ├── story_handler.py │ └── user_status_handler.py ├── helpers │ ├── __init__.py │ └── helpers.py ├── methods │ ├── __init__.py │ ├── account │ │ ├── __init__.py │ │ ├── get_account_ttl.py │ │ ├── get_privacy.py │ │ ├── set_account_ttl.py │ │ └── set_privacy.py │ ├── advanced │ │ ├── __init__.py │ │ ├── invoke.py │ │ ├── resolve_peer.py │ │ └── save_file.py │ ├── auth │ │ ├── __init__.py │ │ ├── accept_terms_of_service.py │ │ ├── check_password.py │ │ ├── connect.py │ │ ├── disconnect.py │ │ ├── get_active_sessions.py │ │ ├── get_password_hint.py │ │ ├── initialize.py │ │ ├── log_out.py │ │ ├── recover_password.py │ │ ├── resend_code.py │ │ ├── reset_session.py │ │ ├── reset_sessions.py │ │ ├── send_code.py │ │ ├── send_recovery_code.py │ │ ├── sign_in.py │ │ ├── sign_in_bot.py │ │ ├── sign_up.py │ │ └── terminate.py │ ├── bots │ │ ├── __init__.py │ │ ├── answer_callback_query.py │ │ ├── answer_inline_query.py │ │ ├── answer_pre_checkout_query.py │ │ ├── answer_shipping_query.py │ │ ├── answer_web_app_query.py │ │ ├── create_invoice_link.py │ │ ├── delete_bot_commands.py │ │ ├── get_bot_commands.py │ │ ├── get_bot_default_privileges.py │ │ ├── get_bot_info_description.py │ │ ├── get_bot_info_short_description.py │ │ ├── get_bot_name.py │ │ ├── get_chat_menu_button.py │ │ ├── get_game_high_scores.py │ │ ├── get_inline_bot_results.py │ │ ├── refund_star_payment.py │ │ ├── request_callback_answer.py │ │ ├── send_game.py │ │ ├── send_inline_bot_result.py │ │ ├── send_invoice.py │ │ ├── set_bot_commands.py │ │ ├── set_bot_default_privileges.py │ │ ├── set_bot_info_description.py │ │ ├── set_bot_info_short_description.py │ │ ├── set_bot_name.py │ │ ├── set_chat_menu_button.py │ │ └── set_game_score.py │ ├── business │ │ ├── __init__.py │ │ └── get_business_connection.py │ ├── chats │ │ ├── __init__.py │ │ ├── add_chat_members.py │ │ ├── archive_chats.py │ │ ├── ban_chat_member.py │ │ ├── close_forum_topic.py │ │ ├── create_channel.py │ │ ├── create_forum_topic.py │ │ ├── create_group.py │ │ ├── create_supergroup.py │ │ ├── delete_channel.py │ │ ├── delete_chat_photo.py │ │ ├── delete_folder.py │ │ ├── delete_forum_topic.py │ │ ├── delete_supergroup.py │ │ ├── delete_user_history.py │ │ ├── edit_forum_topic.py │ │ ├── export_folder_link.py │ │ ├── get_chat.py │ │ ├── get_chat_event_log.py │ │ ├── get_chat_member.py │ │ ├── get_chat_members.py │ │ ├── get_chat_members_count.py │ │ ├── get_chat_online_count.py │ │ ├── get_dialogs.py │ │ ├── get_dialogs_count.py │ │ ├── get_folders.py │ │ ├── get_forum_topics.py │ │ ├── get_forum_topics_by_id.py │ │ ├── get_nearby_chats.py │ │ ├── get_personal_channels.py │ │ ├── get_send_as_chats.py │ │ ├── get_similar_channels.py │ │ ├── join_chat.py │ │ ├── join_folder.py │ │ ├── leave_chat.py │ │ ├── leave_folder.py │ │ ├── mark_chat_unread.py │ │ ├── pin_chat_message.py │ │ ├── pin_forum_topic.py │ │ ├── promote_chat_member.py │ │ ├── restrict_chat_member.py │ │ ├── set_administrator_title.py │ │ ├── set_chat_description.py │ │ ├── set_chat_permissions.py │ │ ├── set_chat_photo.py │ │ ├── set_chat_protected_content.py │ │ ├── set_chat_title.py │ │ ├── set_chat_ttl.py │ │ ├── set_chat_username.py │ │ ├── set_send_as_chat.py │ │ ├── set_slow_mode.py │ │ ├── toggle_folder_tags.py │ │ ├── toggle_forum_topics.py │ │ ├── toggle_join_to_send.py │ │ ├── unarchive_chats.py │ │ ├── unban_chat_member.py │ │ ├── unpin_all_chat_messages.py │ │ ├── unpin_chat_message.py │ │ ├── unpin_forum_topic.py │ │ ├── update_chat_notifications.py │ │ ├── update_color.py │ │ └── update_folder.py │ ├── contacts │ │ ├── __init__.py │ │ ├── add_contact.py │ │ ├── delete_contacts.py │ │ ├── get_contacts.py │ │ ├── get_contacts_count.py │ │ ├── import_contacts.py │ │ └── search_contacts.py │ ├── decorators │ │ ├── __init__.py │ │ ├── on_callback_query.py │ │ ├── on_chat_boost.py │ │ ├── on_chat_join_request.py │ │ ├── on_chat_member_updated.py │ │ ├── on_chosen_inline_result.py │ │ ├── on_deleted_messages.py │ │ ├── on_disconnect.py │ │ ├── on_edited_message.py │ │ ├── on_inline_query.py │ │ ├── on_message.py │ │ ├── on_message_reaction.py │ │ ├── on_message_reaction_count.py │ │ ├── on_poll.py │ │ ├── on_pre_checkout_query.py │ │ ├── on_purchased_paid_media.py │ │ ├── on_raw_update.py │ │ ├── on_shipping_query.py │ │ ├── on_story.py │ │ └── on_user_status.py │ ├── invite_links │ │ ├── __init__.py │ │ ├── approve_all_chat_join_requests.py │ │ ├── approve_chat_join_request.py │ │ ├── create_chat_invite_link.py │ │ ├── decline_all_chat_join_requests.py │ │ ├── decline_chat_join_request.py │ │ ├── delete_chat_admin_invite_links.py │ │ ├── delete_chat_invite_link.py │ │ ├── edit_chat_invite_link.py │ │ ├── export_chat_invite_link.py │ │ ├── get_chat_admin_invite_links.py │ │ ├── get_chat_admin_invite_links_count.py │ │ ├── get_chat_admins_with_invite_links.py │ │ ├── get_chat_invite_link.py │ │ ├── get_chat_invite_link_joiners.py │ │ ├── get_chat_invite_link_joiners_count.py │ │ ├── get_chat_join_requests.py │ │ └── revoke_chat_invite_link.py │ ├── messages │ │ ├── __init__.py │ │ ├── business_session.py │ │ ├── copy_media_group.py │ │ ├── copy_message.py │ │ ├── delete_chat_history.py │ │ ├── delete_messages.py │ │ ├── download_media.py │ │ ├── edit_inline_caption.py │ │ ├── edit_inline_media.py │ │ ├── edit_inline_reply_markup.py │ │ ├── edit_inline_text.py │ │ ├── edit_message_caption.py │ │ ├── edit_message_media.py │ │ ├── edit_message_reply_markup.py │ │ ├── edit_message_text.py │ │ ├── forward_media_group.py │ │ ├── forward_messages.py │ │ ├── get_available_effects.py │ │ ├── get_chat_history.py │ │ ├── get_chat_history_count.py │ │ ├── get_custom_emoji_stickers.py │ │ ├── get_discussion_message.py │ │ ├── get_discussion_replies.py │ │ ├── get_discussion_replies_count.py │ │ ├── get_history.py │ │ ├── get_media_group.py │ │ ├── get_message_by_link.py │ │ ├── get_messages.py │ │ ├── get_scheduled_messages.py │ │ ├── get_stickers.py │ │ ├── inline_session.py │ │ ├── read_chat_history.py │ │ ├── read_mentions.py │ │ ├── read_reactions.py │ │ ├── retract_vote.py │ │ ├── search_global.py │ │ ├── search_global_count.py │ │ ├── search_messages.py │ │ ├── search_messages_count.py │ │ ├── search_posts.py │ │ ├── search_posts_count.py │ │ ├── send_animation.py │ │ ├── send_audio.py │ │ ├── send_cached_media.py │ │ ├── send_chat_action.py │ │ ├── send_contact.py │ │ ├── send_dice.py │ │ ├── send_document.py │ │ ├── send_location.py │ │ ├── send_media_group.py │ │ ├── send_message.py │ │ ├── send_paid_media.py │ │ ├── send_paid_reaction.py │ │ ├── send_photo.py │ │ ├── send_poll.py │ │ ├── send_reaction.py │ │ ├── send_sticker.py │ │ ├── send_venue.py │ │ ├── send_video.py │ │ ├── send_video_note.py │ │ ├── send_voice.py │ │ ├── send_web_page.py │ │ ├── start_bot.py │ │ ├── stop_poll.py │ │ ├── stream_media.py │ │ ├── view_messages.py │ │ ├── vote_poll.py │ │ ├── wait_for_callback_query.py │ │ └── wait_for_message.py │ ├── password │ │ ├── __init__.py │ │ ├── change_cloud_password.py │ │ ├── enable_cloud_password.py │ │ └── remove_cloud_password.py │ ├── payments │ │ ├── __init__.py │ │ ├── apply_gift_code.py │ │ ├── check_gift_code.py │ │ ├── check_giftcode.py │ │ ├── convert_star_gift.py │ │ ├── get_payment_form.py │ │ ├── get_star_gifts.py │ │ ├── get_user_star_gifts.py │ │ ├── get_user_star_gifts_count.py │ │ ├── hide_star_gift.py │ │ ├── send_payment_form.py │ │ ├── send_star_gift.py │ │ └── show_star_gift.py │ ├── phone │ │ ├── __init__.py │ │ └── get_call_members.py │ ├── premium │ │ ├── __init__.py │ │ ├── apply_boost.py │ │ ├── get_boosts.py │ │ └── get_boosts_status.py │ ├── stories │ │ ├── __init__.py │ │ ├── can_post_stories.py │ │ ├── can_send_story.py │ │ ├── copy_story.py │ │ ├── delete_stories.py │ │ ├── edit_story_caption.py │ │ ├── edit_story_media.py │ │ ├── edit_story_privacy.py │ │ ├── export_story_link.py │ │ ├── forward_story.py │ │ ├── get_all_stories.py │ │ ├── get_archived_stories.py │ │ ├── get_chat_stories.py │ │ ├── get_pinned_stories.py │ │ ├── get_stories.py │ │ ├── get_stories_archive.py │ │ ├── hide_chat_stories.py │ │ ├── hide_stories.py │ │ ├── increment_story_views.py │ │ ├── pin_chat_stories.py │ │ ├── pin_stories.py │ │ ├── read_chat_stories.py │ │ ├── read_stories.py │ │ ├── send_story.py │ │ ├── show_chat_stories.py │ │ ├── unpin_chat_stories.py │ │ └── view_stories.py │ ├── users │ │ ├── __init__.py │ │ ├── block_user.py │ │ ├── check_username.py │ │ ├── delete_profile_photos.py │ │ ├── get_chat_photos.py │ │ ├── get_chat_photos_count.py │ │ ├── get_common_chats.py │ │ ├── get_default_emoji_statuses.py │ │ ├── get_me.py │ │ ├── get_users.py │ │ ├── set_emoji_status.py │ │ ├── set_personal_channel.py │ │ ├── set_profile_photo.py │ │ ├── set_username.py │ │ ├── unblock_user.py │ │ ├── update_birthday.py │ │ ├── update_personal_channel.py │ │ ├── update_profile.py │ │ └── update_status.py │ └── utilities │ │ ├── __init__.py │ │ ├── add_handler.py │ │ ├── compose.py │ │ ├── export_session_string.py │ │ ├── idle.py │ │ ├── remove_handler.py │ │ ├── restart.py │ │ ├── run.py │ │ ├── start.py │ │ ├── stop.py │ │ └── stop_transmission.py ├── mime_types.py ├── nav │ ├── __init__.py │ └── pagination.py ├── parser │ ├── __init__.py │ ├── html.py │ ├── markdown.py │ ├── parser.py │ └── utils.py ├── py.typed ├── raw │ ├── __init__.py │ └── core │ │ ├── __init__.py │ │ ├── future_salt.py │ │ ├── future_salts.py │ │ ├── gzip_packed.py │ │ ├── list.py │ │ ├── message.py │ │ ├── msg_container.py │ │ ├── primitives │ │ ├── __init__.py │ │ ├── bool.py │ │ ├── bytes.py │ │ ├── double.py │ │ ├── int.py │ │ ├── string.py │ │ └── vector.py │ │ └── tl_object.py ├── session │ ├── __init__.py │ ├── auth.py │ ├── internals │ │ ├── __init__.py │ │ ├── data_center.py │ │ ├── msg_factory.py │ │ ├── msg_id.py │ │ └── seq_no.py │ └── session.py ├── storage │ ├── __init__.py │ ├── file_storage.py │ ├── memory_storage.py │ ├── sqlite_storage.py │ └── storage.py ├── sync.py ├── types │ ├── __init__.py │ ├── authorization │ │ ├── __init__.py │ │ ├── active_session.py │ │ ├── active_sessions.py │ │ ├── sent_code.py │ │ └── terms_of_service.py │ ├── bots_and_keyboards │ │ ├── __init__.py │ │ ├── bot_command.py │ │ ├── bot_command_scope.py │ │ ├── bot_command_scope_all_chat_administrators.py │ │ ├── bot_command_scope_all_group_chats.py │ │ ├── bot_command_scope_all_private_chats.py │ │ ├── bot_command_scope_chat.py │ │ ├── bot_command_scope_chat_administrators.py │ │ ├── bot_command_scope_chat_member.py │ │ ├── bot_command_scope_default.py │ │ ├── callback_game.py │ │ ├── callback_query.py │ │ ├── chat_boost_updated.py │ │ ├── force_reply.py │ │ ├── game_high_score.py │ │ ├── inline_keyboard_button.py │ │ ├── inline_keyboard_markup.py │ │ ├── keyboard_button.py │ │ ├── labeled_price.py │ │ ├── login_url.py │ │ ├── menu_button.py │ │ ├── menu_button_commands.py │ │ ├── menu_button_default.py │ │ ├── menu_button_web_app.py │ │ ├── message_reaction_count_updated.py │ │ ├── message_reaction_updated.py │ │ ├── order_info.py │ │ ├── pre_checkout_query.py │ │ ├── purchased_paid_media.py │ │ ├── reply_keyboard_markup.py │ │ ├── reply_keyboard_remove.py │ │ ├── request_channel_info.py │ │ ├── request_chat_info.py │ │ ├── request_poll_info.py │ │ ├── request_user_info.py │ │ ├── requested_chats.py │ │ ├── sent_web_app_message.py │ │ ├── shipping_address.py │ │ ├── shipping_option.py │ │ ├── shipping_query.py │ │ ├── successful_payment.py │ │ └── web_app_info.py │ ├── inline_mode │ │ ├── __init__.py │ │ ├── chosen_inline_result.py │ │ ├── inline_query.py │ │ ├── inline_query_result.py │ │ ├── inline_query_result_animation.py │ │ ├── inline_query_result_article.py │ │ ├── inline_query_result_audio.py │ │ ├── inline_query_result_cached_animation.py │ │ ├── inline_query_result_cached_audio.py │ │ ├── inline_query_result_cached_document.py │ │ ├── inline_query_result_cached_photo.py │ │ ├── inline_query_result_cached_sticker.py │ │ ├── inline_query_result_cached_video.py │ │ ├── inline_query_result_cached_voice.py │ │ ├── inline_query_result_contact.py │ │ ├── inline_query_result_document.py │ │ ├── inline_query_result_location.py │ │ ├── inline_query_result_photo.py │ │ ├── inline_query_result_venue.py │ │ ├── inline_query_result_video.py │ │ └── inline_query_result_voice.py │ ├── input_media │ │ ├── __init__.py │ │ ├── input_media.py │ │ ├── input_media_animation.py │ │ ├── input_media_audio.py │ │ ├── input_media_document.py │ │ ├── input_media_photo.py │ │ ├── input_media_video.py │ │ └── input_phone_contact.py │ ├── input_message_content │ │ ├── __init__.py │ │ ├── input_message_content.py │ │ ├── input_reply_to_message.py │ │ ├── input_reply_to_story.py │ │ └── input_text_message_content.py │ ├── input_privacy_rule │ │ ├── __init__.py │ │ ├── input_privacy_rule.py │ │ ├── input_privacy_rule_allow_all.py │ │ ├── input_privacy_rule_allow_chats.py │ │ ├── input_privacy_rule_allow_contacts.py │ │ ├── input_privacy_rule_allow_premium.py │ │ ├── input_privacy_rule_allow_users.py │ │ ├── input_privacy_rule_disallow_all.py │ │ ├── input_privacy_rule_disallow_chats.py │ │ ├── input_privacy_rule_disallow_contacts.py │ │ └── input_privacy_rule_disallow_users.py │ ├── list.py │ ├── messages_and_media │ │ ├── __init__.py │ │ ├── animation.py │ │ ├── audio.py │ │ ├── auto_name.py │ │ ├── available_effect.py │ │ ├── boosts_status.py │ │ ├── business_message.py │ │ ├── chat_action.py │ │ ├── chat_boost.py │ │ ├── chat_event_action.py │ │ ├── chat_member_status.py │ │ ├── chat_members_filter.py │ │ ├── chat_type.py │ │ ├── checked_gift_code.py │ │ ├── contact.py │ │ ├── contact_registered.py │ │ ├── dice.py │ │ ├── document.py │ │ ├── forum_topic.py │ │ ├── forum_topic_closed.py │ │ ├── forum_topic_created.py │ │ ├── forum_topic_edited.py │ │ ├── forum_topic_reopened.py │ │ ├── game.py │ │ ├── general_forum_topic_hidden.py │ │ ├── general_forum_topic_unhidden.py │ │ ├── gift_code.py │ │ ├── giveaway.py │ │ ├── giveaway_completed.py │ │ ├── giveaway_created.py │ │ ├── giveaway_result.py │ │ ├── giveaway_winners.py │ │ ├── invoice.py │ │ ├── location.py │ │ ├── message.py │ │ ├── message_entity.py │ │ ├── message_entity_type.py │ │ ├── message_media_type.py │ │ ├── message_reactions.py │ │ ├── message_service_type.py │ │ ├── message_story.py │ │ ├── messages_filter.py │ │ ├── my_boost.py │ │ ├── next_code_type.py │ │ ├── paid_media_info.py │ │ ├── paid_media_preview.py │ │ ├── parse_mode.py │ │ ├── payment_form.py │ │ ├── photo.py │ │ ├── poll.py │ │ ├── poll_option.py │ │ ├── poll_type.py │ │ ├── reaction.py │ │ ├── refunded_payment.py │ │ ├── screenshot_taken.py │ │ ├── sent_code_type.py │ │ ├── star_gift.py │ │ ├── sticker.py │ │ ├── story.py │ │ ├── stripped_thumbnail.py │ │ ├── successful_payment.py │ │ ├── thumbnail.py │ │ ├── user_status.py │ │ ├── venue.py │ │ ├── video.py │ │ ├── video_note.py │ │ ├── voice.py │ │ ├── web_app_data.py │ │ ├── web_page.py │ │ └── write_access_allowed.py │ ├── object.py │ ├── update.py │ └── user_and_chats │ │ ├── __init__.py │ │ ├── birthday.py │ │ ├── business_connection.py │ │ ├── business_info.py │ │ ├── business_intro.py │ │ ├── business_message.py │ │ ├── business_recipients.py │ │ ├── business_weekly_open.py │ │ ├── business_working_hours.py │ │ ├── chat.py │ │ ├── chat_admin_with_invite_links.py │ │ ├── chat_color.py │ │ ├── chat_event.py │ │ ├── chat_event_filter.py │ │ ├── chat_invite_link.py │ │ ├── chat_join_request.py │ │ ├── chat_joiner.py │ │ ├── chat_member.py │ │ ├── chat_member_updated.py │ │ ├── chat_permissions.py │ │ ├── chat_photo.py │ │ ├── chat_privileges.py │ │ ├── chat_reactions.py │ │ ├── dialog.py │ │ ├── emoji_status.py │ │ ├── folder.py │ │ ├── found_contacts.py │ │ ├── group_call_member.py │ │ ├── invite_link_importer.py │ │ ├── phone_call_ended.py │ │ ├── phone_call_started.py │ │ ├── privacy_rule.py │ │ ├── restriction.py │ │ ├── user.py │ │ ├── username.py │ │ ├── video_chat_ended.py │ │ ├── video_chat_members_invited.py │ │ ├── video_chat_scheduled.py │ │ └── video_chat_started.py └── utils.py ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── filters │ ├── __init__.py │ └── test_command.py ├── parser │ ├── __init__.py │ ├── test_html.py │ └── test_markdown.py └── test_file_id.py └── tox.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/pypi_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/.github/workflows/pypi_release.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.lesser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/COPYING.lesser -------------------------------------------------------------------------------- /Extras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/Extras.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/README.md -------------------------------------------------------------------------------- /Release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/Release.ps1 -------------------------------------------------------------------------------- /compiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/__init__.py -------------------------------------------------------------------------------- /compiler/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/api/__init__.py -------------------------------------------------------------------------------- /compiler/api/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/api/compiler.py -------------------------------------------------------------------------------- /compiler/api/source/auth_key.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/api/source/auth_key.tl -------------------------------------------------------------------------------- /compiler/api/source/main_api.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/api/source/main_api.tl -------------------------------------------------------------------------------- /compiler/api/source/sys_msgs.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/api/source/sys_msgs.tl -------------------------------------------------------------------------------- /compiler/api/template/combinator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/api/template/combinator.txt -------------------------------------------------------------------------------- /compiler/api/template/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/api/template/type.txt -------------------------------------------------------------------------------- /compiler/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/docs/__init__.py -------------------------------------------------------------------------------- /compiler/docs/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/docs/compiler.py -------------------------------------------------------------------------------- /compiler/docs/template/bound-methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/docs/template/bound-methods.rst -------------------------------------------------------------------------------- /compiler/docs/template/methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/docs/template/methods.rst -------------------------------------------------------------------------------- /compiler/docs/template/page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/docs/template/page.txt -------------------------------------------------------------------------------- /compiler/docs/template/toctree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/docs/template/toctree.txt -------------------------------------------------------------------------------- /compiler/docs/template/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/docs/template/types.rst -------------------------------------------------------------------------------- /compiler/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/__init__.py -------------------------------------------------------------------------------- /compiler/errors/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/compiler.py -------------------------------------------------------------------------------- /compiler/errors/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/sort.py -------------------------------------------------------------------------------- /compiler/errors/source/303_SEE_OTHER.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/source/303_SEE_OTHER.tsv -------------------------------------------------------------------------------- /compiler/errors/source/400_BAD_REQUEST.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/source/400_BAD_REQUEST.tsv -------------------------------------------------------------------------------- /compiler/errors/source/401_UNAUTHORIZED.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/source/401_UNAUTHORIZED.tsv -------------------------------------------------------------------------------- /compiler/errors/source/403_FORBIDDEN.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/source/403_FORBIDDEN.tsv -------------------------------------------------------------------------------- /compiler/errors/source/406_NOT_ACCEPTABLE.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/source/406_NOT_ACCEPTABLE.tsv -------------------------------------------------------------------------------- /compiler/errors/source/420_FLOOD.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/source/420_FLOOD.tsv -------------------------------------------------------------------------------- /compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv -------------------------------------------------------------------------------- /compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv -------------------------------------------------------------------------------- /compiler/errors/template/class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/template/class.txt -------------------------------------------------------------------------------- /compiler/errors/template/sub_class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/compiler/errors/template/sub_class.txt -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /pyrogram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/__init__.py -------------------------------------------------------------------------------- /pyrogram/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/client.py -------------------------------------------------------------------------------- /pyrogram/connection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/connection/__init__.py -------------------------------------------------------------------------------- /pyrogram/connection/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/connection/connection.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/connection/transport/__init__.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/connection/transport/tcp/__init__.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/connection/transport/tcp/tcp.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/tcp_abridged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/connection/transport/tcp/tcp_abridged.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/tcp_abridged_o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/connection/transport/tcp/tcp_abridged_o.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/tcp_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/connection/transport/tcp/tcp_full.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/tcp_intermediate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/connection/transport/tcp/tcp_intermediate.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/tcp_intermediate_o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/connection/transport/tcp/tcp_intermediate_o.py -------------------------------------------------------------------------------- /pyrogram/crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/crypto/__init__.py -------------------------------------------------------------------------------- /pyrogram/crypto/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/crypto/aes.py -------------------------------------------------------------------------------- /pyrogram/crypto/mtproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/crypto/mtproto.py -------------------------------------------------------------------------------- /pyrogram/crypto/prime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/crypto/prime.py -------------------------------------------------------------------------------- /pyrogram/crypto/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/crypto/rsa.py -------------------------------------------------------------------------------- /pyrogram/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/dispatcher.py -------------------------------------------------------------------------------- /pyrogram/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/emoji.py -------------------------------------------------------------------------------- /pyrogram/enums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/__init__.py -------------------------------------------------------------------------------- /pyrogram/enums/auto_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/auto_name.py -------------------------------------------------------------------------------- /pyrogram/enums/business_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/business_schedule.py -------------------------------------------------------------------------------- /pyrogram/enums/chat_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/chat_action.py -------------------------------------------------------------------------------- /pyrogram/enums/chat_event_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/chat_event_action.py -------------------------------------------------------------------------------- /pyrogram/enums/chat_join_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/chat_join_type.py -------------------------------------------------------------------------------- /pyrogram/enums/chat_member_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/chat_member_status.py -------------------------------------------------------------------------------- /pyrogram/enums/chat_members_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/chat_members_filter.py -------------------------------------------------------------------------------- /pyrogram/enums/chat_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/chat_type.py -------------------------------------------------------------------------------- /pyrogram/enums/client_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/client_platform.py -------------------------------------------------------------------------------- /pyrogram/enums/folder_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/folder_color.py -------------------------------------------------------------------------------- /pyrogram/enums/message_entity_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/message_entity_type.py -------------------------------------------------------------------------------- /pyrogram/enums/message_media_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/message_media_type.py -------------------------------------------------------------------------------- /pyrogram/enums/message_service_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/message_service_type.py -------------------------------------------------------------------------------- /pyrogram/enums/messages_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/messages_filter.py -------------------------------------------------------------------------------- /pyrogram/enums/next_code_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/next_code_type.py -------------------------------------------------------------------------------- /pyrogram/enums/parse_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/parse_mode.py -------------------------------------------------------------------------------- /pyrogram/enums/phone_call_discard_reason.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/phone_call_discard_reason.py -------------------------------------------------------------------------------- /pyrogram/enums/poll_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/poll_type.py -------------------------------------------------------------------------------- /pyrogram/enums/privacy_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/privacy_key.py -------------------------------------------------------------------------------- /pyrogram/enums/profile_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/profile_color.py -------------------------------------------------------------------------------- /pyrogram/enums/reply_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/reply_color.py -------------------------------------------------------------------------------- /pyrogram/enums/sent_code_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/sent_code_type.py -------------------------------------------------------------------------------- /pyrogram/enums/stories_privacy_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/stories_privacy_rules.py -------------------------------------------------------------------------------- /pyrogram/enums/user_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/enums/user_status.py -------------------------------------------------------------------------------- /pyrogram/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/errors/__init__.py -------------------------------------------------------------------------------- /pyrogram/errors/rpc_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/errors/rpc_error.py -------------------------------------------------------------------------------- /pyrogram/file_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/file_id.py -------------------------------------------------------------------------------- /pyrogram/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/filters.py -------------------------------------------------------------------------------- /pyrogram/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/__init__.py -------------------------------------------------------------------------------- /pyrogram/handlers/callback_query_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/callback_query_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/chat_boost_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/chat_boost_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/chat_join_request_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/chat_join_request_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/chat_member_updated_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/chat_member_updated_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/chosen_inline_result_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/chosen_inline_result_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/deleted_messages_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/deleted_messages_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/disconnect_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/disconnect_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/edited_message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/edited_message_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/inline_query_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/inline_query_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/message_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/message_reaction_count_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/message_reaction_count_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/message_reaction_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/message_reaction_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/poll_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/poll_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/pre_checkout_query_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/pre_checkout_query_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/purchased_paid_media_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/purchased_paid_media_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/raw_update_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/raw_update_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/shipping_query_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/shipping_query_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/story_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/story_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/user_status_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/handlers/user_status_handler.py -------------------------------------------------------------------------------- /pyrogram/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/helpers/__init__.py -------------------------------------------------------------------------------- /pyrogram/helpers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/helpers/helpers.py -------------------------------------------------------------------------------- /pyrogram/methods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/account/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/account/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/account/get_account_ttl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/account/get_account_ttl.py -------------------------------------------------------------------------------- /pyrogram/methods/account/get_privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/account/get_privacy.py -------------------------------------------------------------------------------- /pyrogram/methods/account/set_account_ttl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/account/set_account_ttl.py -------------------------------------------------------------------------------- /pyrogram/methods/account/set_privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/account/set_privacy.py -------------------------------------------------------------------------------- /pyrogram/methods/advanced/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/advanced/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/advanced/invoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/advanced/invoke.py -------------------------------------------------------------------------------- /pyrogram/methods/advanced/resolve_peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/advanced/resolve_peer.py -------------------------------------------------------------------------------- /pyrogram/methods/advanced/save_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/advanced/save_file.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/accept_terms_of_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/accept_terms_of_service.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/check_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/check_password.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/connect.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/disconnect.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/get_active_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/get_active_sessions.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/get_password_hint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/get_password_hint.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/initialize.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/log_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/log_out.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/recover_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/recover_password.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/resend_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/resend_code.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/reset_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/reset_session.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/reset_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/reset_sessions.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/send_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/send_code.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/send_recovery_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/send_recovery_code.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/sign_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/sign_in.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/sign_in_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/sign_in_bot.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/sign_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/sign_up.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/terminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/auth/terminate.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/answer_callback_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/answer_callback_query.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/answer_inline_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/answer_inline_query.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/answer_pre_checkout_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/answer_pre_checkout_query.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/answer_shipping_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/answer_shipping_query.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/answer_web_app_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/answer_web_app_query.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/create_invoice_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/create_invoice_link.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/delete_bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/delete_bot_commands.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/get_bot_commands.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_bot_default_privileges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/get_bot_default_privileges.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_bot_info_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/get_bot_info_description.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_bot_info_short_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/get_bot_info_short_description.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_bot_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/get_bot_name.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_chat_menu_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/get_chat_menu_button.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_game_high_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/get_game_high_scores.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_inline_bot_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/get_inline_bot_results.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/refund_star_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/refund_star_payment.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/request_callback_answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/request_callback_answer.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/send_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/send_game.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/send_inline_bot_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/send_inline_bot_result.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/send_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/send_invoice.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/set_bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/set_bot_commands.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/set_bot_default_privileges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/set_bot_default_privileges.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/set_bot_info_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/set_bot_info_description.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/set_bot_info_short_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/set_bot_info_short_description.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/set_bot_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/set_bot_name.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/set_chat_menu_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/set_chat_menu_button.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/set_game_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/bots/set_game_score.py -------------------------------------------------------------------------------- /pyrogram/methods/business/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/business/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/business/get_business_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/business/get_business_connection.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/add_chat_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/add_chat_members.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/archive_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/archive_chats.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/ban_chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/ban_chat_member.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/close_forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/close_forum_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/create_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/create_channel.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/create_forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/create_forum_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/create_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/create_group.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/create_supergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/create_supergroup.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/delete_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/delete_channel.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/delete_chat_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/delete_chat_photo.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/delete_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/delete_folder.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/delete_forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/delete_forum_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/delete_supergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/delete_supergroup.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/delete_user_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/delete_user_history.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/edit_forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/edit_forum_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/export_folder_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/export_folder_link.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_chat.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_chat_event_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_chat_event_log.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_chat_member.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_chat_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_chat_members.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_chat_members_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_chat_members_count.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_chat_online_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_chat_online_count.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_dialogs.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_dialogs_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_dialogs_count.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_folders.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_forum_topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_forum_topics.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_forum_topics_by_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_forum_topics_by_id.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_nearby_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_nearby_chats.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_personal_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_personal_channels.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_send_as_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_send_as_chats.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_similar_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/get_similar_channels.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/join_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/join_chat.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/join_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/join_folder.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/leave_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/leave_chat.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/leave_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/leave_folder.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/mark_chat_unread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/mark_chat_unread.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/pin_chat_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/pin_chat_message.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/pin_forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/pin_forum_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/promote_chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/promote_chat_member.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/restrict_chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/restrict_chat_member.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_administrator_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/set_administrator_title.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/set_chat_description.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/set_chat_permissions.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/set_chat_photo.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_protected_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/set_chat_protected_content.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/set_chat_title.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_ttl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/set_chat_ttl.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/set_chat_username.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_send_as_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/set_send_as_chat.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_slow_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/set_slow_mode.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/toggle_folder_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/toggle_folder_tags.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/toggle_forum_topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/toggle_forum_topics.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/toggle_join_to_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/toggle_join_to_send.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/unarchive_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/unarchive_chats.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/unban_chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/unban_chat_member.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/unpin_all_chat_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/unpin_all_chat_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/unpin_chat_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/unpin_chat_message.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/unpin_forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/unpin_forum_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/update_chat_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/update_chat_notifications.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/update_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/update_color.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/update_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/chats/update_folder.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/contacts/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/add_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/contacts/add_contact.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/delete_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/contacts/delete_contacts.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/get_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/contacts/get_contacts.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/get_contacts_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/contacts/get_contacts_count.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/import_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/contacts/import_contacts.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/search_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/contacts/search_contacts.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_callback_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_callback_query.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_chat_boost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_chat_boost.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_chat_join_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_chat_join_request.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_chat_member_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_chat_member_updated.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_chosen_inline_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_chosen_inline_result.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_deleted_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_deleted_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_disconnect.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_edited_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_edited_message.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_inline_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_inline_query.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_message.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_message_reaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_message_reaction.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_message_reaction_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_message_reaction_count.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_poll.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_pre_checkout_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_pre_checkout_query.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_purchased_paid_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_purchased_paid_media.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_raw_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_raw_update.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_shipping_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_shipping_query.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_story.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_user_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/decorators/on_user_status.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/approve_all_chat_join_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/approve_all_chat_join_requests.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/approve_chat_join_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/approve_chat_join_request.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/create_chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/create_chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/decline_all_chat_join_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/decline_all_chat_join_requests.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/decline_chat_join_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/decline_chat_join_request.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/delete_chat_admin_invite_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/delete_chat_admin_invite_links.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/delete_chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/delete_chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/edit_chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/edit_chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/export_chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/export_chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/get_chat_admin_invite_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/get_chat_admin_invite_links.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/get_chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/get_chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/get_chat_invite_link_joiners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/get_chat_invite_link_joiners.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/get_chat_join_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/get_chat_join_requests.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/revoke_chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/invite_links/revoke_chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/business_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/business_session.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/copy_media_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/copy_media_group.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/copy_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/copy_message.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/delete_chat_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/delete_chat_history.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/delete_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/delete_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/download_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/download_media.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_inline_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/edit_inline_caption.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_inline_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/edit_inline_media.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_inline_reply_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/edit_inline_reply_markup.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_inline_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/edit_inline_text.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_message_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/edit_message_caption.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_message_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/edit_message_media.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_message_reply_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/edit_message_reply_markup.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_message_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/edit_message_text.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/forward_media_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/forward_media_group.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/forward_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/forward_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_available_effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_available_effects.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_chat_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_chat_history.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_chat_history_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_chat_history_count.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_custom_emoji_stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_custom_emoji_stickers.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_discussion_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_discussion_message.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_discussion_replies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_discussion_replies.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_discussion_replies_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_discussion_replies_count.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_history.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_media_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_media_group.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_message_by_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_message_by_link.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_scheduled_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_scheduled_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/get_stickers.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/inline_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/inline_session.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/read_chat_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/read_chat_history.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/read_mentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/read_mentions.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/read_reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/read_reactions.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/retract_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/retract_vote.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/search_global.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_global_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/search_global_count.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/search_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_messages_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/search_messages_count.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/search_posts.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_posts_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/search_posts_count.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_animation.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_audio.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_cached_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_cached_media.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_chat_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_chat_action.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_contact.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_dice.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_document.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_location.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_media_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_media_group.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_message.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_paid_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_paid_media.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_paid_reaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_paid_reaction.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_photo.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_poll.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_reaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_reaction.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_sticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_sticker.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_venue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_venue.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_video.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_video_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_video_note.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_voice.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_web_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/send_web_page.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/start_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/start_bot.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/stop_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/stop_poll.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/stream_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/stream_media.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/view_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/view_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/vote_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/vote_poll.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/wait_for_callback_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/wait_for_callback_query.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/wait_for_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/messages/wait_for_message.py -------------------------------------------------------------------------------- /pyrogram/methods/password/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/password/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/password/change_cloud_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/password/change_cloud_password.py -------------------------------------------------------------------------------- /pyrogram/methods/password/enable_cloud_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/password/enable_cloud_password.py -------------------------------------------------------------------------------- /pyrogram/methods/password/remove_cloud_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/password/remove_cloud_password.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/apply_gift_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/apply_gift_code.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/check_gift_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/check_gift_code.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/check_giftcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/check_giftcode.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/convert_star_gift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/convert_star_gift.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/get_payment_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/get_payment_form.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/get_star_gifts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/get_star_gifts.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/get_user_star_gifts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/get_user_star_gifts.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/get_user_star_gifts_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/get_user_star_gifts_count.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/hide_star_gift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/hide_star_gift.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/send_payment_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/send_payment_form.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/send_star_gift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/send_star_gift.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/show_star_gift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/payments/show_star_gift.py -------------------------------------------------------------------------------- /pyrogram/methods/phone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/phone/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/phone/get_call_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/phone/get_call_members.py -------------------------------------------------------------------------------- /pyrogram/methods/premium/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/premium/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/premium/apply_boost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/premium/apply_boost.py -------------------------------------------------------------------------------- /pyrogram/methods/premium/get_boosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/premium/get_boosts.py -------------------------------------------------------------------------------- /pyrogram/methods/premium/get_boosts_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/premium/get_boosts_status.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/can_post_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/can_post_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/can_send_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/can_send_story.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/copy_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/copy_story.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/delete_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/delete_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/edit_story_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/edit_story_caption.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/edit_story_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/edit_story_media.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/edit_story_privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/edit_story_privacy.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/export_story_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/export_story_link.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/forward_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/forward_story.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/get_all_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/get_all_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/get_archived_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/get_archived_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/get_chat_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/get_chat_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/get_pinned_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/get_pinned_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/get_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/get_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/get_stories_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/get_stories_archive.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/hide_chat_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/hide_chat_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/hide_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/hide_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/increment_story_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/increment_story_views.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/pin_chat_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/pin_chat_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/pin_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/pin_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/read_chat_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/read_chat_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/read_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/read_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/send_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/send_story.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/show_chat_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/show_chat_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/unpin_chat_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/unpin_chat_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/stories/view_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/stories/view_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/users/block_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/block_user.py -------------------------------------------------------------------------------- /pyrogram/methods/users/check_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/check_username.py -------------------------------------------------------------------------------- /pyrogram/methods/users/delete_profile_photos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/delete_profile_photos.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_chat_photos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/get_chat_photos.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_chat_photos_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/get_chat_photos_count.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_common_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/get_common_chats.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_default_emoji_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/get_default_emoji_statuses.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/get_me.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/get_users.py -------------------------------------------------------------------------------- /pyrogram/methods/users/set_emoji_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/set_emoji_status.py -------------------------------------------------------------------------------- /pyrogram/methods/users/set_personal_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/set_personal_channel.py -------------------------------------------------------------------------------- /pyrogram/methods/users/set_profile_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/set_profile_photo.py -------------------------------------------------------------------------------- /pyrogram/methods/users/set_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/set_username.py -------------------------------------------------------------------------------- /pyrogram/methods/users/unblock_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/unblock_user.py -------------------------------------------------------------------------------- /pyrogram/methods/users/update_birthday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/update_birthday.py -------------------------------------------------------------------------------- /pyrogram/methods/users/update_personal_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/update_personal_channel.py -------------------------------------------------------------------------------- /pyrogram/methods/users/update_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/update_profile.py -------------------------------------------------------------------------------- /pyrogram/methods/users/update_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/users/update_status.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/utilities/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/add_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/utilities/add_handler.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/utilities/compose.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/export_session_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/utilities/export_session_string.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/utilities/idle.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/remove_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/utilities/remove_handler.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/utilities/restart.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/utilities/run.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/utilities/start.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/utilities/stop.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/stop_transmission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/methods/utilities/stop_transmission.py -------------------------------------------------------------------------------- /pyrogram/mime_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/mime_types.py -------------------------------------------------------------------------------- /pyrogram/nav/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/nav/__init__.py -------------------------------------------------------------------------------- /pyrogram/nav/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/nav/pagination.py -------------------------------------------------------------------------------- /pyrogram/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/parser/__init__.py -------------------------------------------------------------------------------- /pyrogram/parser/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/parser/html.py -------------------------------------------------------------------------------- /pyrogram/parser/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/parser/markdown.py -------------------------------------------------------------------------------- /pyrogram/parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/parser/parser.py -------------------------------------------------------------------------------- /pyrogram/parser/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/parser/utils.py -------------------------------------------------------------------------------- /pyrogram/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrogram/raw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/__init__.py -------------------------------------------------------------------------------- /pyrogram/raw/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/__init__.py -------------------------------------------------------------------------------- /pyrogram/raw/core/future_salt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/future_salt.py -------------------------------------------------------------------------------- /pyrogram/raw/core/future_salts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/future_salts.py -------------------------------------------------------------------------------- /pyrogram/raw/core/gzip_packed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/gzip_packed.py -------------------------------------------------------------------------------- /pyrogram/raw/core/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/list.py -------------------------------------------------------------------------------- /pyrogram/raw/core/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/message.py -------------------------------------------------------------------------------- /pyrogram/raw/core/msg_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/msg_container.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/primitives/__init__.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/primitives/bool.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/primitives/bytes.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/double.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/primitives/double.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/primitives/int.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/primitives/string.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/primitives/vector.py -------------------------------------------------------------------------------- /pyrogram/raw/core/tl_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/raw/core/tl_object.py -------------------------------------------------------------------------------- /pyrogram/session/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/session/__init__.py -------------------------------------------------------------------------------- /pyrogram/session/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/session/auth.py -------------------------------------------------------------------------------- /pyrogram/session/internals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/session/internals/__init__.py -------------------------------------------------------------------------------- /pyrogram/session/internals/data_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/session/internals/data_center.py -------------------------------------------------------------------------------- /pyrogram/session/internals/msg_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/session/internals/msg_factory.py -------------------------------------------------------------------------------- /pyrogram/session/internals/msg_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/session/internals/msg_id.py -------------------------------------------------------------------------------- /pyrogram/session/internals/seq_no.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/session/internals/seq_no.py -------------------------------------------------------------------------------- /pyrogram/session/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/session/session.py -------------------------------------------------------------------------------- /pyrogram/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/storage/__init__.py -------------------------------------------------------------------------------- /pyrogram/storage/file_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/storage/file_storage.py -------------------------------------------------------------------------------- /pyrogram/storage/memory_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/storage/memory_storage.py -------------------------------------------------------------------------------- /pyrogram/storage/sqlite_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/storage/sqlite_storage.py -------------------------------------------------------------------------------- /pyrogram/storage/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/storage/storage.py -------------------------------------------------------------------------------- /pyrogram/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/sync.py -------------------------------------------------------------------------------- /pyrogram/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/authorization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/authorization/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/authorization/active_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/authorization/active_session.py -------------------------------------------------------------------------------- /pyrogram/types/authorization/active_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/authorization/active_sessions.py -------------------------------------------------------------------------------- /pyrogram/types/authorization/sent_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/authorization/sent_code.py -------------------------------------------------------------------------------- /pyrogram/types/authorization/terms_of_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/authorization/terms_of_service.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/bot_command.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_command_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/bot_command_scope.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_command_scope_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/bot_command_scope_default.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/callback_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/callback_game.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/callback_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/callback_query.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/chat_boost_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/chat_boost_updated.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/force_reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/force_reply.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/game_high_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/game_high_score.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/inline_keyboard_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/inline_keyboard_button.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/keyboard_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/keyboard_button.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/labeled_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/labeled_price.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/login_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/login_url.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/menu_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/menu_button.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/menu_button_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/menu_button_commands.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/menu_button_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/menu_button_default.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/menu_button_web_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/menu_button_web_app.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/message_reaction_count_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/message_reaction_count_updated.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/message_reaction_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/message_reaction_updated.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/order_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/order_info.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/pre_checkout_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/pre_checkout_query.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/purchased_paid_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/purchased_paid_media.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/request_channel_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/request_channel_info.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/request_chat_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/request_chat_info.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/request_poll_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/request_poll_info.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/request_user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/request_user_info.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/requested_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/requested_chats.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/sent_web_app_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/sent_web_app_message.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/shipping_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/shipping_address.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/shipping_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/shipping_option.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/shipping_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/shipping_query.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/successful_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/successful_payment.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/web_app_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/bots_and_keyboards/web_app_info.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/chosen_inline_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/chosen_inline_result.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_animation.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_article.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_audio.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_cached_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_cached_animation.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_cached_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_cached_audio.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_cached_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_cached_document.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_cached_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_cached_photo.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_cached_sticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_cached_sticker.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_cached_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_cached_video.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_cached_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_cached_voice.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_contact.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_document.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_location.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_photo.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_venue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_venue.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_video.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/inline_mode/inline_query_result_voice.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_media/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_media/input_media.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_media/input_media_animation.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_media/input_media_audio.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_media/input_media_document.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_media/input_media_photo.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_media/input_media_video.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_phone_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_media/input_phone_contact.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_message_content/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/input_message_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_message_content/input_message_content.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/input_reply_to_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_message_content/input_reply_to_message.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/input_reply_to_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_message_content/input_reply_to_story.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/input_text_message_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_message_content/input_text_message_content.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_privacy_rule/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/input_privacy_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_privacy_rule/input_privacy_rule.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/input_privacy_rule_allow_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_privacy_rule/input_privacy_rule_allow_all.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/input_privacy_rule_allow_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_privacy_rule/input_privacy_rule_allow_chats.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/input_privacy_rule_allow_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_privacy_rule/input_privacy_rule_allow_contacts.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/input_privacy_rule_allow_premium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_privacy_rule/input_privacy_rule_allow_premium.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/input_privacy_rule_allow_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_privacy_rule/input_privacy_rule_allow_users.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_all.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_chats.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_contacts.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_users.py -------------------------------------------------------------------------------- /pyrogram/types/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/list.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/animation.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/audio.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/auto_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/auto_name.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/available_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/available_effect.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/boosts_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/boosts_status.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/business_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/business_message.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/chat_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/chat_action.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/chat_boost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/chat_boost.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/chat_event_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/chat_event_action.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/chat_member_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/chat_member_status.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/chat_members_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/chat_members_filter.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/chat_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/chat_type.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/checked_gift_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/checked_gift_code.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/contact.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/contact_registered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/contact_registered.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/dice.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/document.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/forum_topic.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/forum_topic_closed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/forum_topic_closed.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/forum_topic_created.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/forum_topic_created.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/forum_topic_edited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/forum_topic_edited.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/forum_topic_reopened.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/forum_topic_reopened.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/game.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/general_forum_topic_hidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/general_forum_topic_hidden.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/general_forum_topic_unhidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/general_forum_topic_unhidden.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/gift_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/gift_code.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/giveaway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/giveaway.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/giveaway_completed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/giveaway_completed.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/giveaway_created.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/giveaway_created.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/giveaway_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/giveaway_result.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/giveaway_winners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/giveaway_winners.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/invoice.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/location.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/message.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/message_entity.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_entity_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/message_entity_type.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_media_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/message_media_type.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/message_reactions.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_service_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/message_service_type.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/message_story.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/messages_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/messages_filter.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/my_boost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/my_boost.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/next_code_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/next_code_type.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/paid_media_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/paid_media_info.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/paid_media_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/paid_media_preview.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/parse_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/parse_mode.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/payment_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/payment_form.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/photo.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/poll.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/poll_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/poll_option.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/poll_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/poll_type.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/reaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/reaction.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/refunded_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/refunded_payment.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/screenshot_taken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/screenshot_taken.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/sent_code_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/sent_code_type.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/star_gift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/star_gift.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/sticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/sticker.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/story.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/stripped_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/stripped_thumbnail.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/successful_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/successful_payment.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/thumbnail.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/user_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/user_status.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/venue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/venue.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/video.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/video_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/video_note.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/voice.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/web_app_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/web_app_data.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/web_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/web_page.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/write_access_allowed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/messages_and_media/write_access_allowed.py -------------------------------------------------------------------------------- /pyrogram/types/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/object.py -------------------------------------------------------------------------------- /pyrogram/types/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/update.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/birthday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/birthday.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/business_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/business_connection.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/business_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/business_info.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/business_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/business_intro.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/business_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/business_message.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/business_recipients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/business_recipients.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/business_weekly_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/business_weekly_open.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/business_working_hours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/business_working_hours.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_admin_with_invite_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_admin_with_invite_links.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_color.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_event.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_event_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_event_filter.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_join_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_join_request.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_joiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_joiner.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_member.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_member_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_member_updated.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_permissions.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_photo.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_privileges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_privileges.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/chat_reactions.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/dialog.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/emoji_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/emoji_status.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/folder.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/found_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/found_contacts.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/group_call_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/group_call_member.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/invite_link_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/invite_link_importer.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/phone_call_ended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/phone_call_ended.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/phone_call_started.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/phone_call_started.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/privacy_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/privacy_rule.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/restriction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/restriction.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/user.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/username.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/video_chat_ended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/video_chat_ended.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/video_chat_members_invited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/video_chat_members_invited.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/video_chat_scheduled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/video_chat_scheduled.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/video_chat_started.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/types/user_and_chats/video_chat_started.py -------------------------------------------------------------------------------- /pyrogram/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/pyrogram/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/tests/filters/__init__.py -------------------------------------------------------------------------------- /tests/filters/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/tests/filters/test_command.py -------------------------------------------------------------------------------- /tests/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/tests/parser/__init__.py -------------------------------------------------------------------------------- /tests/parser/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/tests/parser/test_html.py -------------------------------------------------------------------------------- /tests/parser/test_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/tests/parser/test_markdown.py -------------------------------------------------------------------------------- /tests/test_file_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/tests/test_file_id.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALiwoto/WPyrogram/HEAD/tox.ini --------------------------------------------------------------------------------