├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── dependabot.yml └── workflows │ ├── build-docs.yml │ ├── python-publish.yml │ └── python.yml ├── .gitignore ├── COPYING ├── COPYING.lesser ├── MANIFEST.in ├── Makefile ├── NOTICE ├── README.md ├── 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 ├── docs └── source │ ├── _includes │ └── usable-by │ │ ├── bots.rst │ │ ├── users-bots.rst │ │ └── users.rst │ ├── api │ ├── client.rst │ ├── decorators.rst │ ├── enums │ │ ├── ChatAction.rst │ │ ├── ChatEventAction.rst │ │ ├── ChatMemberStatus.rst │ │ ├── ChatMembersFilter.rst │ │ ├── ChatType.rst │ │ ├── FolderColor.rst │ │ ├── ListenerTypes.rst │ │ ├── MessageEntityType.rst │ │ ├── MessageMediaType.rst │ │ ├── MessageOriginType.rst │ │ ├── MessageServiceType.rst │ │ ├── MessagesFilter.rst │ │ ├── NextCodeType.rst │ │ ├── ParseMode.rst │ │ ├── PollType.rst │ │ ├── ReactionType.rst │ │ ├── SentCodeType.rst │ │ ├── StoriesPrivacyRules.rst │ │ ├── StoryPrivacy.rst │ │ ├── UserStatus.rst │ │ ├── cleanup.html │ │ └── index.rst │ ├── errors │ │ ├── bad-request.rst │ │ ├── flood.rst │ │ ├── forbidden.rst │ │ ├── index.rst │ │ ├── internal-server-error.rst │ │ ├── not-acceptable.rst │ │ ├── see-other.rst │ │ └── unauthorized.rst │ ├── filters.rst │ └── handlers.rst │ ├── conf.py │ ├── faq │ ├── client-started-but-nothing-happens.rst │ ├── code-hangs-when-calling-stop-restart-add-remove-handler.rst │ ├── how-to-avoid-flood-waits.rst │ ├── how-to-use-webhooks.rst │ ├── index.rst │ ├── migrating-the-account-to-another-data-center.rst │ ├── peer-id-invalid-error.rst │ ├── socket-send-oserror-timeouterror-connection-lost-reset.rst │ ├── sqlite3-interfaceerror-error-binding-parameter.rst │ ├── sqlite3-operationalerror-database-is-locked.rst │ ├── the-account-has-been-limited-deactivated.rst │ ├── unicodeencodeerror-codec-cant-encode.rst │ ├── uploading-with-urls-gives-error-webpage-curl-failed.rst │ ├── using-multiple-clients-at-once-on-the-same-account.rst │ ├── using-the-same-file-id-across-different-accounts.rst │ ├── what-are-the-ip-addresses-of-telegram-data-centers.rst │ ├── why-is-the-api-key-needed-for-bots.rst │ └── why-is-the-client-reacting-slowly-in-supergroups-channels.rst │ ├── index.rst │ ├── intro │ ├── install.rst │ └── quickstart.rst │ ├── start │ ├── auth.rst │ ├── errors.rst │ ├── examples │ │ ├── bot_keyboards.rst │ │ ├── callback_queries.rst │ │ ├── echo_bot.rst │ │ ├── get_chat_history.rst │ │ ├── get_chat_members.rst │ │ ├── get_dialogs.rst │ │ ├── hello_world.rst │ │ ├── index.rst │ │ ├── inline_queries.rst │ │ ├── raw_updates.rst │ │ ├── use_inline_bots.rst │ │ └── welcome_bot.rst │ ├── invoking.rst │ ├── setup.rst │ └── updates.rst │ ├── static │ ├── css │ │ ├── all.min.css │ │ └── custom.css │ └── img │ │ ├── favicon.ico │ │ └── pyroblack.png │ ├── support.rst │ └── topics │ ├── advanced-usage.rst │ ├── client-settings.rst │ ├── create-filters.rst │ ├── debugging.rst │ ├── more-on-updates.rst │ ├── mtproto-vs-botapi.rst │ ├── proxy.rst │ ├── scheduling.rst │ ├── serializing.rst │ ├── smart-plugins.rst │ ├── speedups.rst │ ├── storage-engines.rst │ ├── synchronous.rst │ ├── test-servers.rst │ ├── text-formatting.rst │ ├── use-filters.rst │ └── voice-calls.rst ├── hatch_build.py ├── pyproject.toml ├── 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 │ ├── listerner_types.py │ ├── message_entity_type.py │ ├── message_media_type.py │ ├── message_origin_type.py │ ├── message_service_type.py │ ├── messages_filter.py │ ├── next_code_type.py │ ├── paid_reaction_privacy.py │ ├── parse_mode.py │ ├── poll_type.py │ ├── privacy_key.py │ ├── profile_color.py │ ├── reaction_type.py │ ├── reply_color.py │ ├── sent_code_type.py │ ├── stories_privacy_rules.py │ ├── story_privacy.py │ └── user_status.py ├── errors │ ├── __init__.py │ ├── pyromod │ │ ├── __init__.py │ │ ├── listener_stopped.py │ │ └── listener_timeout.py │ └── rpc_error.py ├── file_id.py ├── filters.py ├── handlers │ ├── __init__.py │ ├── bot_business_connect_handler.py │ ├── bot_business_message_handler.py │ ├── callback_query_handler.py │ ├── chat_join_request_handler.py │ ├── chat_member_updated_handler.py │ ├── chosen_inline_result_handler.py │ ├── conversation_handler.py │ ├── deleted_bot_business_messages_handler.py │ ├── deleted_messages_handler.py │ ├── disconnect_handler.py │ ├── edited_bot_business_message_handler.py │ ├── edited_message_handler.py │ ├── handler.py │ ├── inline_query_handler.py │ ├── invoke_err_handler.py │ ├── message_handler.py │ ├── message_reaction_count_updated_handler.py │ ├── message_reaction_updated_handler.py │ ├── poll_handler.py │ ├── pre_checkout_query_handler.py │ ├── raw_update_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_inactive_session_ttl.py │ │ └── set_privacy.py │ ├── advanced │ │ ├── __init__.py │ │ ├── invoke.py │ │ ├── recover_gaps.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_in_qrcode.py │ │ ├── sign_up.py │ │ └── terminate.py │ ├── bots │ │ ├── __init__.py │ │ ├── answer_callback_query.py │ │ ├── answer_inline_query.py │ │ ├── answer_pre_checkout_query.py │ │ ├── answer_web_app_query.py │ │ ├── delete_bot_commands.py │ │ ├── get_bot_commands.py │ │ ├── get_bot_default_privileges.py │ │ ├── get_bot_info.py │ │ ├── get_chat_menu_button.py │ │ ├── get_collectible_item_info.py │ │ ├── get_game_high_scores.py │ │ ├── get_inline_bot_results.py │ │ ├── get_owned_bots.py │ │ ├── get_similar_bots.py │ │ ├── refund_stars_payment.py │ │ ├── request_callback_answer.py │ │ ├── send_game.py │ │ ├── send_inline_bot_result.py │ │ ├── set_bot_commands.py │ │ ├── set_bot_default_privileges.py │ │ ├── set_bot_info.py │ │ ├── set_chat_menu_button.py │ │ └── set_game_score.py │ ├── chats │ │ ├── __init__.py │ │ ├── add_chat_members.py │ │ ├── archive_chats.py │ │ ├── ban_chat_member.py │ │ ├── close_forum_topic.py │ │ ├── close_general_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 │ │ ├── edit_general_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_forum_topics_count.py │ │ ├── get_send_as_chats.py │ │ ├── hide_general_topic.py │ │ ├── join_chat.py │ │ ├── join_folder.py │ │ ├── leave_chat.py │ │ ├── leave_folder.py │ │ ├── mark_chat_unread.py │ │ ├── pin_chat_message.py │ │ ├── promote_chat_member.py │ │ ├── reopen_forum_topic.py │ │ ├── reopen_general_topic.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_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 │ │ ├── unhide_general_topic.py │ │ ├── unpin_all_chat_messages.py │ │ ├── unpin_chat_message.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_bot_business_connect.py │ │ ├── on_bot_business_message.py │ │ ├── on_callback_query.py │ │ ├── on_chat_join_request.py │ │ ├── on_chat_member_updated.py │ │ ├── on_chosen_inline_result.py │ │ ├── on_deleted_bot_business_messages.py │ │ ├── on_deleted_messages.py │ │ ├── on_disconnect.py │ │ ├── on_edited_bot_business_message.py │ │ ├── on_edited_message.py │ │ ├── on_inline_query.py │ │ ├── on_invoke_err.py │ │ ├── on_message.py │ │ ├── on_message_reaction_count_updated.py │ │ ├── on_message_reaction_updated.py │ │ ├── on_poll.py │ │ ├── on_pre_checkout_query.py │ │ ├── on_raw_update.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 │ │ ├── add_checklist_tasks.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_media_group.py │ │ ├── get_message_read_participants.py │ │ ├── get_messages.py │ │ ├── get_scheduled_messages.py │ │ ├── get_stickers.py │ │ ├── inline_session.py │ │ ├── mark_checklist_tasks_as_done.py │ │ ├── read_chat_history.py │ │ ├── retract_vote.py │ │ ├── search_global.py │ │ ├── search_global_count.py │ │ ├── search_global_hashtag_messages.py │ │ ├── search_global_hashtag_messages_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_checklist.py │ │ ├── send_contact.py │ │ ├── send_dice.py │ │ ├── send_document.py │ │ ├── send_invoice.py │ │ ├── send_location.py │ │ ├── send_media_group.py │ │ ├── send_message.py │ │ ├── send_paid_media.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 │ │ ├── transcribe_audio.py │ │ ├── translate_text.py │ │ ├── view_messages.py │ │ └── vote_poll.py │ ├── password │ │ ├── __init__.py │ │ ├── change_cloud_password.py │ │ ├── enable_cloud_password.py │ │ └── remove_cloud_password.py │ ├── payments │ │ ├── __init__.py │ │ ├── check_giftcode.py │ │ ├── get_payment_form.py │ │ ├── send_paid_reaction.py │ │ └── send_payment_form.py │ ├── phone │ │ ├── __init__.py │ │ └── get_call_members.py │ ├── pyromod │ │ ├── __init__.py │ │ ├── ask.py │ │ ├── get_listener_matching_with_data.py │ │ ├── get_listener_matching_with_identifier_pattern.py │ │ ├── get_many_listeners_matching_with_data.py │ │ ├── get_many_listeners_matching_with_identifier_pattern.py │ │ ├── listen.py │ │ ├── register_next_step_handler.py │ │ ├── remove_listerner.py │ │ ├── stop_listener.py │ │ ├── stop_listening.py │ │ ├── wait_for_callback_query.py │ │ └── wait_for_message.py │ ├── stickers │ │ ├── __init__.py │ │ ├── add_sticker_to_set.py │ │ ├── create_sticker_set.py │ │ └── get_sticker_set.py │ ├── users │ │ ├── __init__.py │ │ ├── block_user.py │ │ ├── check_username.py │ │ ├── delete_profile_photos.py │ │ ├── delete_stories.py │ │ ├── edit_story.py │ │ ├── export_story_link.py │ │ ├── forward_story.py │ │ ├── get_all_stories.py │ │ ├── get_chat_photos.py │ │ ├── get_chat_photos_count.py │ │ ├── get_common_chats.py │ │ ├── get_default_emoji_statuses.py │ │ ├── get_me.py │ │ ├── get_peer_stories.py │ │ ├── get_stories.py │ │ ├── get_stories_history.py │ │ ├── get_users.py │ │ ├── send_story.py │ │ ├── set_emoji_status.py │ │ ├── set_profile_photo.py │ │ ├── set_username.py │ │ ├── unblock_user.py │ │ ├── update_birthday.py │ │ ├── update_personal_chat.py │ │ └── update_profile.py │ └── utilities │ │ ├── __init__.py │ │ ├── add_handler.py │ │ ├── compose.py │ │ ├── export_session_string.py │ │ ├── idle.py │ │ ├── ping.py │ │ ├── remove_handler.py │ │ ├── restart.py │ │ ├── run.py │ │ ├── run_sync.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 │ │ ├── login_token.py │ │ ├── sent_code.py │ │ └── terms_of_service.py │ ├── bots_and_keyboards │ │ ├── __init__.py │ │ ├── bot_allowed.py │ │ ├── bot_app.py │ │ ├── bot_business_connection.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 │ │ ├── bot_info.py │ │ ├── callback_game.py │ │ ├── callback_query.py │ │ ├── collectible_item_info.py │ │ ├── force_reply.py │ │ ├── game_high_score.py │ │ ├── inline_keyboard_button.py │ │ ├── inline_keyboard_button_buy.py │ │ ├── inline_keyboard_markup.py │ │ ├── keyboard_button.py │ │ ├── login_url.py │ │ ├── menu_button.py │ │ ├── menu_button_commands.py │ │ ├── menu_button_default.py │ │ ├── menu_button_web_app.py │ │ ├── payment_info.py │ │ ├── payment_refunded.py │ │ ├── pre_checkout_query.py │ │ ├── reply_keyboard_markup.py │ │ ├── reply_keyboard_remove.py │ │ ├── request_peer_type_channel.py │ │ ├── request_peer_type_chat.py │ │ ├── request_peer_type_user.py │ │ ├── requested_chats.py │ │ ├── sent_web_app_message.py │ │ ├── shipping_address.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_area.py │ │ ├── input_media_area_channel_post.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_contact_message_content.py │ │ ├── input_invoice_message_content.py │ │ ├── input_location_message_content.py │ │ ├── input_message_content.py │ │ ├── input_reply_to_message.py │ │ ├── input_reply_to_monoforum.py │ │ ├── input_reply_to_story.py │ │ ├── input_text_message_content.py │ │ └── input_venue_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 │ │ ├── alternative_video.py │ │ ├── animation.py │ │ ├── audio.py │ │ ├── available_effect.py │ │ ├── checked_gift_code.py │ │ ├── checklist.py │ │ ├── checklist_task.py │ │ ├── checklist_tasks_added.py │ │ ├── checklist_tasks_done.py │ │ ├── contact.py │ │ ├── dice.py │ │ ├── document.py │ │ ├── exported_story_link.py │ │ ├── extended_media_preview.py │ │ ├── external_reply_info.py │ │ ├── game.py │ │ ├── gift_code.py │ │ ├── giveaway.py │ │ ├── giveaway_launched.py │ │ ├── giveaway_result.py │ │ ├── input_checklist_task.py │ │ ├── invoice.py │ │ ├── labeled_price.py │ │ ├── location.py │ │ ├── media_area.py │ │ ├── media_area_channel_post.py │ │ ├── media_area_coordinates.py │ │ ├── message.py │ │ ├── message_entity.py │ │ ├── message_invoice.py │ │ ├── message_origin.py │ │ ├── message_origin_channel.py │ │ ├── message_origin_chat.py │ │ ├── message_origin_hidden_user.py │ │ ├── message_origin_import.py │ │ ├── message_origin_user.py │ │ ├── message_reaction_count_updated.py │ │ ├── message_reaction_updated.py │ │ ├── message_reactions.py │ │ ├── message_reactor.py │ │ ├── message_story.py │ │ ├── paid_media.py │ │ ├── payment_form.py │ │ ├── photo.py │ │ ├── poll.py │ │ ├── poll_option.py │ │ ├── reaction.py │ │ ├── reaction_count.py │ │ ├── reaction_type.py │ │ ├── read_participant.py │ │ ├── sticker.py │ │ ├── stickerset.py │ │ ├── stories_privacy_rules.py │ │ ├── story.py │ │ ├── story_deleted.py │ │ ├── story_forward_header.py │ │ ├── story_skipped.py │ │ ├── story_views.py │ │ ├── stripped_thumbnail.py │ │ ├── text_quote.py │ │ ├── thumbnail.py │ │ ├── transcribed_audio.py │ │ ├── translated_text.py │ │ ├── venue.py │ │ ├── video.py │ │ ├── video_note.py │ │ ├── voice.py │ │ ├── web_app_data.py │ │ ├── web_page.py │ │ ├── web_page_empty.py │ │ └── web_page_preview.py │ ├── object.py │ ├── pyromod │ │ ├── __init__.py │ │ ├── identifier.py │ │ └── listener.py │ ├── update.py │ └── user_and_chats │ │ ├── __init__.py │ │ ├── birthday.py │ │ ├── business_info.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_joined_by_request.py │ │ ├── chat_joiner.py │ │ ├── chat_member.py │ │ ├── chat_member_updated.py │ │ ├── chat_permissions.py │ │ ├── chat_photo.py │ │ ├── chat_preview.py │ │ ├── chat_privileges.py │ │ ├── chat_reactions.py │ │ ├── dialog.py │ │ ├── emoji_status.py │ │ ├── folder.py │ │ ├── forum_topic.py │ │ ├── forum_topic_closed.py │ │ ├── forum_topic_created.py │ │ ├── forum_topic_deleted.py │ │ ├── forum_topic_edited.py │ │ ├── forum_topic_reopened.py │ │ ├── found_contacts.py │ │ ├── general_forum_topic_hidden.py │ │ ├── general_forum_topic_unhidden.py │ │ ├── group_call_member.py │ │ ├── invite_link_importer.py │ │ ├── peer_channel.py │ │ ├── peer_user.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 └── tests ├── __init__.py ├── filters ├── __init__.py └── test_command.py ├── parser ├── __init__.py └── test_html.py └── test_file_id.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/.github/workflows/build-docs.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.lesser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/COPYING.lesser -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/README.md -------------------------------------------------------------------------------- /compiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/__init__.py -------------------------------------------------------------------------------- /compiler/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/api/__init__.py -------------------------------------------------------------------------------- /compiler/api/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/api/compiler.py -------------------------------------------------------------------------------- /compiler/api/source/auth_key.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/api/source/auth_key.tl -------------------------------------------------------------------------------- /compiler/api/source/main_api.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/api/source/main_api.tl -------------------------------------------------------------------------------- /compiler/api/source/sys_msgs.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/api/source/sys_msgs.tl -------------------------------------------------------------------------------- /compiler/api/template/combinator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/api/template/combinator.txt -------------------------------------------------------------------------------- /compiler/api/template/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/api/template/type.txt -------------------------------------------------------------------------------- /compiler/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/docs/__init__.py -------------------------------------------------------------------------------- /compiler/docs/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/docs/compiler.py -------------------------------------------------------------------------------- /compiler/docs/template/bound-methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/docs/template/bound-methods.rst -------------------------------------------------------------------------------- /compiler/docs/template/methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/docs/template/methods.rst -------------------------------------------------------------------------------- /compiler/docs/template/page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/docs/template/page.txt -------------------------------------------------------------------------------- /compiler/docs/template/toctree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/docs/template/toctree.txt -------------------------------------------------------------------------------- /compiler/docs/template/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/docs/template/types.rst -------------------------------------------------------------------------------- /compiler/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/__init__.py -------------------------------------------------------------------------------- /compiler/errors/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/compiler.py -------------------------------------------------------------------------------- /compiler/errors/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/sort.py -------------------------------------------------------------------------------- /compiler/errors/source/303_SEE_OTHER.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/source/303_SEE_OTHER.tsv -------------------------------------------------------------------------------- /compiler/errors/source/400_BAD_REQUEST.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/source/400_BAD_REQUEST.tsv -------------------------------------------------------------------------------- /compiler/errors/source/401_UNAUTHORIZED.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/source/401_UNAUTHORIZED.tsv -------------------------------------------------------------------------------- /compiler/errors/source/403_FORBIDDEN.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/source/403_FORBIDDEN.tsv -------------------------------------------------------------------------------- /compiler/errors/source/406_NOT_ACCEPTABLE.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/source/406_NOT_ACCEPTABLE.tsv -------------------------------------------------------------------------------- /compiler/errors/source/420_FLOOD.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/source/420_FLOOD.tsv -------------------------------------------------------------------------------- /compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv -------------------------------------------------------------------------------- /compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv -------------------------------------------------------------------------------- /compiler/errors/template/class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/template/class.txt -------------------------------------------------------------------------------- /compiler/errors/template/sub_class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/compiler/errors/template/sub_class.txt -------------------------------------------------------------------------------- /docs/source/_includes/usable-by/bots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/_includes/usable-by/bots.rst -------------------------------------------------------------------------------- /docs/source/_includes/usable-by/users-bots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/_includes/usable-by/users-bots.rst -------------------------------------------------------------------------------- /docs/source/_includes/usable-by/users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/_includes/usable-by/users.rst -------------------------------------------------------------------------------- /docs/source/api/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/client.rst -------------------------------------------------------------------------------- /docs/source/api/decorators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/decorators.rst -------------------------------------------------------------------------------- /docs/source/api/enums/ChatAction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/ChatAction.rst -------------------------------------------------------------------------------- /docs/source/api/enums/ChatEventAction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/ChatEventAction.rst -------------------------------------------------------------------------------- /docs/source/api/enums/ChatMemberStatus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/ChatMemberStatus.rst -------------------------------------------------------------------------------- /docs/source/api/enums/ChatMembersFilter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/ChatMembersFilter.rst -------------------------------------------------------------------------------- /docs/source/api/enums/ChatType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/ChatType.rst -------------------------------------------------------------------------------- /docs/source/api/enums/FolderColor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/FolderColor.rst -------------------------------------------------------------------------------- /docs/source/api/enums/ListenerTypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/ListenerTypes.rst -------------------------------------------------------------------------------- /docs/source/api/enums/MessageEntityType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/MessageEntityType.rst -------------------------------------------------------------------------------- /docs/source/api/enums/MessageMediaType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/MessageMediaType.rst -------------------------------------------------------------------------------- /docs/source/api/enums/MessageOriginType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/MessageOriginType.rst -------------------------------------------------------------------------------- /docs/source/api/enums/MessageServiceType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/MessageServiceType.rst -------------------------------------------------------------------------------- /docs/source/api/enums/MessagesFilter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/MessagesFilter.rst -------------------------------------------------------------------------------- /docs/source/api/enums/NextCodeType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/NextCodeType.rst -------------------------------------------------------------------------------- /docs/source/api/enums/ParseMode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/ParseMode.rst -------------------------------------------------------------------------------- /docs/source/api/enums/PollType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/PollType.rst -------------------------------------------------------------------------------- /docs/source/api/enums/ReactionType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/ReactionType.rst -------------------------------------------------------------------------------- /docs/source/api/enums/SentCodeType.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/SentCodeType.rst -------------------------------------------------------------------------------- /docs/source/api/enums/StoriesPrivacyRules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/StoriesPrivacyRules.rst -------------------------------------------------------------------------------- /docs/source/api/enums/StoryPrivacy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/StoryPrivacy.rst -------------------------------------------------------------------------------- /docs/source/api/enums/UserStatus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/UserStatus.rst -------------------------------------------------------------------------------- /docs/source/api/enums/cleanup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/cleanup.html -------------------------------------------------------------------------------- /docs/source/api/enums/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/enums/index.rst -------------------------------------------------------------------------------- /docs/source/api/errors/bad-request.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/errors/bad-request.rst -------------------------------------------------------------------------------- /docs/source/api/errors/flood.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/errors/flood.rst -------------------------------------------------------------------------------- /docs/source/api/errors/forbidden.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/errors/forbidden.rst -------------------------------------------------------------------------------- /docs/source/api/errors/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/errors/index.rst -------------------------------------------------------------------------------- /docs/source/api/errors/internal-server-error.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/errors/internal-server-error.rst -------------------------------------------------------------------------------- /docs/source/api/errors/not-acceptable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/errors/not-acceptable.rst -------------------------------------------------------------------------------- /docs/source/api/errors/see-other.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/errors/see-other.rst -------------------------------------------------------------------------------- /docs/source/api/errors/unauthorized.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/errors/unauthorized.rst -------------------------------------------------------------------------------- /docs/source/api/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/filters.rst -------------------------------------------------------------------------------- /docs/source/api/handlers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/api/handlers.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/faq/client-started-but-nothing-happens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/client-started-but-nothing-happens.rst -------------------------------------------------------------------------------- /docs/source/faq/code-hangs-when-calling-stop-restart-add-remove-handler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/code-hangs-when-calling-stop-restart-add-remove-handler.rst -------------------------------------------------------------------------------- /docs/source/faq/how-to-avoid-flood-waits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/how-to-avoid-flood-waits.rst -------------------------------------------------------------------------------- /docs/source/faq/how-to-use-webhooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/how-to-use-webhooks.rst -------------------------------------------------------------------------------- /docs/source/faq/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/index.rst -------------------------------------------------------------------------------- /docs/source/faq/migrating-the-account-to-another-data-center.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/migrating-the-account-to-another-data-center.rst -------------------------------------------------------------------------------- /docs/source/faq/peer-id-invalid-error.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/peer-id-invalid-error.rst -------------------------------------------------------------------------------- /docs/source/faq/socket-send-oserror-timeouterror-connection-lost-reset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/socket-send-oserror-timeouterror-connection-lost-reset.rst -------------------------------------------------------------------------------- /docs/source/faq/sqlite3-interfaceerror-error-binding-parameter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/sqlite3-interfaceerror-error-binding-parameter.rst -------------------------------------------------------------------------------- /docs/source/faq/sqlite3-operationalerror-database-is-locked.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/sqlite3-operationalerror-database-is-locked.rst -------------------------------------------------------------------------------- /docs/source/faq/the-account-has-been-limited-deactivated.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/the-account-has-been-limited-deactivated.rst -------------------------------------------------------------------------------- /docs/source/faq/unicodeencodeerror-codec-cant-encode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/unicodeencodeerror-codec-cant-encode.rst -------------------------------------------------------------------------------- /docs/source/faq/uploading-with-urls-gives-error-webpage-curl-failed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/uploading-with-urls-gives-error-webpage-curl-failed.rst -------------------------------------------------------------------------------- /docs/source/faq/using-multiple-clients-at-once-on-the-same-account.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/using-multiple-clients-at-once-on-the-same-account.rst -------------------------------------------------------------------------------- /docs/source/faq/using-the-same-file-id-across-different-accounts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/using-the-same-file-id-across-different-accounts.rst -------------------------------------------------------------------------------- /docs/source/faq/what-are-the-ip-addresses-of-telegram-data-centers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/what-are-the-ip-addresses-of-telegram-data-centers.rst -------------------------------------------------------------------------------- /docs/source/faq/why-is-the-api-key-needed-for-bots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/why-is-the-api-key-needed-for-bots.rst -------------------------------------------------------------------------------- /docs/source/faq/why-is-the-client-reacting-slowly-in-supergroups-channels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/faq/why-is-the-client-reacting-slowly-in-supergroups-channels.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/intro/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/intro/install.rst -------------------------------------------------------------------------------- /docs/source/intro/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/intro/quickstart.rst -------------------------------------------------------------------------------- /docs/source/start/auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/auth.rst -------------------------------------------------------------------------------- /docs/source/start/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/errors.rst -------------------------------------------------------------------------------- /docs/source/start/examples/bot_keyboards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/examples/bot_keyboards.rst -------------------------------------------------------------------------------- /docs/source/start/examples/callback_queries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/examples/callback_queries.rst -------------------------------------------------------------------------------- /docs/source/start/examples/echo_bot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/examples/echo_bot.rst -------------------------------------------------------------------------------- /docs/source/start/examples/get_chat_history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/examples/get_chat_history.rst -------------------------------------------------------------------------------- /docs/source/start/examples/get_chat_members.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/examples/get_chat_members.rst -------------------------------------------------------------------------------- /docs/source/start/examples/get_dialogs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/examples/get_dialogs.rst -------------------------------------------------------------------------------- /docs/source/start/examples/hello_world.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/examples/hello_world.rst -------------------------------------------------------------------------------- /docs/source/start/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/examples/index.rst -------------------------------------------------------------------------------- /docs/source/start/examples/inline_queries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/examples/inline_queries.rst -------------------------------------------------------------------------------- /docs/source/start/examples/raw_updates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/examples/raw_updates.rst -------------------------------------------------------------------------------- /docs/source/start/examples/use_inline_bots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/examples/use_inline_bots.rst -------------------------------------------------------------------------------- /docs/source/start/examples/welcome_bot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/examples/welcome_bot.rst -------------------------------------------------------------------------------- /docs/source/start/invoking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/invoking.rst -------------------------------------------------------------------------------- /docs/source/start/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/setup.rst -------------------------------------------------------------------------------- /docs/source/start/updates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/start/updates.rst -------------------------------------------------------------------------------- /docs/source/static/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/static/css/all.min.css -------------------------------------------------------------------------------- /docs/source/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/static/css/custom.css -------------------------------------------------------------------------------- /docs/source/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/source/static/img/pyroblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/static/img/pyroblack.png -------------------------------------------------------------------------------- /docs/source/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/support.rst -------------------------------------------------------------------------------- /docs/source/topics/advanced-usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/advanced-usage.rst -------------------------------------------------------------------------------- /docs/source/topics/client-settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/client-settings.rst -------------------------------------------------------------------------------- /docs/source/topics/create-filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/create-filters.rst -------------------------------------------------------------------------------- /docs/source/topics/debugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/debugging.rst -------------------------------------------------------------------------------- /docs/source/topics/more-on-updates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/more-on-updates.rst -------------------------------------------------------------------------------- /docs/source/topics/mtproto-vs-botapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/mtproto-vs-botapi.rst -------------------------------------------------------------------------------- /docs/source/topics/proxy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/proxy.rst -------------------------------------------------------------------------------- /docs/source/topics/scheduling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/scheduling.rst -------------------------------------------------------------------------------- /docs/source/topics/serializing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/serializing.rst -------------------------------------------------------------------------------- /docs/source/topics/smart-plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/smart-plugins.rst -------------------------------------------------------------------------------- /docs/source/topics/speedups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/speedups.rst -------------------------------------------------------------------------------- /docs/source/topics/storage-engines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/storage-engines.rst -------------------------------------------------------------------------------- /docs/source/topics/synchronous.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/synchronous.rst -------------------------------------------------------------------------------- /docs/source/topics/test-servers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/test-servers.rst -------------------------------------------------------------------------------- /docs/source/topics/text-formatting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/text-formatting.rst -------------------------------------------------------------------------------- /docs/source/topics/use-filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/use-filters.rst -------------------------------------------------------------------------------- /docs/source/topics/voice-calls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/docs/source/topics/voice-calls.rst -------------------------------------------------------------------------------- /hatch_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/hatch_build.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyrogram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/__init__.py -------------------------------------------------------------------------------- /pyrogram/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/client.py -------------------------------------------------------------------------------- /pyrogram/connection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/connection/__init__.py -------------------------------------------------------------------------------- /pyrogram/connection/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/connection/connection.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/connection/transport/__init__.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/connection/transport/tcp/__init__.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/connection/transport/tcp/tcp.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/tcp_abridged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/connection/transport/tcp/tcp_abridged.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/tcp_abridged_o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/connection/transport/tcp/tcp_abridged_o.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/tcp_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/connection/transport/tcp/tcp_full.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/tcp_intermediate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/connection/transport/tcp/tcp_intermediate.py -------------------------------------------------------------------------------- /pyrogram/connection/transport/tcp/tcp_intermediate_o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/connection/transport/tcp/tcp_intermediate_o.py -------------------------------------------------------------------------------- /pyrogram/crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/crypto/__init__.py -------------------------------------------------------------------------------- /pyrogram/crypto/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/crypto/aes.py -------------------------------------------------------------------------------- /pyrogram/crypto/mtproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/crypto/mtproto.py -------------------------------------------------------------------------------- /pyrogram/crypto/prime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/crypto/prime.py -------------------------------------------------------------------------------- /pyrogram/crypto/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/crypto/rsa.py -------------------------------------------------------------------------------- /pyrogram/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/dispatcher.py -------------------------------------------------------------------------------- /pyrogram/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/emoji.py -------------------------------------------------------------------------------- /pyrogram/enums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/__init__.py -------------------------------------------------------------------------------- /pyrogram/enums/auto_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/auto_name.py -------------------------------------------------------------------------------- /pyrogram/enums/business_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/business_schedule.py -------------------------------------------------------------------------------- /pyrogram/enums/chat_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/chat_action.py -------------------------------------------------------------------------------- /pyrogram/enums/chat_event_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/chat_event_action.py -------------------------------------------------------------------------------- /pyrogram/enums/chat_join_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/chat_join_type.py -------------------------------------------------------------------------------- /pyrogram/enums/chat_member_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/chat_member_status.py -------------------------------------------------------------------------------- /pyrogram/enums/chat_members_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/chat_members_filter.py -------------------------------------------------------------------------------- /pyrogram/enums/chat_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/chat_type.py -------------------------------------------------------------------------------- /pyrogram/enums/client_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/client_platform.py -------------------------------------------------------------------------------- /pyrogram/enums/folder_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/folder_color.py -------------------------------------------------------------------------------- /pyrogram/enums/listerner_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/listerner_types.py -------------------------------------------------------------------------------- /pyrogram/enums/message_entity_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/message_entity_type.py -------------------------------------------------------------------------------- /pyrogram/enums/message_media_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/message_media_type.py -------------------------------------------------------------------------------- /pyrogram/enums/message_origin_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/message_origin_type.py -------------------------------------------------------------------------------- /pyrogram/enums/message_service_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/message_service_type.py -------------------------------------------------------------------------------- /pyrogram/enums/messages_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/messages_filter.py -------------------------------------------------------------------------------- /pyrogram/enums/next_code_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/next_code_type.py -------------------------------------------------------------------------------- /pyrogram/enums/paid_reaction_privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/paid_reaction_privacy.py -------------------------------------------------------------------------------- /pyrogram/enums/parse_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/parse_mode.py -------------------------------------------------------------------------------- /pyrogram/enums/poll_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/poll_type.py -------------------------------------------------------------------------------- /pyrogram/enums/privacy_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/privacy_key.py -------------------------------------------------------------------------------- /pyrogram/enums/profile_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/profile_color.py -------------------------------------------------------------------------------- /pyrogram/enums/reaction_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/reaction_type.py -------------------------------------------------------------------------------- /pyrogram/enums/reply_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/reply_color.py -------------------------------------------------------------------------------- /pyrogram/enums/sent_code_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/sent_code_type.py -------------------------------------------------------------------------------- /pyrogram/enums/stories_privacy_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/stories_privacy_rules.py -------------------------------------------------------------------------------- /pyrogram/enums/story_privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/story_privacy.py -------------------------------------------------------------------------------- /pyrogram/enums/user_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/enums/user_status.py -------------------------------------------------------------------------------- /pyrogram/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/errors/__init__.py -------------------------------------------------------------------------------- /pyrogram/errors/pyromod/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/errors/pyromod/__init__.py -------------------------------------------------------------------------------- /pyrogram/errors/pyromod/listener_stopped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/errors/pyromod/listener_stopped.py -------------------------------------------------------------------------------- /pyrogram/errors/pyromod/listener_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/errors/pyromod/listener_timeout.py -------------------------------------------------------------------------------- /pyrogram/errors/rpc_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/errors/rpc_error.py -------------------------------------------------------------------------------- /pyrogram/file_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/file_id.py -------------------------------------------------------------------------------- /pyrogram/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/filters.py -------------------------------------------------------------------------------- /pyrogram/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/__init__.py -------------------------------------------------------------------------------- /pyrogram/handlers/bot_business_connect_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/bot_business_connect_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/bot_business_message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/bot_business_message_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/callback_query_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/callback_query_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/chat_join_request_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/chat_join_request_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/chat_member_updated_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/chat_member_updated_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/chosen_inline_result_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/chosen_inline_result_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/conversation_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/conversation_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/deleted_bot_business_messages_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/deleted_bot_business_messages_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/deleted_messages_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/deleted_messages_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/disconnect_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/disconnect_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/edited_bot_business_message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/edited_bot_business_message_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/edited_message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/edited_message_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/inline_query_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/inline_query_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/invoke_err_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/invoke_err_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/message_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/message_reaction_count_updated_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/message_reaction_count_updated_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/message_reaction_updated_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/message_reaction_updated_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/poll_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/poll_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/pre_checkout_query_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/pre_checkout_query_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/raw_update_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/raw_update_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/story_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/story_handler.py -------------------------------------------------------------------------------- /pyrogram/handlers/user_status_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/handlers/user_status_handler.py -------------------------------------------------------------------------------- /pyrogram/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/helpers/__init__.py -------------------------------------------------------------------------------- /pyrogram/helpers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/helpers/helpers.py -------------------------------------------------------------------------------- /pyrogram/methods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/account/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/account/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/account/get_account_ttl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/account/get_account_ttl.py -------------------------------------------------------------------------------- /pyrogram/methods/account/get_privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/account/get_privacy.py -------------------------------------------------------------------------------- /pyrogram/methods/account/set_account_ttl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/account/set_account_ttl.py -------------------------------------------------------------------------------- /pyrogram/methods/account/set_inactive_session_ttl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/account/set_inactive_session_ttl.py -------------------------------------------------------------------------------- /pyrogram/methods/account/set_privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/account/set_privacy.py -------------------------------------------------------------------------------- /pyrogram/methods/advanced/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/advanced/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/advanced/invoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/advanced/invoke.py -------------------------------------------------------------------------------- /pyrogram/methods/advanced/recover_gaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/advanced/recover_gaps.py -------------------------------------------------------------------------------- /pyrogram/methods/advanced/resolve_peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/advanced/resolve_peer.py -------------------------------------------------------------------------------- /pyrogram/methods/advanced/save_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/advanced/save_file.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/accept_terms_of_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/accept_terms_of_service.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/check_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/check_password.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/connect.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/disconnect.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/get_active_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/get_active_sessions.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/get_password_hint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/get_password_hint.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/initialize.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/log_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/log_out.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/recover_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/recover_password.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/resend_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/resend_code.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/reset_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/reset_session.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/reset_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/reset_sessions.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/send_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/send_code.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/send_recovery_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/send_recovery_code.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/sign_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/sign_in.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/sign_in_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/sign_in_bot.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/sign_in_qrcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/sign_in_qrcode.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/sign_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/sign_up.py -------------------------------------------------------------------------------- /pyrogram/methods/auth/terminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/auth/terminate.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/answer_callback_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/answer_callback_query.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/answer_inline_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/answer_inline_query.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/answer_pre_checkout_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/answer_pre_checkout_query.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/answer_web_app_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/answer_web_app_query.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/delete_bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/delete_bot_commands.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/get_bot_commands.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_bot_default_privileges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/get_bot_default_privileges.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_bot_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/get_bot_info.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_chat_menu_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/get_chat_menu_button.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_collectible_item_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/get_collectible_item_info.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_game_high_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/get_game_high_scores.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_inline_bot_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/get_inline_bot_results.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_owned_bots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/get_owned_bots.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/get_similar_bots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/get_similar_bots.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/refund_stars_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/refund_stars_payment.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/request_callback_answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/request_callback_answer.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/send_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/send_game.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/send_inline_bot_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/send_inline_bot_result.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/set_bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/set_bot_commands.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/set_bot_default_privileges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/set_bot_default_privileges.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/set_bot_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/set_bot_info.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/set_chat_menu_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/set_chat_menu_button.py -------------------------------------------------------------------------------- /pyrogram/methods/bots/set_game_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/bots/set_game_score.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/add_chat_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/add_chat_members.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/archive_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/archive_chats.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/ban_chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/ban_chat_member.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/close_forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/close_forum_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/close_general_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/close_general_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/create_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/create_channel.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/create_forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/create_forum_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/create_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/create_group.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/create_supergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/create_supergroup.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/delete_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/delete_channel.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/delete_chat_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/delete_chat_photo.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/delete_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/delete_folder.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/delete_forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/delete_forum_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/delete_supergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/delete_supergroup.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/delete_user_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/delete_user_history.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/edit_forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/edit_forum_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/edit_general_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/edit_general_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/export_folder_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/export_folder_link.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_chat.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_chat_event_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_chat_event_log.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_chat_member.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_chat_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_chat_members.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_chat_members_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_chat_members_count.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_chat_online_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_chat_online_count.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_dialogs.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_dialogs_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_dialogs_count.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_folders.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_forum_topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_forum_topics.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_forum_topics_by_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_forum_topics_by_id.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_forum_topics_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_forum_topics_count.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/get_send_as_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/get_send_as_chats.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/hide_general_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/hide_general_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/join_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/join_chat.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/join_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/join_folder.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/leave_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/leave_chat.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/leave_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/leave_folder.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/mark_chat_unread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/mark_chat_unread.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/pin_chat_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/pin_chat_message.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/promote_chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/promote_chat_member.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/reopen_forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/reopen_forum_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/reopen_general_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/reopen_general_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/restrict_chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/restrict_chat_member.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_administrator_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/set_administrator_title.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/set_chat_description.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/set_chat_permissions.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/set_chat_photo.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_protected_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/set_chat_protected_content.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/set_chat_title.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_chat_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/set_chat_username.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_send_as_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/set_send_as_chat.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/set_slow_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/set_slow_mode.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/toggle_folder_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/toggle_folder_tags.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/toggle_forum_topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/toggle_forum_topics.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/toggle_join_to_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/toggle_join_to_send.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/unarchive_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/unarchive_chats.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/unban_chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/unban_chat_member.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/unhide_general_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/unhide_general_topic.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/unpin_all_chat_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/unpin_all_chat_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/unpin_chat_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/unpin_chat_message.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/update_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/update_color.py -------------------------------------------------------------------------------- /pyrogram/methods/chats/update_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/chats/update_folder.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/contacts/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/add_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/contacts/add_contact.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/delete_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/contacts/delete_contacts.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/get_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/contacts/get_contacts.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/get_contacts_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/contacts/get_contacts_count.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/import_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/contacts/import_contacts.py -------------------------------------------------------------------------------- /pyrogram/methods/contacts/search_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/contacts/search_contacts.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_bot_business_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_bot_business_connect.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_bot_business_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_bot_business_message.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_callback_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_callback_query.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_chat_join_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_chat_join_request.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_chat_member_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_chat_member_updated.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_chosen_inline_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_chosen_inline_result.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_deleted_bot_business_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_deleted_bot_business_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_deleted_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_deleted_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_disconnect.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_edited_bot_business_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_edited_bot_business_message.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_edited_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_edited_message.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_inline_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_inline_query.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_invoke_err.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_invoke_err.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_message.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_message_reaction_count_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_message_reaction_count_updated.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_message_reaction_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_message_reaction_updated.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_poll.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_pre_checkout_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_pre_checkout_query.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_raw_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_raw_update.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_story.py -------------------------------------------------------------------------------- /pyrogram/methods/decorators/on_user_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/decorators/on_user_status.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/approve_all_chat_join_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/approve_all_chat_join_requests.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/approve_chat_join_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/approve_chat_join_request.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/create_chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/create_chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/decline_all_chat_join_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/decline_all_chat_join_requests.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/decline_chat_join_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/decline_chat_join_request.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/delete_chat_admin_invite_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/delete_chat_admin_invite_links.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/delete_chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/delete_chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/edit_chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/edit_chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/export_chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/export_chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/get_chat_admin_invite_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/get_chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/get_chat_invite_link_joiners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/get_chat_join_requests.py -------------------------------------------------------------------------------- /pyrogram/methods/invite_links/revoke_chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/invite_links/revoke_chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/add_checklist_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/add_checklist_tasks.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/copy_media_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/copy_media_group.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/copy_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/copy_message.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/delete_chat_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/delete_chat_history.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/delete_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/delete_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/download_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/download_media.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_inline_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/edit_inline_caption.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_inline_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/edit_inline_media.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_inline_reply_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/edit_inline_reply_markup.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_inline_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/edit_inline_text.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_message_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/edit_message_caption.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_message_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/edit_message_media.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_message_reply_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/edit_message_reply_markup.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/edit_message_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/edit_message_text.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/forward_media_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/forward_media_group.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/forward_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/forward_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_available_effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/get_available_effects.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_chat_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/get_chat_history.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_chat_history_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/get_chat_history_count.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_custom_emoji_stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/get_custom_emoji_stickers.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_discussion_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/get_discussion_message.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_discussion_replies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/get_discussion_replies.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_discussion_replies_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/get_discussion_replies_count.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_media_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/get_media_group.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_message_read_participants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/get_message_read_participants.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/get_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_scheduled_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/get_scheduled_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/get_stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/get_stickers.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/inline_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/inline_session.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/mark_checklist_tasks_as_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/mark_checklist_tasks_as_done.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/read_chat_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/read_chat_history.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/retract_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/retract_vote.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/search_global.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_global_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/search_global_count.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_global_hashtag_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/search_global_hashtag_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_global_hashtag_messages_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/search_global_hashtag_messages_count.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/search_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_messages_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/search_messages_count.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/search_posts.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/search_posts_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/search_posts_count.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_animation.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_audio.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_cached_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_cached_media.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_chat_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_chat_action.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_checklist.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_contact.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_dice.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_document.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_invoice.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_location.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_media_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_media_group.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_message.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_paid_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_paid_media.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_photo.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_poll.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_reaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_reaction.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_sticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_sticker.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_venue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_venue.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_video.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_video_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_video_note.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_voice.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/send_web_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/send_web_page.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/start_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/start_bot.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/stop_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/stop_poll.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/stream_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/stream_media.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/transcribe_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/transcribe_audio.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/translate_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/translate_text.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/view_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/view_messages.py -------------------------------------------------------------------------------- /pyrogram/methods/messages/vote_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/messages/vote_poll.py -------------------------------------------------------------------------------- /pyrogram/methods/password/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/password/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/password/change_cloud_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/password/change_cloud_password.py -------------------------------------------------------------------------------- /pyrogram/methods/password/enable_cloud_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/password/enable_cloud_password.py -------------------------------------------------------------------------------- /pyrogram/methods/password/remove_cloud_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/password/remove_cloud_password.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/payments/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/check_giftcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/payments/check_giftcode.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/get_payment_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/payments/get_payment_form.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/send_paid_reaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/payments/send_paid_reaction.py -------------------------------------------------------------------------------- /pyrogram/methods/payments/send_payment_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/payments/send_payment_form.py -------------------------------------------------------------------------------- /pyrogram/methods/phone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/phone/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/phone/get_call_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/phone/get_call_members.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/ask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/ask.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/get_listener_matching_with_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/get_listener_matching_with_data.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/get_listener_matching_with_identifier_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/get_listener_matching_with_identifier_pattern.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/get_many_listeners_matching_with_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/get_many_listeners_matching_with_data.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/get_many_listeners_matching_with_identifier_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/get_many_listeners_matching_with_identifier_pattern.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/listen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/listen.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/register_next_step_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/register_next_step_handler.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/remove_listerner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/remove_listerner.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/stop_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/stop_listener.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/stop_listening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/stop_listening.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/wait_for_callback_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/wait_for_callback_query.py -------------------------------------------------------------------------------- /pyrogram/methods/pyromod/wait_for_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/pyromod/wait_for_message.py -------------------------------------------------------------------------------- /pyrogram/methods/stickers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/stickers/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/stickers/add_sticker_to_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/stickers/add_sticker_to_set.py -------------------------------------------------------------------------------- /pyrogram/methods/stickers/create_sticker_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/stickers/create_sticker_set.py -------------------------------------------------------------------------------- /pyrogram/methods/stickers/get_sticker_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/stickers/get_sticker_set.py -------------------------------------------------------------------------------- /pyrogram/methods/users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/users/block_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/block_user.py -------------------------------------------------------------------------------- /pyrogram/methods/users/check_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/check_username.py -------------------------------------------------------------------------------- /pyrogram/methods/users/delete_profile_photos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/delete_profile_photos.py -------------------------------------------------------------------------------- /pyrogram/methods/users/delete_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/delete_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/users/edit_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/edit_story.py -------------------------------------------------------------------------------- /pyrogram/methods/users/export_story_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/export_story_link.py -------------------------------------------------------------------------------- /pyrogram/methods/users/forward_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/forward_story.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_all_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/get_all_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_chat_photos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/get_chat_photos.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_chat_photos_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/get_chat_photos_count.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_common_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/get_common_chats.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_default_emoji_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/get_default_emoji_statuses.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/get_me.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_peer_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/get_peer_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/get_stories.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_stories_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/get_stories_history.py -------------------------------------------------------------------------------- /pyrogram/methods/users/get_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/get_users.py -------------------------------------------------------------------------------- /pyrogram/methods/users/send_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/send_story.py -------------------------------------------------------------------------------- /pyrogram/methods/users/set_emoji_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/set_emoji_status.py -------------------------------------------------------------------------------- /pyrogram/methods/users/set_profile_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/set_profile_photo.py -------------------------------------------------------------------------------- /pyrogram/methods/users/set_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/set_username.py -------------------------------------------------------------------------------- /pyrogram/methods/users/unblock_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/unblock_user.py -------------------------------------------------------------------------------- /pyrogram/methods/users/update_birthday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/update_birthday.py -------------------------------------------------------------------------------- /pyrogram/methods/users/update_personal_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/update_personal_chat.py -------------------------------------------------------------------------------- /pyrogram/methods/users/update_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/users/update_profile.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/__init__.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/add_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/add_handler.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/compose.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/export_session_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/export_session_string.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/idle.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/ping.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/remove_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/remove_handler.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/restart.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/run.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/run_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/run_sync.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/start.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/stop.py -------------------------------------------------------------------------------- /pyrogram/methods/utilities/stop_transmission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/methods/utilities/stop_transmission.py -------------------------------------------------------------------------------- /pyrogram/mime_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/mime_types.py -------------------------------------------------------------------------------- /pyrogram/nav/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/nav/__init__.py -------------------------------------------------------------------------------- /pyrogram/nav/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/nav/pagination.py -------------------------------------------------------------------------------- /pyrogram/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/parser/__init__.py -------------------------------------------------------------------------------- /pyrogram/parser/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/parser/html.py -------------------------------------------------------------------------------- /pyrogram/parser/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/parser/markdown.py -------------------------------------------------------------------------------- /pyrogram/parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/parser/parser.py -------------------------------------------------------------------------------- /pyrogram/parser/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/parser/utils.py -------------------------------------------------------------------------------- /pyrogram/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrogram/raw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/__init__.py -------------------------------------------------------------------------------- /pyrogram/raw/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/__init__.py -------------------------------------------------------------------------------- /pyrogram/raw/core/future_salt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/future_salt.py -------------------------------------------------------------------------------- /pyrogram/raw/core/future_salts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/future_salts.py -------------------------------------------------------------------------------- /pyrogram/raw/core/gzip_packed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/gzip_packed.py -------------------------------------------------------------------------------- /pyrogram/raw/core/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/list.py -------------------------------------------------------------------------------- /pyrogram/raw/core/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/message.py -------------------------------------------------------------------------------- /pyrogram/raw/core/msg_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/msg_container.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/primitives/__init__.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/primitives/bool.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/primitives/bytes.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/double.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/primitives/double.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/primitives/int.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/primitives/string.py -------------------------------------------------------------------------------- /pyrogram/raw/core/primitives/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/primitives/vector.py -------------------------------------------------------------------------------- /pyrogram/raw/core/tl_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/raw/core/tl_object.py -------------------------------------------------------------------------------- /pyrogram/session/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/session/__init__.py -------------------------------------------------------------------------------- /pyrogram/session/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/session/auth.py -------------------------------------------------------------------------------- /pyrogram/session/internals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/session/internals/__init__.py -------------------------------------------------------------------------------- /pyrogram/session/internals/data_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/session/internals/data_center.py -------------------------------------------------------------------------------- /pyrogram/session/internals/msg_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/session/internals/msg_factory.py -------------------------------------------------------------------------------- /pyrogram/session/internals/msg_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/session/internals/msg_id.py -------------------------------------------------------------------------------- /pyrogram/session/internals/seq_no.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/session/internals/seq_no.py -------------------------------------------------------------------------------- /pyrogram/session/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/session/session.py -------------------------------------------------------------------------------- /pyrogram/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/storage/__init__.py -------------------------------------------------------------------------------- /pyrogram/storage/file_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/storage/file_storage.py -------------------------------------------------------------------------------- /pyrogram/storage/memory_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/storage/memory_storage.py -------------------------------------------------------------------------------- /pyrogram/storage/sqlite_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/storage/sqlite_storage.py -------------------------------------------------------------------------------- /pyrogram/storage/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/storage/storage.py -------------------------------------------------------------------------------- /pyrogram/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/sync.py -------------------------------------------------------------------------------- /pyrogram/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/authorization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/authorization/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/authorization/active_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/authorization/active_session.py -------------------------------------------------------------------------------- /pyrogram/types/authorization/active_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/authorization/active_sessions.py -------------------------------------------------------------------------------- /pyrogram/types/authorization/login_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/authorization/login_token.py -------------------------------------------------------------------------------- /pyrogram/types/authorization/sent_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/authorization/sent_code.py -------------------------------------------------------------------------------- /pyrogram/types/authorization/terms_of_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/authorization/terms_of_service.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_allowed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/bot_allowed.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/bot_app.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_business_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/bot_business_connection.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/bot_command.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_command_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/bot_command_scope_default.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/bot_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/bot_info.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/callback_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/callback_game.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/callback_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/callback_query.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/collectible_item_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/collectible_item_info.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/force_reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/force_reply.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/game_high_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/game_high_score.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/inline_keyboard_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/inline_keyboard_button.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/inline_keyboard_button_buy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/inline_keyboard_button_buy.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/keyboard_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/keyboard_button.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/login_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/login_url.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/menu_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/menu_button.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/menu_button_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/menu_button_commands.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/menu_button_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/menu_button_default.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/menu_button_web_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/menu_button_web_app.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/payment_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/payment_info.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/payment_refunded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/payment_refunded.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/pre_checkout_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/pre_checkout_query.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/request_peer_type_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/request_peer_type_channel.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/request_peer_type_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/request_peer_type_chat.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/request_peer_type_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/request_peer_type_user.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/requested_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/requested_chats.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/sent_web_app_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/sent_web_app_message.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/shipping_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/shipping_address.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/successful_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/successful_payment.py -------------------------------------------------------------------------------- /pyrogram/types/bots_and_keyboards/web_app_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/bots_and_keyboards/web_app_info.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/chosen_inline_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/chosen_inline_result.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query_result.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query_result_animation.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query_result_article.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query_result_audio.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_cached_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query_result_cached_voice.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query_result_contact.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query_result_document.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query_result_location.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query_result_photo.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_venue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query_result_venue.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query_result_video.py -------------------------------------------------------------------------------- /pyrogram/types/inline_mode/inline_query_result_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/inline_mode/inline_query_result_voice.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_media/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_media/input_media.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_media/input_media_animation.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_media/input_media_area.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media_area_channel_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_media/input_media_area_channel_post.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_media/input_media_audio.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_media/input_media_document.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_media/input_media_photo.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_media_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_media/input_media_video.py -------------------------------------------------------------------------------- /pyrogram/types/input_media/input_phone_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_media/input_phone_contact.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_message_content/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/input_contact_message_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_message_content/input_contact_message_content.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/input_invoice_message_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_message_content/input_invoice_message_content.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/input_location_message_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_message_content/input_location_message_content.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/input_message_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_message_content/input_message_content.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/input_reply_to_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_message_content/input_reply_to_message.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/input_reply_to_monoforum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_message_content/input_reply_to_monoforum.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/input_reply_to_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/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/eyMarv/pyroblack/HEAD/pyrogram/types/input_message_content/input_text_message_content.py -------------------------------------------------------------------------------- /pyrogram/types/input_message_content/input_venue_message_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_message_content/input_venue_message_content.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/input_privacy_rule/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/input_privacy_rule/input_privacy_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/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/eyMarv/pyroblack/HEAD/pyrogram/types/input_privacy_rule/input_privacy_rule_disallow_users.py -------------------------------------------------------------------------------- /pyrogram/types/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/list.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/alternative_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/alternative_video.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/animation.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/audio.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/available_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/available_effect.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/checked_gift_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/checked_gift_code.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/checklist.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/checklist_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/checklist_task.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/checklist_tasks_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/checklist_tasks_added.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/checklist_tasks_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/checklist_tasks_done.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/contact.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/dice.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/document.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/exported_story_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/exported_story_link.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/extended_media_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/extended_media_preview.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/external_reply_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/external_reply_info.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/game.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/gift_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/gift_code.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/giveaway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/giveaway.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/giveaway_launched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/giveaway_launched.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/giveaway_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/giveaway_result.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/input_checklist_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/input_checklist_task.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/invoice.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/labeled_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/labeled_price.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/location.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/media_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/media_area.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/media_area_channel_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/media_area_channel_post.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/media_area_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/media_area_coordinates.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_entity.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_invoice.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_origin.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_origin_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_origin_channel.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_origin_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_origin_chat.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_origin_hidden_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_origin_hidden_user.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_origin_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_origin_import.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_origin_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_origin_user.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_reaction_count_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_reaction_count_updated.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_reaction_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_reaction_updated.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_reactions.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_reactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_reactor.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/message_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/message_story.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/paid_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/paid_media.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/payment_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/payment_form.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/photo.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/poll.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/poll_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/poll_option.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/reaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/reaction.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/reaction_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/reaction_count.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/reaction_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/reaction_type.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/read_participant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/read_participant.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/sticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/sticker.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/stickerset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/stickerset.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/stories_privacy_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/stories_privacy_rules.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/story.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/story_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/story_deleted.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/story_forward_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/story_forward_header.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/story_skipped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/story_skipped.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/story_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/story_views.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/stripped_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/stripped_thumbnail.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/text_quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/text_quote.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/thumbnail.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/transcribed_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/transcribed_audio.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/translated_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/translated_text.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/venue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/venue.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/video.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/video_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/video_note.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/voice.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/web_app_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/web_app_data.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/web_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/web_page.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/web_page_empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/web_page_empty.py -------------------------------------------------------------------------------- /pyrogram/types/messages_and_media/web_page_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/messages_and_media/web_page_preview.py -------------------------------------------------------------------------------- /pyrogram/types/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/object.py -------------------------------------------------------------------------------- /pyrogram/types/pyromod/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/pyromod/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/pyromod/identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/pyromod/identifier.py -------------------------------------------------------------------------------- /pyrogram/types/pyromod/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/pyromod/listener.py -------------------------------------------------------------------------------- /pyrogram/types/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/update.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/__init__.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/birthday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/birthday.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/business_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/business_info.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/business_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/business_message.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/business_recipients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/business_recipients.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/business_weekly_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/business_weekly_open.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/business_working_hours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/business_working_hours.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_admin_with_invite_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_admin_with_invite_links.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_color.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_event.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_event_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_event_filter.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_invite_link.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_join_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_join_request.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_joined_by_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_joined_by_request.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_joiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_joiner.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_member.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_member_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_member_updated.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_permissions.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_photo.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_preview.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_privileges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_privileges.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/chat_reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/chat_reactions.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/dialog.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/emoji_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/emoji_status.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/folder.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/forum_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/forum_topic.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/forum_topic_closed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/forum_topic_closed.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/forum_topic_created.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/forum_topic_created.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/forum_topic_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/forum_topic_deleted.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/forum_topic_edited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/forum_topic_edited.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/forum_topic_reopened.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/forum_topic_reopened.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/found_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/found_contacts.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/general_forum_topic_hidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/general_forum_topic_hidden.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/general_forum_topic_unhidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/general_forum_topic_unhidden.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/group_call_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/group_call_member.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/invite_link_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/invite_link_importer.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/peer_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/peer_channel.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/peer_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/peer_user.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/privacy_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/privacy_rule.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/restriction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/restriction.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/user.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/username.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/video_chat_ended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/video_chat_ended.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/video_chat_members_invited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/video_chat_members_invited.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/video_chat_scheduled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/video_chat_scheduled.py -------------------------------------------------------------------------------- /pyrogram/types/user_and_chats/video_chat_started.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/types/user_and_chats/video_chat_started.py -------------------------------------------------------------------------------- /pyrogram/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/pyrogram/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/tests/filters/__init__.py -------------------------------------------------------------------------------- /tests/filters/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/tests/filters/test_command.py -------------------------------------------------------------------------------- /tests/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/tests/parser/__init__.py -------------------------------------------------------------------------------- /tests/parser/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/tests/parser/test_html.py -------------------------------------------------------------------------------- /tests/test_file_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyMarv/pyroblack/HEAD/tests/test_file_id.py --------------------------------------------------------------------------------