hypergram 1.2.25__tar.gz → 1.2.27__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hypergram-1.2.27/NOTICE +17 -0
- hypergram-1.2.27/PKG-INFO +151 -0
- hypergram-1.2.27/README.md +90 -0
- hypergram-1.2.27/compiler/__init__.py +17 -0
- hypergram-1.2.27/compiler/api/__init__.py +17 -0
- hypergram-1.2.27/compiler/api/compiler.py +696 -0
- hypergram-1.2.27/compiler/errors/__init__.py +17 -0
- hypergram-1.2.27/compiler/errors/compiler.py +142 -0
- hypergram-1.2.27/compiler/errors/sort.py +35 -0
- hypergram-1.2.27/hatch_build.py +35 -0
- hypergram-1.2.27/hypergram/__init__.py +33 -0
- hypergram-1.2.27/hypergram/client.py +1716 -0
- hypergram-1.2.27/hypergram/connection/__init__.py +17 -0
- hypergram-1.2.27/hypergram/connection/connection.py +99 -0
- hypergram-1.2.27/hypergram/connection/transport/__init__.py +17 -0
- hypergram-1.2.27/hypergram/connection/transport/tcp/__init__.py +17 -0
- hypergram-1.2.27/hypergram/connection/transport/tcp/tcp.py +264 -0
- hypergram-1.2.27/hypergram/connection/transport/tcp/tcp_abridged.py +68 -0
- hypergram-1.2.27/hypergram/connection/transport/tcp/tcp_abridged_o.py +105 -0
- hypergram-1.2.27/hypergram/connection/transport/tcp/tcp_full.py +73 -0
- hypergram-1.2.27/hypergram/connection/transport/tcp/tcp_intermediate.py +54 -0
- hypergram-1.2.27/hypergram/connection/transport/tcp/tcp_intermediate_o.py +90 -0
- hypergram-1.2.27/hypergram/crypto/__init__.py +17 -0
- hypergram-1.2.27/hypergram/crypto/aes.py +127 -0
- hypergram-1.2.27/hypergram/crypto/mtproto.py +109 -0
- hypergram-1.2.27/hypergram/crypto/prime.py +83 -0
- hypergram-1.2.27/hypergram/crypto/rsa.py +260 -0
- hypergram-1.2.27/hypergram/dispatcher.py +542 -0
- hypergram-1.2.27/hypergram/enums/__init__.py +107 -0
- hypergram-1.2.27/hypergram/enums/auto_name.py +27 -0
- hypergram-1.2.27/hypergram/enums/block_list.py +31 -0
- hypergram-1.2.27/hypergram/enums/business_schedule.py +34 -0
- hypergram-1.2.27/hypergram/enums/button_style.py +37 -0
- hypergram-1.2.27/hypergram/enums/chat_action.py +72 -0
- hypergram-1.2.27/hypergram/enums/chat_event_action.py +140 -0
- hypergram-1.2.27/hypergram/enums/chat_join_request_query_result.py +34 -0
- hypergram-1.2.27/hypergram/enums/chat_join_type.py +34 -0
- hypergram-1.2.27/hypergram/enums/chat_member_status.py +43 -0
- hypergram-1.2.27/hypergram/enums/chat_members_filter.py +42 -0
- hypergram-1.2.27/hypergram/enums/chat_type.py +46 -0
- hypergram-1.2.27/hypergram/enums/client_platform.py +49 -0
- hypergram-1.2.27/hypergram/enums/folder_color.py +47 -0
- hypergram-1.2.27/hypergram/enums/gift_attribute_type.py +36 -0
- hypergram-1.2.27/hypergram/enums/gift_for_resale_order.py +34 -0
- hypergram-1.2.27/hypergram/enums/gift_purchase_offer_state.py +34 -0
- hypergram-1.2.27/hypergram/enums/gift_type.py +31 -0
- hypergram-1.2.27/hypergram/enums/mask_point_type.py +35 -0
- hypergram-1.2.27/hypergram/enums/media_area_type.py +46 -0
- hypergram-1.2.27/hypergram/enums/message_entity_type.py +87 -0
- hypergram-1.2.27/hypergram/enums/message_media_type.py +94 -0
- hypergram-1.2.27/hypergram/enums/message_origin_type.py +40 -0
- hypergram-1.2.27/hypergram/enums/message_service_type.py +235 -0
- hypergram-1.2.27/hypergram/enums/messages_filter.py +78 -0
- hypergram-1.2.27/hypergram/enums/next_code_type.py +39 -0
- hypergram-1.2.27/hypergram/enums/paid_reaction_privacy.py +34 -0
- hypergram-1.2.27/hypergram/enums/parse_mode.py +37 -0
- hypergram-1.2.27/hypergram/enums/payment_form_type.py +34 -0
- hypergram-1.2.27/hypergram/enums/phone_call_discard_reason.py +40 -0
- hypergram-1.2.27/hypergram/enums/phone_number_code_type.py +34 -0
- hypergram-1.2.27/hypergram/enums/poll_type.py +31 -0
- hypergram-1.2.27/hypergram/enums/privacy_key.py +66 -0
- hypergram-1.2.27/hypergram/enums/privacy_rule_type.py +61 -0
- hypergram-1.2.27/hypergram/enums/profile_color.py +71 -0
- hypergram-1.2.27/hypergram/enums/profile_tab.py +48 -0
- hypergram-1.2.27/hypergram/enums/reply_color.py +94 -0
- hypergram-1.2.27/hypergram/enums/sent_code_type.py +57 -0
- hypergram-1.2.27/hypergram/enums/sticker_type.py +34 -0
- hypergram-1.2.27/hypergram/enums/stories_privacy_rules.py +36 -0
- hypergram-1.2.27/hypergram/enums/suggested_post_refund_reason.py +31 -0
- hypergram-1.2.27/hypergram/enums/suggested_post_state.py +34 -0
- hypergram-1.2.27/hypergram/enums/top_chat_category.py +54 -0
- hypergram-1.2.27/hypergram/enums/upgraded_gift_origin.py +46 -0
- hypergram-1.2.27/hypergram/enums/user_status.py +43 -0
- hypergram-1.2.27/hypergram/errors/__init__.py +66 -0
- hypergram-1.2.27/hypergram/errors/rpc_error.py +102 -0
- hypergram-1.2.27/hypergram/file_id.py +512 -0
- hypergram-1.2.27/hypergram/filters.py +1294 -0
- hypergram-1.2.27/hypergram/handlers/__init__.py +17 -0
- hypergram-1.2.27/hypergram/handlers/business_connection_handler.py +58 -0
- hypergram-1.2.27/hypergram/handlers/business_message_handler.py +58 -0
- hypergram-1.2.27/hypergram/handlers/callback_query_handler.py +57 -0
- hypergram-1.2.27/hypergram/handlers/chat_boost_handler.py +57 -0
- hypergram-1.2.27/hypergram/handlers/chat_join_request_handler.py +57 -0
- hypergram-1.2.27/hypergram/handlers/chat_member_updated_handler.py +57 -0
- hypergram-1.2.27/hypergram/handlers/chosen_inline_result_handler.py +58 -0
- hypergram-1.2.27/hypergram/handlers/connect_handler.py +52 -0
- hypergram-1.2.27/hypergram/handlers/deleted_business_messages_handler.py +69 -0
- hypergram-1.2.27/hypergram/handlers/deleted_messages_handler.py +68 -0
- hypergram-1.2.27/hypergram/handlers/disconnect_handler.py +52 -0
- hypergram-1.2.27/hypergram/handlers/edited_business_message_handler.py +58 -0
- hypergram-1.2.27/hypergram/handlers/edited_message_handler.py +57 -0
- hypergram-1.2.27/hypergram/handlers/error_handler.py +98 -0
- hypergram-1.2.27/hypergram/handlers/guest_message_handler.py +57 -0
- hypergram-1.2.27/hypergram/handlers/handler.py +41 -0
- hypergram-1.2.27/hypergram/handlers/inline_query_handler.py +57 -0
- hypergram-1.2.27/hypergram/handlers/managed_bot_updated_handler.py +55 -0
- hypergram-1.2.27/hypergram/handlers/message_handler.py +57 -0
- hypergram-1.2.27/hypergram/handlers/message_reaction_count_handler.py +61 -0
- hypergram-1.2.27/hypergram/handlers/message_reaction_handler.py +59 -0
- hypergram-1.2.27/hypergram/handlers/poll_handler.py +56 -0
- hypergram-1.2.27/hypergram/handlers/pre_checkout_query_handler.py +57 -0
- hypergram-1.2.27/hypergram/handlers/purchased_paid_media_handler.py +57 -0
- hypergram-1.2.27/hypergram/handlers/raw_update_handler.py +87 -0
- hypergram-1.2.27/hypergram/handlers/shipping_query_handler.py +58 -0
- hypergram-1.2.27/hypergram/handlers/start_handler.py +46 -0
- hypergram-1.2.27/hypergram/handlers/stop_handler.py +46 -0
- hypergram-1.2.27/hypergram/handlers/story_handler.py +55 -0
- hypergram-1.2.27/hypergram/handlers/user_status_handler.py +53 -0
- hypergram-1.2.27/hypergram/methods/__init__.py +59 -0
- hypergram-1.2.27/hypergram/methods/account/__init__.py +43 -0
- hypergram-1.2.27/hypergram/methods/account/add_profile_audio.py +159 -0
- hypergram-1.2.27/hypergram/methods/account/get_account_ttl.py +42 -0
- hypergram-1.2.27/hypergram/methods/account/get_global_privacy_settings.py +41 -0
- hypergram-1.2.27/hypergram/methods/account/get_privacy.py +50 -0
- hypergram-1.2.27/hypergram/methods/account/remove_profile_audio.py +50 -0
- hypergram-1.2.27/hypergram/methods/account/set_account_ttl.py +50 -0
- hypergram-1.2.27/hypergram/methods/account/set_global_privacy_settings.py +124 -0
- hypergram-1.2.27/hypergram/methods/account/set_inactive_session_ttl.py +50 -0
- hypergram-1.2.27/hypergram/methods/account/set_privacy.py +79 -0
- hypergram-1.2.27/hypergram/methods/account/set_profile_audio_position.py +69 -0
- hypergram-1.2.27/hypergram/methods/advanced/__init__.py +26 -0
- hypergram-1.2.27/hypergram/methods/advanced/invoke.py +125 -0
- hypergram-1.2.27/hypergram/methods/advanced/recover_gaps.py +161 -0
- hypergram-1.2.27/hypergram/methods/advanced/resolve_peer.py +150 -0
- hypergram-1.2.27/hypergram/methods/advanced/save_file.py +229 -0
- hypergram-1.2.27/hypergram/methods/auth/__init__.py +61 -0
- hypergram-1.2.27/hypergram/methods/auth/accept_terms_of_service.py +41 -0
- hypergram-1.2.27/hypergram/methods/auth/change_phone_number.py +62 -0
- hypergram-1.2.27/hypergram/methods/auth/check_password.py +56 -0
- hypergram-1.2.27/hypergram/methods/auth/connect.py +54 -0
- hypergram-1.2.27/hypergram/methods/auth/disconnect.py +41 -0
- hypergram-1.2.27/hypergram/methods/auth/get_active_sessions.py +35 -0
- hypergram-1.2.27/hypergram/methods/auth/get_password_hint.py +38 -0
- hypergram-1.2.27/hypergram/methods/auth/initialize.py +49 -0
- hypergram-1.2.27/hypergram/methods/auth/log_out.py +51 -0
- hypergram-1.2.27/hypergram/methods/auth/recover_password.py +52 -0
- hypergram-1.2.27/hypergram/methods/auth/resend_phone_number_code.py +63 -0
- hypergram-1.2.27/hypergram/methods/auth/reset_session.py +39 -0
- hypergram-1.2.27/hypergram/methods/auth/reset_sessions.py +37 -0
- hypergram-1.2.27/hypergram/methods/auth/send_phone_number_code.py +187 -0
- hypergram-1.2.27/hypergram/methods/auth/send_recovery_code.py +43 -0
- hypergram-1.2.27/hypergram/methods/auth/sign_in.py +81 -0
- hypergram-1.2.27/hypergram/methods/auth/sign_in_bot.py +75 -0
- hypergram-1.2.27/hypergram/methods/auth/sign_up.py +73 -0
- hypergram-1.2.27/hypergram/methods/auth/terminate.py +64 -0
- hypergram-1.2.27/hypergram/methods/bots/__init__.py +99 -0
- hypergram-1.2.27/hypergram/methods/bots/answer_callback_query.py +81 -0
- hypergram-1.2.27/hypergram/methods/bots/answer_chat_join_request_query.py +47 -0
- hypergram-1.2.27/hypergram/methods/bots/answer_guest_query.py +61 -0
- hypergram-1.2.27/hypergram/methods/bots/answer_inline_query.py +115 -0
- hypergram-1.2.27/hypergram/methods/bots/answer_pre_checkout_query.py +64 -0
- hypergram-1.2.27/hypergram/methods/bots/answer_shipping_query.py +82 -0
- hypergram-1.2.27/hypergram/methods/bots/answer_web_app_query.py +52 -0
- hypergram-1.2.27/hypergram/methods/bots/check_bot_username.py +39 -0
- hypergram-1.2.27/hypergram/methods/bots/create_bot.py +64 -0
- hypergram-1.2.27/hypergram/methods/bots/create_invoice_link.py +173 -0
- hypergram-1.2.27/hypergram/methods/bots/delete_bot_commands.py +62 -0
- hypergram-1.2.27/hypergram/methods/bots/edit_user_star_subscription.py +56 -0
- hypergram-1.2.27/hypergram/methods/bots/get_bot_commands.py +67 -0
- hypergram-1.2.27/hypergram/methods/bots/get_bot_default_privileges.py +60 -0
- hypergram-1.2.27/hypergram/methods/bots/get_bot_info_description.py +63 -0
- hypergram-1.2.27/hypergram/methods/bots/get_bot_info_short_description.py +63 -0
- hypergram-1.2.27/hypergram/methods/bots/get_bot_name.py +62 -0
- hypergram-1.2.27/hypergram/methods/bots/get_chat_menu_button.py +63 -0
- hypergram-1.2.27/hypergram/methods/bots/get_game_high_scores.py +74 -0
- hypergram-1.2.27/hypergram/methods/bots/get_inline_bot_results.py +93 -0
- hypergram-1.2.27/hypergram/methods/bots/get_managed_bot_access_settings.py +47 -0
- hypergram-1.2.27/hypergram/methods/bots/get_managed_bot_token.py +47 -0
- hypergram-1.2.27/hypergram/methods/bots/get_owned_bots.py +44 -0
- hypergram-1.2.27/hypergram/methods/bots/refund_star_payment.py +54 -0
- hypergram-1.2.27/hypergram/methods/bots/replace_managed_bot_token.py +47 -0
- hypergram-1.2.27/hypergram/methods/bots/request_callback_answer.py +93 -0
- hypergram-1.2.27/hypergram/methods/bots/send_chat_join_request_web_app.py +49 -0
- hypergram-1.2.27/hypergram/methods/bots/send_game.py +135 -0
- hypergram-1.2.27/hypergram/methods/bots/send_inline_bot_result.py +168 -0
- hypergram-1.2.27/hypergram/methods/bots/send_invoice.py +272 -0
- hypergram-1.2.27/hypergram/methods/bots/set_bot_commands.py +73 -0
- hypergram-1.2.27/hypergram/methods/bots/set_bot_default_privileges.py +85 -0
- hypergram-1.2.27/hypergram/methods/bots/set_bot_info_description.py +66 -0
- hypergram-1.2.27/hypergram/methods/bots/set_bot_info_short_description.py +66 -0
- hypergram-1.2.27/hypergram/methods/bots/set_bot_name.py +66 -0
- hypergram-1.2.27/hypergram/methods/bots/set_chat_menu_button.py +57 -0
- hypergram-1.2.27/hypergram/methods/bots/set_game_score.py +102 -0
- hypergram-1.2.27/hypergram/methods/bots/set_managed_bot_access_settings.py +64 -0
- hypergram-1.2.27/hypergram/methods/business/__init__.py +33 -0
- hypergram-1.2.27/hypergram/methods/business/delete_business_messages.py +69 -0
- hypergram-1.2.27/hypergram/methods/business/get_business_account_gifts.py +155 -0
- hypergram-1.2.27/hypergram/methods/business/get_business_account_star_balance.py +59 -0
- hypergram-1.2.27/hypergram/methods/business/get_business_connection.py +52 -0
- hypergram-1.2.27/hypergram/methods/business/transfer_business_account_stars.py +74 -0
- hypergram-1.2.27/hypergram/methods/chats/__init__.py +183 -0
- hypergram-1.2.27/hypergram/methods/chats/add_chat_members.py +96 -0
- hypergram-1.2.27/hypergram/methods/chats/archive_chats.py +68 -0
- hypergram-1.2.27/hypergram/methods/chats/ban_chat_member.py +126 -0
- hypergram-1.2.27/hypergram/methods/chats/close_forum_topic.py +54 -0
- hypergram-1.2.27/hypergram/methods/chats/create_channel.py +52 -0
- hypergram-1.2.27/hypergram/methods/chats/create_folder.py +181 -0
- hypergram-1.2.27/hypergram/methods/chats/create_folder_invite_link.py +67 -0
- hypergram-1.2.27/hypergram/methods/chats/create_forum_topic.py +68 -0
- hypergram-1.2.27/hypergram/methods/chats/create_group.py +66 -0
- hypergram-1.2.27/hypergram/methods/chats/create_supergroup.py +78 -0
- hypergram-1.2.27/hypergram/methods/chats/delete_all_message_reactions.py +74 -0
- hypergram-1.2.27/hypergram/methods/chats/delete_channel.py +51 -0
- hypergram-1.2.27/hypergram/methods/chats/delete_chat_photo.py +67 -0
- hypergram-1.2.27/hypergram/methods/chats/delete_folder.py +44 -0
- hypergram-1.2.27/hypergram/methods/chats/delete_folder_invite_link.py +71 -0
- hypergram-1.2.27/hypergram/methods/chats/delete_forum_topic.py +54 -0
- hypergram-1.2.27/hypergram/methods/chats/delete_message_reaction.py +81 -0
- hypergram-1.2.27/hypergram/methods/chats/delete_supergroup.py +51 -0
- hypergram-1.2.27/hypergram/methods/chats/delete_user_history.py +55 -0
- hypergram-1.2.27/hypergram/methods/chats/edit_folder.py +188 -0
- hypergram-1.2.27/hypergram/methods/chats/edit_folder_invite_link.py +92 -0
- hypergram-1.2.27/hypergram/methods/chats/edit_forum_topic.py +77 -0
- hypergram-1.2.27/hypergram/methods/chats/get_chat.py +106 -0
- hypergram-1.2.27/hypergram/methods/chats/get_chat_event_log.py +109 -0
- hypergram-1.2.27/hypergram/methods/chats/get_chat_member.py +85 -0
- hypergram-1.2.27/hypergram/methods/chats/get_chat_members.py +158 -0
- hypergram-1.2.27/hypergram/methods/chats/get_chat_members_count.py +60 -0
- hypergram-1.2.27/hypergram/methods/chats/get_chat_online_count.py +50 -0
- hypergram-1.2.27/hypergram/methods/chats/get_chat_settings.py +60 -0
- hypergram-1.2.27/hypergram/methods/chats/get_chats_for_folder_invite_link.py +81 -0
- hypergram-1.2.27/hypergram/methods/chats/get_dialogs.py +142 -0
- hypergram-1.2.27/hypergram/methods/chats/get_dialogs_count.py +78 -0
- hypergram-1.2.27/hypergram/methods/chats/get_direct_messages_topics.py +119 -0
- hypergram-1.2.27/hypergram/methods/chats/get_direct_messages_topics_by_id.py +81 -0
- hypergram-1.2.27/hypergram/methods/chats/get_folder_invite_links.py +51 -0
- hypergram-1.2.27/hypergram/methods/chats/get_folders.py +81 -0
- hypergram-1.2.27/hypergram/methods/chats/get_forum_topics.py +105 -0
- hypergram-1.2.27/hypergram/methods/chats/get_forum_topics_by_id.py +79 -0
- hypergram-1.2.27/hypergram/methods/chats/get_personal_channels.py +46 -0
- hypergram-1.2.27/hypergram/methods/chats/get_send_as_chats.py +73 -0
- hypergram-1.2.27/hypergram/methods/chats/get_similar_channels.py +61 -0
- hypergram-1.2.27/hypergram/methods/chats/get_suitable_discussion_chats.py +45 -0
- hypergram-1.2.27/hypergram/methods/chats/get_top_chats.py +108 -0
- hypergram-1.2.27/hypergram/methods/chats/join_chat.py +67 -0
- hypergram-1.2.27/hypergram/methods/chats/join_folder.py +76 -0
- hypergram-1.2.27/hypergram/methods/chats/leave_chat.py +71 -0
- hypergram-1.2.27/hypergram/methods/chats/leave_folder.py +82 -0
- hypergram-1.2.27/hypergram/methods/chats/mark_chat_unread.py +46 -0
- hypergram-1.2.27/hypergram/methods/chats/pin_chat_message.py +77 -0
- hypergram-1.2.27/hypergram/methods/chats/pin_forum_topic.py +53 -0
- hypergram-1.2.27/hypergram/methods/chats/process_chat_has_protected_content_disable_request.py +60 -0
- hypergram-1.2.27/hypergram/methods/chats/promote_chat_member.py +107 -0
- hypergram-1.2.27/hypergram/methods/chats/reorder_folders.py +59 -0
- hypergram-1.2.27/hypergram/methods/chats/restrict_chat_member.py +85 -0
- hypergram-1.2.27/hypergram/methods/chats/set_administrator_title.py +85 -0
- hypergram-1.2.27/hypergram/methods/chats/set_chat_description.py +61 -0
- hypergram-1.2.27/hypergram/methods/chats/set_chat_direct_messages_group.py +67 -0
- hypergram-1.2.27/hypergram/methods/chats/set_chat_discussion_group.py +97 -0
- hypergram-1.2.27/hypergram/methods/chats/set_chat_member_tag.py +68 -0
- hypergram-1.2.27/hypergram/methods/chats/set_chat_permissions.py +75 -0
- hypergram-1.2.27/hypergram/methods/chats/set_chat_photo.py +121 -0
- hypergram-1.2.27/hypergram/methods/chats/set_chat_protected_content.py +51 -0
- hypergram-1.2.27/hypergram/methods/chats/set_chat_title.py +69 -0
- hypergram-1.2.27/hypergram/methods/chats/set_chat_ttl.py +65 -0
- hypergram-1.2.27/hypergram/methods/chats/set_chat_username.py +65 -0
- hypergram-1.2.27/hypergram/methods/chats/set_main_profile_tab.py +70 -0
- hypergram-1.2.27/hypergram/methods/chats/set_send_as_chat.py +57 -0
- hypergram-1.2.27/hypergram/methods/chats/set_slow_mode.py +60 -0
- hypergram-1.2.27/hypergram/methods/chats/set_upgraded_gift_colors.py +46 -0
- hypergram-1.2.27/hypergram/methods/chats/toggle_folder_tags.py +48 -0
- hypergram-1.2.27/hypergram/methods/chats/toggle_forum_topics.py +72 -0
- hypergram-1.2.27/hypergram/methods/chats/toggle_join_to_send.py +62 -0
- hypergram-1.2.27/hypergram/methods/chats/transfer_chat_ownership.py +84 -0
- hypergram-1.2.27/hypergram/methods/chats/unarchive_chats.py +68 -0
- hypergram-1.2.27/hypergram/methods/chats/unban_chat_member.py +60 -0
- hypergram-1.2.27/hypergram/methods/chats/unpin_all_chat_messages.py +55 -0
- hypergram-1.2.27/hypergram/methods/chats/unpin_chat_message.py +57 -0
- hypergram-1.2.27/hypergram/methods/chats/unpin_forum_topic.py +54 -0
- hypergram-1.2.27/hypergram/methods/chats/update_chat_notifications.py +92 -0
- hypergram-1.2.27/hypergram/methods/chats/update_color.py +77 -0
- hypergram-1.2.27/hypergram/methods/contacts/__init__.py +39 -0
- hypergram-1.2.27/hypergram/methods/contacts/add_contact.py +85 -0
- hypergram-1.2.27/hypergram/methods/contacts/delete_contacts.py +65 -0
- hypergram-1.2.27/hypergram/methods/contacts/get_blocked_message_senders.py +87 -0
- hypergram-1.2.27/hypergram/methods/contacts/get_contacts.py +45 -0
- hypergram-1.2.27/hypergram/methods/contacts/get_contacts_count.py +41 -0
- hypergram-1.2.27/hypergram/methods/contacts/import_contacts.py +55 -0
- hypergram-1.2.27/hypergram/methods/contacts/search_contacts.py +50 -0
- hypergram-1.2.27/hypergram/methods/contacts/set_contact_note.py +64 -0
- hypergram-1.2.27/hypergram/methods/decorators/__init__.py +81 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_business_connection.py +65 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_business_message.py +65 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_callback_query.py +65 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_chat_boost.py +66 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_chat_join_request.py +64 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_chat_member_updated.py +64 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_chosen_inline_result.py +65 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_connect.py +45 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_deleted_business_messages.py +66 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_deleted_messages.py +65 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_disconnect.py +45 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_edited_business_message.py +66 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_edited_message.py +65 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_error.py +67 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_guest_message.py +65 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_inline_query.py +65 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_managed_bot.py +65 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_message.py +65 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_message_reaction.py +60 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_message_reaction_count.py +60 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_poll.py +63 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_pre_checkout_query.py +65 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_purchased_paid_media.py +60 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_raw_update.py +65 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_shipping_query.py +66 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_start.py +45 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_stop.py +45 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_story.py +63 -0
- hypergram-1.2.27/hypergram/methods/decorators/on_user_status.py +63 -0
- hypergram-1.2.27/hypergram/methods/folders/__init__.py +23 -0
- hypergram-1.2.27/hypergram/methods/folders/check_chat_folder_invite_link.py +51 -0
- hypergram-1.2.27/hypergram/methods/invite_links/__init__.py +58 -0
- hypergram-1.2.27/hypergram/methods/invite_links/approve_all_chat_join_requests.py +51 -0
- hypergram-1.2.27/hypergram/methods/invite_links/approve_chat_join_request.py +57 -0
- hypergram-1.2.27/hypergram/methods/invite_links/create_chat_invite_link.py +87 -0
- hypergram-1.2.27/hypergram/methods/invite_links/decline_all_chat_join_requests.py +51 -0
- hypergram-1.2.27/hypergram/methods/invite_links/decline_chat_join_request.py +57 -0
- hypergram-1.2.27/hypergram/methods/invite_links/delete_chat_admin_invite_links.py +54 -0
- hypergram-1.2.27/hypergram/methods/invite_links/delete_chat_invite_link.py +52 -0
- hypergram-1.2.27/hypergram/methods/invite_links/edit_chat_invite_link.py +92 -0
- hypergram-1.2.27/hypergram/methods/invite_links/export_chat_invite_link.py +65 -0
- hypergram-1.2.27/hypergram/methods/invite_links/get_chat_admin_invite_links.py +100 -0
- hypergram-1.2.27/hypergram/methods/invite_links/get_chat_admin_invite_links_count.py +62 -0
- hypergram-1.2.27/hypergram/methods/invite_links/get_chat_admins_with_invite_links.py +56 -0
- hypergram-1.2.27/hypergram/methods/invite_links/get_chat_invite_link.py +54 -0
- hypergram-1.2.27/hypergram/methods/invite_links/get_chat_invite_link_joiners.py +87 -0
- hypergram-1.2.27/hypergram/methods/invite_links/get_chat_invite_link_joiners_count.py +54 -0
- hypergram-1.2.27/hypergram/methods/invite_links/get_chat_join_requests.py +88 -0
- hypergram-1.2.27/hypergram/methods/invite_links/revoke_chat_invite_link.py +66 -0
- hypergram-1.2.27/hypergram/methods/messages/__init__.py +203 -0
- hypergram-1.2.27/hypergram/methods/messages/add_checklist_tasks.py +73 -0
- hypergram-1.2.27/hypergram/methods/messages/add_poll_option.py +72 -0
- hypergram-1.2.27/hypergram/methods/messages/add_to_gifs.py +59 -0
- hypergram-1.2.27/hypergram/methods/messages/approve_suggested_post.py +67 -0
- hypergram-1.2.27/hypergram/methods/messages/compose_text_with_ai.py +84 -0
- hypergram-1.2.27/hypergram/methods/messages/copy_media_group.py +247 -0
- hypergram-1.2.27/hypergram/methods/messages/copy_message.py +167 -0
- hypergram-1.2.27/hypergram/methods/messages/decline_suggested_post.py +63 -0
- hypergram-1.2.27/hypergram/methods/messages/delete_chat_history.py +104 -0
- hypergram-1.2.27/hypergram/methods/messages/delete_direct_messages_chat_topic_history.py +74 -0
- hypergram-1.2.27/hypergram/methods/messages/delete_messages.py +105 -0
- hypergram-1.2.27/hypergram/methods/messages/delete_poll_option.py +69 -0
- hypergram-1.2.27/hypergram/methods/messages/download_media.py +390 -0
- hypergram-1.2.27/hypergram/methods/messages/edit_inline_caption.py +65 -0
- hypergram-1.2.27/hypergram/methods/messages/edit_inline_media.py +258 -0
- hypergram-1.2.27/hypergram/methods/messages/edit_inline_reply_markup.py +68 -0
- hypergram-1.2.27/hypergram/methods/messages/edit_inline_text.py +125 -0
- hypergram-1.2.27/hypergram/methods/messages/edit_message_caption.py +100 -0
- hypergram-1.2.27/hypergram/methods/messages/edit_message_checklist.py +110 -0
- hypergram-1.2.27/hypergram/methods/messages/edit_message_media.py +144 -0
- hypergram-1.2.27/hypergram/methods/messages/edit_message_reply_markup.py +87 -0
- hypergram-1.2.27/hypergram/methods/messages/edit_message_text.py +171 -0
- hypergram-1.2.27/hypergram/methods/messages/fix_text_with_ai.py +57 -0
- hypergram-1.2.27/hypergram/methods/messages/forward_media_group.py +126 -0
- hypergram-1.2.27/hypergram/methods/messages/forward_messages.py +140 -0
- hypergram-1.2.27/hypergram/methods/messages/get_available_effects.py +57 -0
- hypergram-1.2.27/hypergram/methods/messages/get_chat_history.py +177 -0
- hypergram-1.2.27/hypergram/methods/messages/get_chat_history_count.py +82 -0
- hypergram-1.2.27/hypergram/methods/messages/get_custom_emoji_stickers.py +54 -0
- hypergram-1.2.27/hypergram/methods/messages/get_direct_messages_chat_topic_history.py +152 -0
- hypergram-1.2.27/hypergram/methods/messages/get_discussion_message.py +64 -0
- hypergram-1.2.27/hypergram/methods/messages/get_discussion_replies.py +86 -0
- hypergram-1.2.27/hypergram/methods/messages/get_discussion_replies_count.py +62 -0
- hypergram-1.2.27/hypergram/methods/messages/get_main_web_app.py +70 -0
- hypergram-1.2.27/hypergram/methods/messages/get_media_group.py +74 -0
- hypergram-1.2.27/hypergram/methods/messages/get_messages.py +256 -0
- hypergram-1.2.27/hypergram/methods/messages/get_scheduled_messages.py +62 -0
- hypergram-1.2.27/hypergram/methods/messages/get_stickers.py +67 -0
- hypergram-1.2.27/hypergram/methods/messages/get_user_personal_chat_messages.py +92 -0
- hypergram-1.2.27/hypergram/methods/messages/get_web_app_link_url.py +82 -0
- hypergram-1.2.27/hypergram/methods/messages/get_web_app_url.py +70 -0
- hypergram-1.2.27/hypergram/methods/messages/mark_checklist_tasks_as_done.py +74 -0
- hypergram-1.2.27/hypergram/methods/messages/open_web_app.py +91 -0
- hypergram-1.2.27/hypergram/methods/messages/read_chat_history.py +65 -0
- hypergram-1.2.27/hypergram/methods/messages/read_mentions.py +61 -0
- hypergram-1.2.27/hypergram/methods/messages/read_reactions.py +61 -0
- hypergram-1.2.27/hypergram/methods/messages/retract_vote.py +62 -0
- hypergram-1.2.27/hypergram/methods/messages/search_global.py +132 -0
- hypergram-1.2.27/hypergram/methods/messages/search_global_count.py +79 -0
- hypergram-1.2.27/hypergram/methods/messages/search_messages.py +186 -0
- hypergram-1.2.27/hypergram/methods/messages/search_messages_count.py +98 -0
- hypergram-1.2.27/hypergram/methods/messages/search_posts.py +96 -0
- hypergram-1.2.27/hypergram/methods/messages/search_posts_count.py +54 -0
- hypergram-1.2.27/hypergram/methods/messages/send_animation.py +407 -0
- hypergram-1.2.27/hypergram/methods/messages/send_audio.py +359 -0
- hypergram-1.2.27/hypergram/methods/messages/send_cached_media.py +231 -0
- hypergram-1.2.27/hypergram/methods/messages/send_chat_action.py +84 -0
- hypergram-1.2.27/hypergram/methods/messages/send_checklist.py +153 -0
- hypergram-1.2.27/hypergram/methods/messages/send_contact.py +216 -0
- hypergram-1.2.27/hypergram/methods/messages/send_dice.py +218 -0
- hypergram-1.2.27/hypergram/methods/messages/send_document.py +336 -0
- hypergram-1.2.27/hypergram/methods/messages/send_live_photo.py +248 -0
- hypergram-1.2.27/hypergram/methods/messages/send_location.py +239 -0
- hypergram-1.2.27/hypergram/methods/messages/send_media_group.py +558 -0
- hypergram-1.2.27/hypergram/methods/messages/send_message.py +357 -0
- hypergram-1.2.27/hypergram/methods/messages/send_message_draft.py +105 -0
- hypergram-1.2.27/hypergram/methods/messages/send_paid_media.py +403 -0
- hypergram-1.2.27/hypergram/methods/messages/send_paid_reaction.py +83 -0
- hypergram-1.2.27/hypergram/methods/messages/send_photo.py +334 -0
- hypergram-1.2.27/hypergram/methods/messages/send_poll.py +333 -0
- hypergram-1.2.27/hypergram/methods/messages/send_reaction.py +117 -0
- hypergram-1.2.27/hypergram/methods/messages/send_rich_message.py +162 -0
- hypergram-1.2.27/hypergram/methods/messages/send_rich_message_draft.py +93 -0
- hypergram-1.2.27/hypergram/methods/messages/send_screenshot_notification.py +62 -0
- hypergram-1.2.27/hypergram/methods/messages/send_sticker.py +315 -0
- hypergram-1.2.27/hypergram/methods/messages/send_venue.py +229 -0
- hypergram-1.2.27/hypergram/methods/messages/send_video.py +472 -0
- hypergram-1.2.27/hypergram/methods/messages/send_video_note.py +345 -0
- hypergram-1.2.27/hypergram/methods/messages/send_voice.py +335 -0
- hypergram-1.2.27/hypergram/methods/messages/send_web_page.py +197 -0
- hypergram-1.2.27/hypergram/methods/messages/set_direct_messages_chat_topic_is_marked_as_unread.py +65 -0
- hypergram-1.2.27/hypergram/methods/messages/start_bot.py +73 -0
- hypergram-1.2.27/hypergram/methods/messages/stop_poll.py +83 -0
- hypergram-1.2.27/hypergram/methods/messages/stream_media.py +117 -0
- hypergram-1.2.27/hypergram/methods/messages/summarize_message.py +81 -0
- hypergram-1.2.27/hypergram/methods/messages/translate_message_text.py +77 -0
- hypergram-1.2.27/hypergram/methods/messages/translate_text.py +73 -0
- hypergram-1.2.27/hypergram/methods/messages/view_messages.py +59 -0
- hypergram-1.2.27/hypergram/methods/messages/vote_poll.py +75 -0
- hypergram-1.2.27/hypergram/methods/password/__init__.py +25 -0
- hypergram-1.2.27/hypergram/methods/password/change_cloud_password.py +80 -0
- hypergram-1.2.27/hypergram/methods/password/enable_cloud_password.py +85 -0
- hypergram-1.2.27/hypergram/methods/password/remove_cloud_password.py +61 -0
- hypergram-1.2.27/hypergram/methods/payments/__init__.py +111 -0
- hypergram-1.2.27/hypergram/methods/payments/add_collection_gifts.py +70 -0
- hypergram-1.2.27/hypergram/methods/payments/apply_gift_code.py +63 -0
- hypergram-1.2.27/hypergram/methods/payments/buy_gift_upgrade.py +68 -0
- hypergram-1.2.27/hypergram/methods/payments/check_gift_code.py +66 -0
- hypergram-1.2.27/hypergram/methods/payments/convert_gift_to_stars.py +59 -0
- hypergram-1.2.27/hypergram/methods/payments/craft_gift.py +67 -0
- hypergram-1.2.27/hypergram/methods/payments/create_gift_collection.py +66 -0
- hypergram-1.2.27/hypergram/methods/payments/delete_gift_collection.py +55 -0
- hypergram-1.2.27/hypergram/methods/payments/drop_gift_original_details.py +67 -0
- hypergram-1.2.27/hypergram/methods/payments/edit_star_subscription.py +47 -0
- hypergram-1.2.27/hypergram/methods/payments/get_available_gifts.py +50 -0
- hypergram-1.2.27/hypergram/methods/payments/get_chat_gifts.py +154 -0
- hypergram-1.2.27/hypergram/methods/payments/get_chat_gifts_count.py +58 -0
- hypergram-1.2.27/hypergram/methods/payments/get_gift_auction_state.py +65 -0
- hypergram-1.2.27/hypergram/methods/payments/get_gift_collections.py +51 -0
- hypergram-1.2.27/hypergram/methods/payments/get_gift_upgrade_preview.py +47 -0
- hypergram-1.2.27/hypergram/methods/payments/get_gift_upgrade_variants.py +42 -0
- hypergram-1.2.27/hypergram/methods/payments/get_gifts_for_crafting.py +82 -0
- hypergram-1.2.27/hypergram/methods/payments/get_payment_form.py +65 -0
- hypergram-1.2.27/hypergram/methods/payments/get_stars_balance.py +60 -0
- hypergram-1.2.27/hypergram/methods/payments/get_ton_balance.py +48 -0
- hypergram-1.2.27/hypergram/methods/payments/get_upgraded_gift.py +61 -0
- hypergram-1.2.27/hypergram/methods/payments/get_upgraded_gift_value_info.py +62 -0
- hypergram-1.2.27/hypergram/methods/payments/gift_premium_with_stars.py +98 -0
- hypergram-1.2.27/hypergram/methods/payments/hide_gift.py +59 -0
- hypergram-1.2.27/hypergram/methods/payments/increase_gift_auction_bid.py +57 -0
- hypergram-1.2.27/hypergram/methods/payments/place_gift_auction_bid.py +104 -0
- hypergram-1.2.27/hypergram/methods/payments/process_gift_purchase_offer.py +48 -0
- hypergram-1.2.27/hypergram/methods/payments/remove_collection_gifts.py +68 -0
- hypergram-1.2.27/hypergram/methods/payments/reorder_collection_gifts.py +69 -0
- hypergram-1.2.27/hypergram/methods/payments/reorder_gift_collections.py +54 -0
- hypergram-1.2.27/hypergram/methods/payments/reuse_star_subscription.py +43 -0
- hypergram-1.2.27/hypergram/methods/payments/search_gifts_for_resale.py +120 -0
- hypergram-1.2.27/hypergram/methods/payments/send_gift.py +105 -0
- hypergram-1.2.27/hypergram/methods/payments/send_gift_purchase_offer.py +76 -0
- hypergram-1.2.27/hypergram/methods/payments/send_payment_form.py +96 -0
- hypergram-1.2.27/hypergram/methods/payments/send_resold_gift.py +120 -0
- hypergram-1.2.27/hypergram/methods/payments/set_gift_collection_name.py +62 -0
- hypergram-1.2.27/hypergram/methods/payments/set_gift_resale_price.py +76 -0
- hypergram-1.2.27/hypergram/methods/payments/set_pinned_gifts.py +70 -0
- hypergram-1.2.27/hypergram/methods/payments/show_gift.py +59 -0
- hypergram-1.2.27/hypergram/methods/payments/suggest_birthday.py +56 -0
- hypergram-1.2.27/hypergram/methods/payments/transfer_gift.py +101 -0
- hypergram-1.2.27/hypergram/methods/payments/upgrade_gift.py +111 -0
- hypergram-1.2.27/hypergram/methods/phone/__init__.py +23 -0
- hypergram-1.2.27/hypergram/methods/phone/get_call_members.py +99 -0
- hypergram-1.2.27/hypergram/methods/premium/__init__.py +25 -0
- hypergram-1.2.27/hypergram/methods/premium/apply_boost.py +56 -0
- hypergram-1.2.27/hypergram/methods/premium/get_boosts.py +55 -0
- hypergram-1.2.27/hypergram/methods/premium/get_boosts_status.py +44 -0
- hypergram-1.2.27/hypergram/methods/stories/__init__.py +65 -0
- hypergram-1.2.27/hypergram/methods/stories/can_post_stories.py +53 -0
- hypergram-1.2.27/hypergram/methods/stories/copy_story.py +116 -0
- hypergram-1.2.27/hypergram/methods/stories/delete_stories.py +65 -0
- hypergram-1.2.27/hypergram/methods/stories/edit_story_caption.py +86 -0
- hypergram-1.2.27/hypergram/methods/stories/edit_story_media.py +186 -0
- hypergram-1.2.27/hypergram/methods/stories/edit_story_privacy.py +146 -0
- hypergram-1.2.27/hypergram/methods/stories/enable_stealth_mode.py +64 -0
- hypergram-1.2.27/hypergram/methods/stories/forward_story.py +132 -0
- hypergram-1.2.27/hypergram/methods/stories/get_all_stories.py +73 -0
- hypergram-1.2.27/hypergram/methods/stories/get_archived_stories.py +86 -0
- hypergram-1.2.27/hypergram/methods/stories/get_chat_stories.py +61 -0
- hypergram-1.2.27/hypergram/methods/stories/get_pinned_stories.py +96 -0
- hypergram-1.2.27/hypergram/methods/stories/get_stories.py +100 -0
- hypergram-1.2.27/hypergram/methods/stories/get_story_views.py +117 -0
- hypergram-1.2.27/hypergram/methods/stories/hide_chat_stories.py +55 -0
- hypergram-1.2.27/hypergram/methods/stories/pin_chat_stories.py +63 -0
- hypergram-1.2.27/hypergram/methods/stories/read_chat_stories.py +63 -0
- hypergram-1.2.27/hypergram/methods/stories/send_story.py +315 -0
- hypergram-1.2.27/hypergram/methods/stories/show_chat_stories.py +55 -0
- hypergram-1.2.27/hypergram/methods/stories/unpin_chat_stories.py +63 -0
- hypergram-1.2.27/hypergram/methods/stories/view_stories.py +60 -0
- hypergram-1.2.27/hypergram/methods/users/__init__.py +61 -0
- hypergram-1.2.27/hypergram/methods/users/block_user.py +49 -0
- hypergram-1.2.27/hypergram/methods/users/check_username.py +59 -0
- hypergram-1.2.27/hypergram/methods/users/delete_profile_photos.py +62 -0
- hypergram-1.2.27/hypergram/methods/users/get_chat_audios.py +100 -0
- hypergram-1.2.27/hypergram/methods/users/get_chat_audios_count.py +55 -0
- hypergram-1.2.27/hypergram/methods/users/get_chat_photos.py +162 -0
- hypergram-1.2.27/hypergram/methods/users/get_chat_photos_count.py +70 -0
- hypergram-1.2.27/hypergram/methods/users/get_common_chats.py +66 -0
- hypergram-1.2.27/hypergram/methods/users/get_default_emoji_statuses.py +45 -0
- hypergram-1.2.27/hypergram/methods/users/get_me.py +46 -0
- hypergram-1.2.27/hypergram/methods/users/get_users.py +66 -0
- hypergram-1.2.27/hypergram/methods/users/set_emoji_status.py +92 -0
- hypergram-1.2.27/hypergram/methods/users/set_personal_channel.py +62 -0
- hypergram-1.2.27/hypergram/methods/users/set_profile_photo.py +174 -0
- hypergram-1.2.27/hypergram/methods/users/set_username.py +52 -0
- hypergram-1.2.27/hypergram/methods/users/unblock_user.py +49 -0
- hypergram-1.2.27/hypergram/methods/users/update_birthday.py +60 -0
- hypergram-1.2.27/hypergram/methods/users/update_profile.py +70 -0
- hypergram-1.2.27/hypergram/methods/users/update_status.py +47 -0
- hypergram-1.2.27/hypergram/methods/utilities/__init__.py +39 -0
- hypergram-1.2.27/hypergram/methods/utilities/add_handler.py +74 -0
- hypergram-1.2.27/hypergram/methods/utilities/compose.py +75 -0
- hypergram-1.2.27/hypergram/methods/utilities/export_session_string.py +38 -0
- hypergram-1.2.27/hypergram/methods/utilities/idle.py +89 -0
- hypergram-1.2.27/hypergram/methods/utilities/remove_handler.py +70 -0
- hypergram-1.2.27/hypergram/methods/utilities/restart.py +76 -0
- hypergram-1.2.27/hypergram/methods/utilities/run.py +71 -0
- hypergram-1.2.27/hypergram/methods/utilities/start.py +107 -0
- hypergram-1.2.27/hypergram/methods/utilities/stop.py +74 -0
- hypergram-1.2.27/hypergram/methods/utilities/stop_transmission.py +43 -0
- hypergram-1.2.27/hypergram/mime_types.py +1881 -0
- hypergram-1.2.27/hypergram/parser/__init__.py +17 -0
- hypergram-1.2.27/hypergram/parser/html.py +306 -0
- hypergram-1.2.27/hypergram/parser/markdown.py +367 -0
- hypergram-1.2.27/hypergram/parser/parser.py +61 -0
- hypergram-1.2.27/hypergram/parser/utils.py +42 -0
- hypergram-1.2.27/hypergram/qrlogin.py +115 -0
- hypergram-1.2.27/hypergram/raw/__init__.py +25 -0
- hypergram-1.2.27/hypergram/raw/core/__init__.py +17 -0
- hypergram-1.2.27/hypergram/raw/core/base_type_meta.py +27 -0
- hypergram-1.2.27/hypergram/raw/core/future_salt.py +53 -0
- hypergram-1.2.27/hypergram/raw/core/future_salts.py +63 -0
- hypergram-1.2.27/hypergram/raw/core/gzip_packed.py +50 -0
- hypergram-1.2.27/hypergram/raw/core/list.py +28 -0
- hypergram-1.2.27/hypergram/raw/core/message.py +56 -0
- hypergram-1.2.27/hypergram/raw/core/msg_container.py +53 -0
- hypergram-1.2.27/hypergram/raw/core/primitives/__init__.py +17 -0
- hypergram-1.2.27/hypergram/raw/core/primitives/bool.py +48 -0
- hypergram-1.2.27/hypergram/raw/core/primitives/bytes.py +48 -0
- hypergram-1.2.27/hypergram/raw/core/primitives/double.py +32 -0
- hypergram-1.2.27/hypergram/raw/core/primitives/int.py +45 -0
- hypergram-1.2.27/hypergram/raw/core/primitives/string.py +31 -0
- hypergram-1.2.27/hypergram/raw/core/primitives/vector.py +64 -0
- hypergram-1.2.27/hypergram/raw/core/tl_object.py +86 -0
- hypergram-1.2.27/hypergram/session/__init__.py +17 -0
- hypergram-1.2.27/hypergram/session/auth.py +332 -0
- hypergram-1.2.27/hypergram/session/internals/__init__.py +17 -0
- hypergram-1.2.27/hypergram/session/internals/msg_factory.py +68 -0
- hypergram-1.2.27/hypergram/session/internals/msg_id.py +37 -0
- hypergram-1.2.27/hypergram/session/session.py +599 -0
- hypergram-1.2.27/hypergram/storage/__init__.py +17 -0
- hypergram-1.2.27/hypergram/storage/sqlite_storage.py +431 -0
- hypergram-1.2.27/hypergram/storage/storage.py +252 -0
- hypergram-1.2.27/hypergram/sync.py +121 -0
- hypergram-1.2.27/hypergram/types/__init__.py +17 -0
- hypergram-1.2.27/hypergram/types/authorization/__init__.py +39 -0
- hypergram-1.2.27/hypergram/types/authorization/active_session.py +181 -0
- hypergram-1.2.27/hypergram/types/authorization/active_sessions.py +58 -0
- hypergram-1.2.27/hypergram/types/authorization/firebase_authentication_settings.py +57 -0
- hypergram-1.2.27/hypergram/types/authorization/phone_number_authentication_settings.py +95 -0
- hypergram-1.2.27/hypergram/types/authorization/sent_code.py +67 -0
- hypergram-1.2.27/hypergram/types/authorization/terms_of_service.py +60 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/__init__.py +111 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/bot_access_settings.py +61 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/bot_command.py +50 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/bot_command_scope.py +73 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +31 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +31 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +31 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/bot_command_scope_chat.py +43 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +43 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/bot_command_scope_chat_member.py +48 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/bot_command_scope_default.py +33 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/callback_game.py +29 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/callback_query.py +356 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/chat_boost_updated.py +64 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/chat_shared.py +92 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/force_reply.py +59 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/game_high_score.py +74 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/inline_keyboard_button.py +332 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/inline_keyboard_markup.py +74 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/keyboard_button.py +355 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/keyboard_button_poll_type.py +33 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/keyboard_button_request_chat.py +98 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/keyboard_button_request_managed_bot.py +41 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/keyboard_button_request_users.py +74 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/labeled_price.py +48 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/login_url.py +93 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/managed_bot_updated.py +62 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/menu_button.py +44 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/menu_button_commands.py +33 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/menu_button_default.py +33 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/menu_button_web_app.py +44 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/message_reaction_count_updated.py +87 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/message_reaction_updated.py +123 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/order_info.py +57 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/pre_checkout_query.py +139 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/purchased_paid_media.py +48 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/reply_keyboard_markup.py +118 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/reply_keyboard_remove.py +51 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/sent_guest_message.py +47 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/sent_web_app_message.py +45 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/shipping_address.py +82 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/shipping_option.py +64 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/shipping_query.py +123 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/users_shared.py +82 -0
- hypergram-1.2.27/hypergram/types/bots_and_keyboards/web_app_info.py +38 -0
- hypergram-1.2.27/hypergram/types/inline_mode/__init__.py +61 -0
- hypergram-1.2.27/hypergram/types/inline_mode/chosen_inline_result.py +102 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query.py +187 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result.py +63 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_animation.py +162 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_article.py +104 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_audio.py +128 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_cached_animation.py +114 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_cached_audio.py +107 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_cached_document.py +119 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_cached_photo.py +117 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_cached_sticker.py +82 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_cached_video.py +120 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_cached_voice.py +114 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_contact.py +121 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_document.py +151 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_location.py +125 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_photo.py +149 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_venue.py +138 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_video.py +156 -0
- hypergram-1.2.27/hypergram/types/inline_mode/inline_query_result_voice.py +122 -0
- hypergram-1.2.27/hypergram/types/input_content/__init__.py +121 -0
- hypergram-1.2.27/hypergram/types/input_content/input_chat_photo.py +113 -0
- hypergram-1.2.27/hypergram/types/input_content/input_checklist.py +65 -0
- hypergram-1.2.27/hypergram/types/input_content/input_contact_message_content.py +68 -0
- hypergram-1.2.27/hypergram/types/input_content/input_credentials.py +39 -0
- hypergram-1.2.27/hypergram/types/input_content/input_credentials_apple_pay.py +44 -0
- hypergram-1.2.27/hypergram/types/input_content/input_credentials_google_pay.py +44 -0
- hypergram-1.2.27/hypergram/types/input_content/input_credentials_new.py +50 -0
- hypergram-1.2.27/hypergram/types/input_content/input_credentials_saved.py +55 -0
- hypergram-1.2.27/hypergram/types/input_content/input_invoice.py +37 -0
- hypergram-1.2.27/hypergram/types/input_content/input_invoice_message.py +51 -0
- hypergram-1.2.27/hypergram/types/input_content/input_invoice_message_content.py +181 -0
- hypergram-1.2.27/hypergram/types/input_content/input_invoice_name.py +54 -0
- hypergram-1.2.27/hypergram/types/input_content/input_location_message_content.py +85 -0
- hypergram-1.2.27/hypergram/types/input_content/input_media.py +56 -0
- hypergram-1.2.27/hypergram/types/input_content/input_media_animation.py +162 -0
- hypergram-1.2.27/hypergram/types/input_content/input_media_audio.py +161 -0
- hypergram-1.2.27/hypergram/types/input_content/input_media_document.py +130 -0
- hypergram-1.2.27/hypergram/types/input_content/input_media_link.py +52 -0
- hypergram-1.2.27/hypergram/types/input_content/input_media_live_photo.py +160 -0
- hypergram-1.2.27/hypergram/types/input_content/input_media_location.py +93 -0
- hypergram-1.2.27/hypergram/types/input_content/input_media_photo.py +123 -0
- hypergram-1.2.27/hypergram/types/input_content/input_media_sticker.py +105 -0
- hypergram-1.2.27/hypergram/types/input_content/input_media_venue.py +114 -0
- hypergram-1.2.27/hypergram/types/input_content/input_media_video.py +241 -0
- hypergram-1.2.27/hypergram/types/input_content/input_message_content.py +41 -0
- hypergram-1.2.27/hypergram/types/input_content/input_phone_contact.py +48 -0
- hypergram-1.2.27/hypergram/types/input_content/input_poll_media.py +58 -0
- hypergram-1.2.27/hypergram/types/input_content/input_poll_option.py +61 -0
- hypergram-1.2.27/hypergram/types/input_content/input_poll_option_media.py +57 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule.py +44 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule_allow_all.py +33 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule_allow_bots.py +33 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule_allow_chats.py +53 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule_allow_close_friends.py +33 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule_allow_contacts.py +33 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule_allow_premium.py +33 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule_allow_users.py +51 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule_disallow_all.py +33 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule_disallow_bots.py +33 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule_disallow_chats.py +53 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule_disallow_contacts.py +33 -0
- hypergram-1.2.27/hypergram/types/input_content/input_privacy_rule_disallow_users.py +51 -0
- hypergram-1.2.27/hypergram/types/input_content/input_rich_message.py +76 -0
- hypergram-1.2.27/hypergram/types/input_content/input_rich_message_content.py +49 -0
- hypergram-1.2.27/hypergram/types/input_content/input_text_message_content.py +102 -0
- hypergram-1.2.27/hypergram/types/input_content/input_venue_message_content.py +85 -0
- hypergram-1.2.27/hypergram/types/list.py +30 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/__init__.py +421 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/animation.py +190 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/auction_bid.py +53 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/auction_round.py +70 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/auction_state.py +176 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/audio.py +120 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/available_effect.py +92 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/boosts_status.py +89 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/business_message.py +117 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/chat_background.py +169 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/chat_boost.py +110 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/chat_has_protected_content_disable_requested.py +43 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/chat_has_protected_content_toggled.py +62 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/chat_owner_changed.py +49 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/chat_owner_left.py +49 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/chat_theme.py +55 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/checked_gift_code.py +104 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/checklist.py +106 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/checklist_task.py +95 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/checklist_tasks_added.py +65 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/checklist_tasks_done.py +63 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/contact.py +73 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/contact_registered.py +29 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/craft_gift_result.py +55 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/dice.py +43 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/direct_message_price_changed.py +51 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/direct_messages_topic.py +105 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/document.py +97 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/external_reply_info.py +359 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/fact_check.py +78 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/formatted_text.py +87 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/forum_topic.py +173 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/forum_topic_closed.py +29 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/forum_topic_created.py +60 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/forum_topic_edited.py +71 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/forum_topic_reopened.py +29 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/game.py +98 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/general_forum_topic_hidden.py +29 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/general_forum_topic_unhidden.py +29 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gift.py +1175 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gift_attribute.py +175 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gift_auction.py +55 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gift_auction_state.py +71 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gift_collection.py +74 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gift_purchase_limit.py +50 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gift_resale_parameters.py +72 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gift_resale_price.py +74 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gift_upgrade_preview.py +91 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gift_upgrade_price.py +47 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gift_upgrade_variants.py +71 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gifted_premium.py +136 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gifted_stars.py +117 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/gifted_ton.py +93 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/giveaway.py +108 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/giveaway_completed.py +91 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/giveaway_created.py +53 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/giveaway_prize_stars.py +118 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/giveaway_winners.py +158 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/input_checklist_task.py +71 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/invoice.py +171 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/link_preview_options.py +89 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/live_photo.py +102 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/location.py +133 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/managed_bot_created.py +58 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/mask_position.py +69 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/media_area.py +281 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/message.py +9635 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/message_content.py +328 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/message_entity.py +209 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/message_origin.py +94 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/message_origin_channel.py +59 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/message_origin_chat.py +54 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/message_origin_hidden_user.py +49 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/message_origin_import.py +43 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/message_origin_user.py +49 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/message_reactions.py +92 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/my_boost.py +83 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/paid_media_info.py +102 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/paid_media_preview.py +55 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/paid_messages_price_changed.py +42 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/paid_messages_refunded.py +46 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/paid_reactor.py +86 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/payment_form.py +181 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/payment_option.py +43 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/payment_result.py +61 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/photo.py +132 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/poll.py +396 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/poll_option.py +91 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/poll_option_added.py +69 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/poll_option_deleted.py +69 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/premium_gift_code.py +139 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/proximity_alert_triggered.py +71 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/reaction.py +84 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/refunded_payment.py +79 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/reply_parameters.py +88 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/restriction_reason.py +57 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/rich_block.py +1052 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/rich_message.py +73 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/rich_text.py +702 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/saved_credentials.py +43 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/screenshot_taken.py +29 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/star_amount.py +47 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/sticker.py +297 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/story.py +2233 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/story_view.py +77 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/stripped_thumbnail.py +41 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/successful_payment.py +144 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/suggested_post_approval_failed.py +88 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/suggested_post_approved.py +93 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/suggested_post_declined.py +86 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/suggested_post_info.py +77 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/suggested_post_paid.py +101 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/suggested_post_parameters.py +55 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/suggested_post_price.py +98 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/suggested_post_refunded.py +92 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/text_quote.py +85 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/thumbnail.py +118 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/upgraded_gift_attribute_id.py +58 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/upgraded_gift_attribute_id_backdrop.py +40 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/upgraded_gift_attribute_id_model.py +40 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/upgraded_gift_attribute_id_symbol.py +40 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/upgraded_gift_attribute_rarity.py +131 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/upgraded_gift_original_details.py +78 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/upgraded_gift_purchase_offer.py +142 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/upgraded_gift_value_info.py +128 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/venue.py +76 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/video.py +175 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/video_note.py +114 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/voice.py +106 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/web_app_data.py +55 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/web_page.py +263 -0
- hypergram-1.2.27/hypergram/types/messages_and_media/write_access_allowed.py +57 -0
- hypergram-1.2.27/hypergram/types/object.py +122 -0
- hypergram-1.2.27/hypergram/types/update.py +27 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/__init__.py +130 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/accepted_gift_types.py +85 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/birthday.py +54 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/bot_verification.py +55 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/business_bot_rights.py +125 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/business_connection.py +87 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/business_intro.py +66 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/business_recipients.py +83 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/business_weekly_open.py +50 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/business_working_hours.py +63 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat.py +2057 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_admin_with_invite_links.py +64 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_administrator_rights.py +161 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_color.py +72 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_event.py +552 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_event_filter.py +176 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_folder_invite_link_info.py +100 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_invite_link.py +131 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_join_request.py +146 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_join_result.py +114 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_joiner.py +82 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_member.py +253 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_member_updated.py +118 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_permissions.py +228 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_photo.py +134 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_reactions.py +73 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/chat_settings.py +193 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/dialog.py +121 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/emoji_status.py +131 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/failed_to_add_member.py +56 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/folder.py +522 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/folder_invite_link.py +54 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/found_contacts.py +74 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/global_privacy_settings.py +129 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/group_call_member.py +149 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/history_cleared.py +29 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/invite_link_importer.py +57 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/phone_call_ended.py +64 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/phone_call_started.py +42 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/privacy_rule.py +69 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/restriction.py +50 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/stories_stealth_mode.py +56 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/user.py +1000 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/user_rating.py +73 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/username.py +50 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/verification_status.py +83 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/video_chat_ended.py +38 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/video_chat_members_invited.py +47 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/video_chat_scheduled.py +44 -0
- hypergram-1.2.27/hypergram/types/user_and_chats/video_chat_started.py +29 -0
- hypergram-1.2.27/hypergram/utils.py +808 -0
- hypergram-1.2.27/pyproject.toml +102 -0
- hypergram-1.2.25/Developers/saif.py +0 -0
- hypergram-1.2.25/NOTICE +0 -14
- hypergram-1.2.25/PKG-INFO +0 -139
- hypergram-1.2.25/README.md +0 -78
- hypergram-1.2.25/compiler/__init__.py +0 -17
- hypergram-1.2.25/compiler/api/__init__.py +0 -17
- hypergram-1.2.25/compiler/api/compiler.py +0 -696
- hypergram-1.2.25/compiler/errors/__init__.py +0 -17
- hypergram-1.2.25/compiler/errors/compiler.py +0 -142
- hypergram-1.2.25/compiler/errors/sort.py +0 -35
- hypergram-1.2.25/hatch_build.py +0 -34
- hypergram-1.2.25/hypergram/__init__.py +0 -38
- hypergram-1.2.25/hypergram/client.py +0 -1586
- hypergram-1.2.25/hypergram/connection/__init__.py +0 -19
- hypergram-1.2.25/hypergram/connection/connection.py +0 -92
- hypergram-1.2.25/hypergram/connection/transport/__init__.py +0 -19
- hypergram-1.2.25/hypergram/connection/transport/tcp/__init__.py +0 -24
- hypergram-1.2.25/hypergram/connection/transport/tcp/tcp.py +0 -247
- hypergram-1.2.25/hypergram/connection/transport/tcp/tcp_abridged.py +0 -66
- hypergram-1.2.25/hypergram/connection/transport/tcp/tcp_abridged_o.py +0 -105
- hypergram-1.2.25/hypergram/connection/transport/tcp/tcp_full.py +0 -73
- hypergram-1.2.25/hypergram/connection/transport/tcp/tcp_intermediate.py +0 -54
- hypergram-1.2.25/hypergram/connection/transport/tcp/tcp_intermediate_o.py +0 -88
- hypergram-1.2.25/hypergram/crypto/__init__.py +0 -17
- hypergram-1.2.25/hypergram/crypto/aes.py +0 -130
- hypergram-1.2.25/hypergram/crypto/mtproto.py +0 -100
- hypergram-1.2.25/hypergram/crypto/prime.py +0 -82
- hypergram-1.2.25/hypergram/crypto/rsa.py +0 -259
- hypergram-1.2.25/hypergram/dispatcher.py +0 -519
- hypergram-1.2.25/hypergram/enums/__init__.py +0 -107
- hypergram-1.2.25/hypergram/enums/auto_name.py +0 -27
- hypergram-1.2.25/hypergram/enums/block_list.py +0 -31
- hypergram-1.2.25/hypergram/enums/business_schedule.py +0 -34
- hypergram-1.2.25/hypergram/enums/button_style.py +0 -37
- hypergram-1.2.25/hypergram/enums/chat_action.py +0 -72
- hypergram-1.2.25/hypergram/enums/chat_event_action.py +0 -140
- hypergram-1.2.25/hypergram/enums/chat_join_request_query_result.py +0 -34
- hypergram-1.2.25/hypergram/enums/chat_join_type.py +0 -34
- hypergram-1.2.25/hypergram/enums/chat_member_status.py +0 -43
- hypergram-1.2.25/hypergram/enums/chat_members_filter.py +0 -42
- hypergram-1.2.25/hypergram/enums/chat_type.py +0 -46
- hypergram-1.2.25/hypergram/enums/client_platform.py +0 -49
- hypergram-1.2.25/hypergram/enums/folder_color.py +0 -47
- hypergram-1.2.25/hypergram/enums/gift_attribute_type.py +0 -36
- hypergram-1.2.25/hypergram/enums/gift_for_resale_order.py +0 -34
- hypergram-1.2.25/hypergram/enums/gift_purchase_offer_state.py +0 -34
- hypergram-1.2.25/hypergram/enums/gift_type.py +0 -31
- hypergram-1.2.25/hypergram/enums/mask_point_type.py +0 -35
- hypergram-1.2.25/hypergram/enums/media_area_type.py +0 -46
- hypergram-1.2.25/hypergram/enums/message_entity_type.py +0 -87
- hypergram-1.2.25/hypergram/enums/message_media_type.py +0 -94
- hypergram-1.2.25/hypergram/enums/message_origin_type.py +0 -40
- hypergram-1.2.25/hypergram/enums/message_service_type.py +0 -235
- hypergram-1.2.25/hypergram/enums/messages_filter.py +0 -78
- hypergram-1.2.25/hypergram/enums/next_code_type.py +0 -39
- hypergram-1.2.25/hypergram/enums/paid_reaction_privacy.py +0 -34
- hypergram-1.2.25/hypergram/enums/parse_mode.py +0 -37
- hypergram-1.2.25/hypergram/enums/payment_form_type.py +0 -34
- hypergram-1.2.25/hypergram/enums/phone_call_discard_reason.py +0 -40
- hypergram-1.2.25/hypergram/enums/phone_number_code_type.py +0 -34
- hypergram-1.2.25/hypergram/enums/poll_type.py +0 -31
- hypergram-1.2.25/hypergram/enums/privacy_key.py +0 -66
- hypergram-1.2.25/hypergram/enums/privacy_rule_type.py +0 -61
- hypergram-1.2.25/hypergram/enums/profile_color.py +0 -71
- hypergram-1.2.25/hypergram/enums/profile_tab.py +0 -48
- hypergram-1.2.25/hypergram/enums/reply_color.py +0 -94
- hypergram-1.2.25/hypergram/enums/sent_code_type.py +0 -57
- hypergram-1.2.25/hypergram/enums/sticker_type.py +0 -34
- hypergram-1.2.25/hypergram/enums/stories_privacy_rules.py +0 -36
- hypergram-1.2.25/hypergram/enums/suggested_post_refund_reason.py +0 -31
- hypergram-1.2.25/hypergram/enums/suggested_post_state.py +0 -34
- hypergram-1.2.25/hypergram/enums/top_chat_category.py +0 -54
- hypergram-1.2.25/hypergram/enums/upgraded_gift_origin.py +0 -46
- hypergram-1.2.25/hypergram/enums/user_status.py +0 -43
- hypergram-1.2.25/hypergram/errors/__init__.py +0 -80
- hypergram-1.2.25/hypergram/errors/exceptions.py +0 -42
- hypergram-1.2.25/hypergram/errors/rpc_error.py +0 -105
- hypergram-1.2.25/hypergram/file_id.py +0 -481
- hypergram-1.2.25/hypergram/filters.py +0 -1195
- hypergram-1.2.25/hypergram/handlers/__init__.py +0 -48
- hypergram-1.2.25/hypergram/handlers/business_connection_handler.py +0 -56
- hypergram-1.2.25/hypergram/handlers/business_message_handler.py +0 -56
- hypergram-1.2.25/hypergram/handlers/callback_query_handler.py +0 -55
- hypergram-1.2.25/hypergram/handlers/chat_boost_handler.py +0 -55
- hypergram-1.2.25/hypergram/handlers/chat_join_request_handler.py +0 -55
- hypergram-1.2.25/hypergram/handlers/chat_member_updated_handler.py +0 -55
- hypergram-1.2.25/hypergram/handlers/chosen_inline_result_handler.py +0 -58
- hypergram-1.2.25/hypergram/handlers/connect_handler.py +0 -50
- hypergram-1.2.25/hypergram/handlers/deleted_business_messages_handler.py +0 -69
- hypergram-1.2.25/hypergram/handlers/deleted_messages_handler.py +0 -68
- hypergram-1.2.25/hypergram/handlers/disconnect_handler.py +0 -50
- hypergram-1.2.25/hypergram/handlers/edited_business_message_handler.py +0 -56
- hypergram-1.2.25/hypergram/handlers/edited_message_handler.py +0 -55
- hypergram-1.2.25/hypergram/handlers/error_handler.py +0 -98
- hypergram-1.2.25/hypergram/handlers/guest_message_handler.py +0 -55
- hypergram-1.2.25/hypergram/handlers/handler.py +0 -41
- hypergram-1.2.25/hypergram/handlers/inline_query_handler.py +0 -55
- hypergram-1.2.25/hypergram/handlers/managed_bot_updated_handler.py +0 -53
- hypergram-1.2.25/hypergram/handlers/message_handler.py +0 -55
- hypergram-1.2.25/hypergram/handlers/message_reaction_count_handler.py +0 -59
- hypergram-1.2.25/hypergram/handlers/message_reaction_handler.py +0 -59
- hypergram-1.2.25/hypergram/handlers/poll_handler.py +0 -54
- hypergram-1.2.25/hypergram/handlers/pre_checkout_query_handler.py +0 -55
- hypergram-1.2.25/hypergram/handlers/purchased_paid_media_handler.py +0 -57
- hypergram-1.2.25/hypergram/handlers/raw_update_handler.py +0 -87
- hypergram-1.2.25/hypergram/handlers/shipping_query_handler.py +0 -56
- hypergram-1.2.25/hypergram/handlers/start_handler.py +0 -46
- hypergram-1.2.25/hypergram/handlers/stop_handler.py +0 -46
- hypergram-1.2.25/hypergram/handlers/story_handler.py +0 -53
- hypergram-1.2.25/hypergram/handlers/user_status_handler.py +0 -51
- hypergram-1.2.25/hypergram/methods/__init__.py +0 -59
- hypergram-1.2.25/hypergram/methods/account/__init__.py +0 -42
- hypergram-1.2.25/hypergram/methods/account/add_profile_audio.py +0 -151
- hypergram-1.2.25/hypergram/methods/account/get_account_ttl.py +0 -44
- hypergram-1.2.25/hypergram/methods/account/get_global_privacy_settings.py +0 -39
- hypergram-1.2.25/hypergram/methods/account/get_privacy.py +0 -55
- hypergram-1.2.25/hypergram/methods/account/remove_profile_audio.py +0 -50
- hypergram-1.2.25/hypergram/methods/account/set_account_ttl.py +0 -55
- hypergram-1.2.25/hypergram/methods/account/set_global_privacy_settings.py +0 -124
- hypergram-1.2.25/hypergram/methods/account/set_inactive_session_ttl.py +0 -51
- hypergram-1.2.25/hypergram/methods/account/set_privacy.py +0 -76
- hypergram-1.2.25/hypergram/methods/account/set_profile_audio_position.py +0 -63
- hypergram-1.2.25/hypergram/methods/advanced/__init__.py +0 -31
- hypergram-1.2.25/hypergram/methods/advanced/invoke.py +0 -118
- hypergram-1.2.25/hypergram/methods/advanced/recover_gaps.py +0 -184
- hypergram-1.2.25/hypergram/methods/advanced/resolve_peer.py +0 -153
- hypergram-1.2.25/hypergram/methods/advanced/save_file.py +0 -224
- hypergram-1.2.25/hypergram/methods/auth/__init__.py +0 -61
- hypergram-1.2.25/hypergram/methods/auth/accept_terms_of_service.py +0 -44
- hypergram-1.2.25/hypergram/methods/auth/change_phone_number.py +0 -59
- hypergram-1.2.25/hypergram/methods/auth/check_password.py +0 -60
- hypergram-1.2.25/hypergram/methods/auth/connect.py +0 -56
- hypergram-1.2.25/hypergram/methods/auth/disconnect.py +0 -41
- hypergram-1.2.25/hypergram/methods/auth/get_active_sessions.py +0 -39
- hypergram-1.2.25/hypergram/methods/auth/get_password_hint.py +0 -38
- hypergram-1.2.25/hypergram/methods/auth/initialize.py +0 -49
- hypergram-1.2.25/hypergram/methods/auth/log_out.py +0 -51
- hypergram-1.2.25/hypergram/methods/auth/recover_password.py +0 -57
- hypergram-1.2.25/hypergram/methods/auth/resend_phone_number_code.py +0 -63
- hypergram-1.2.25/hypergram/methods/auth/reset_session.py +0 -44
- hypergram-1.2.25/hypergram/methods/auth/reset_sessions.py +0 -39
- hypergram-1.2.25/hypergram/methods/auth/send_phone_number_code.py +0 -187
- hypergram-1.2.25/hypergram/methods/auth/send_recovery_code.py +0 -43
- hypergram-1.2.25/hypergram/methods/auth/sign_in.py +0 -81
- hypergram-1.2.25/hypergram/methods/auth/sign_in_bot.py +0 -78
- hypergram-1.2.25/hypergram/methods/auth/sign_up.py +0 -73
- hypergram-1.2.25/hypergram/methods/auth/terminate.py +0 -67
- hypergram-1.2.25/hypergram/methods/bots/__init__.py +0 -99
- hypergram-1.2.25/hypergram/methods/bots/answer_callback_query.py +0 -81
- hypergram-1.2.25/hypergram/methods/bots/answer_chat_join_request_query.py +0 -47
- hypergram-1.2.25/hypergram/methods/bots/answer_guest_query.py +0 -61
- hypergram-1.2.25/hypergram/methods/bots/answer_inline_query.py +0 -112
- hypergram-1.2.25/hypergram/methods/bots/answer_pre_checkout_query.py +0 -66
- hypergram-1.2.25/hypergram/methods/bots/answer_shipping_query.py +0 -81
- hypergram-1.2.25/hypergram/methods/bots/answer_web_app_query.py +0 -53
- hypergram-1.2.25/hypergram/methods/bots/check_bot_username.py +0 -39
- hypergram-1.2.25/hypergram/methods/bots/create_bot.py +0 -64
- hypergram-1.2.25/hypergram/methods/bots/create_invoice_link.py +0 -167
- hypergram-1.2.25/hypergram/methods/bots/delete_bot_commands.py +0 -62
- hypergram-1.2.25/hypergram/methods/bots/edit_user_star_subscription.py +0 -56
- hypergram-1.2.25/hypergram/methods/bots/get_bot_commands.py +0 -67
- hypergram-1.2.25/hypergram/methods/bots/get_bot_default_privileges.py +0 -59
- hypergram-1.2.25/hypergram/methods/bots/get_bot_info_description.py +0 -63
- hypergram-1.2.25/hypergram/methods/bots/get_bot_info_short_description.py +0 -63
- hypergram-1.2.25/hypergram/methods/bots/get_bot_name.py +0 -62
- hypergram-1.2.25/hypergram/methods/bots/get_chat_menu_button.py +0 -66
- hypergram-1.2.25/hypergram/methods/bots/get_game_high_scores.py +0 -72
- hypergram-1.2.25/hypergram/methods/bots/get_inline_bot_results.py +0 -92
- hypergram-1.2.25/hypergram/methods/bots/get_managed_bot_access_settings.py +0 -47
- hypergram-1.2.25/hypergram/methods/bots/get_managed_bot_token.py +0 -48
- hypergram-1.2.25/hypergram/methods/bots/get_owned_bots.py +0 -44
- hypergram-1.2.25/hypergram/methods/bots/refund_star_payment.py +0 -54
- hypergram-1.2.25/hypergram/methods/bots/replace_managed_bot_token.py +0 -48
- hypergram-1.2.25/hypergram/methods/bots/request_callback_answer.py +0 -91
- hypergram-1.2.25/hypergram/methods/bots/send_chat_join_request_web_app.py +0 -49
- hypergram-1.2.25/hypergram/methods/bots/send_game.py +0 -139
- hypergram-1.2.25/hypergram/methods/bots/send_inline_bot_result.py +0 -171
- hypergram-1.2.25/hypergram/methods/bots/send_invoice.py +0 -268
- hypergram-1.2.25/hypergram/methods/bots/set_bot_commands.py +0 -73
- hypergram-1.2.25/hypergram/methods/bots/set_bot_default_privileges.py +0 -81
- hypergram-1.2.25/hypergram/methods/bots/set_bot_info_description.py +0 -66
- hypergram-1.2.25/hypergram/methods/bots/set_bot_info_short_description.py +0 -66
- hypergram-1.2.25/hypergram/methods/bots/set_bot_name.py +0 -66
- hypergram-1.2.25/hypergram/methods/bots/set_chat_menu_button.py +0 -56
- hypergram-1.2.25/hypergram/methods/bots/set_game_score.py +0 -100
- hypergram-1.2.25/hypergram/methods/bots/set_managed_bot_access_settings.py +0 -60
- hypergram-1.2.25/hypergram/methods/business/__init__.py +0 -33
- hypergram-1.2.25/hypergram/methods/business/delete_business_messages.py +0 -70
- hypergram-1.2.25/hypergram/methods/business/get_business_account_gifts.py +0 -151
- hypergram-1.2.25/hypergram/methods/business/get_business_account_star_balance.py +0 -59
- hypergram-1.2.25/hypergram/methods/business/get_business_connection.py +0 -53
- hypergram-1.2.25/hypergram/methods/business/transfer_business_account_stars.py +0 -72
- hypergram-1.2.25/hypergram/methods/chats/__init__.py +0 -181
- hypergram-1.2.25/hypergram/methods/chats/add_chat_members.py +0 -97
- hypergram-1.2.25/hypergram/methods/chats/archive_chats.py +0 -71
- hypergram-1.2.25/hypergram/methods/chats/ban_chat_member.py +0 -124
- hypergram-1.2.25/hypergram/methods/chats/close_forum_topic.py +0 -58
- hypergram-1.2.25/hypergram/methods/chats/create_channel.py +0 -56
- hypergram-1.2.25/hypergram/methods/chats/create_folder.py +0 -179
- hypergram-1.2.25/hypergram/methods/chats/create_folder_invite_link.py +0 -67
- hypergram-1.2.25/hypergram/methods/chats/create_forum_topic.py +0 -68
- hypergram-1.2.25/hypergram/methods/chats/create_group.py +0 -67
- hypergram-1.2.25/hypergram/methods/chats/create_supergroup.py +0 -78
- hypergram-1.2.25/hypergram/methods/chats/delete_all_message_reactions.py +0 -74
- hypergram-1.2.25/hypergram/methods/chats/delete_channel.py +0 -52
- hypergram-1.2.25/hypergram/methods/chats/delete_chat_photo.py +0 -70
- hypergram-1.2.25/hypergram/methods/chats/delete_folder.py +0 -51
- hypergram-1.2.25/hypergram/methods/chats/delete_folder_invite_link.py +0 -70
- hypergram-1.2.25/hypergram/methods/chats/delete_forum_topic.py +0 -57
- hypergram-1.2.25/hypergram/methods/chats/delete_message_reaction.py +0 -81
- hypergram-1.2.25/hypergram/methods/chats/delete_supergroup.py +0 -52
- hypergram-1.2.25/hypergram/methods/chats/delete_user_history.py +0 -55
- hypergram-1.2.25/hypergram/methods/chats/edit_folder.py +0 -186
- hypergram-1.2.25/hypergram/methods/chats/edit_folder_invite_link.py +0 -85
- hypergram-1.2.25/hypergram/methods/chats/edit_forum_topic.py +0 -77
- hypergram-1.2.25/hypergram/methods/chats/get_chat.py +0 -105
- hypergram-1.2.25/hypergram/methods/chats/get_chat_event_log.py +0 -109
- hypergram-1.2.25/hypergram/methods/chats/get_chat_member.py +0 -92
- hypergram-1.2.25/hypergram/methods/chats/get_chat_members.py +0 -158
- hypergram-1.2.25/hypergram/methods/chats/get_chat_members_count.py +0 -69
- hypergram-1.2.25/hypergram/methods/chats/get_chat_online_count.py +0 -51
- hypergram-1.2.25/hypergram/methods/chats/get_chat_settings.py +0 -61
- hypergram-1.2.25/hypergram/methods/chats/get_chats_for_folder_invite_link.py +0 -78
- hypergram-1.2.25/hypergram/methods/chats/get_dialogs.py +0 -133
- hypergram-1.2.25/hypergram/methods/chats/get_dialogs_count.py +0 -76
- hypergram-1.2.25/hypergram/methods/chats/get_direct_messages_topics.py +0 -109
- hypergram-1.2.25/hypergram/methods/chats/get_direct_messages_topics_by_id.py +0 -77
- hypergram-1.2.25/hypergram/methods/chats/get_folder_invite_links.py +0 -52
- hypergram-1.2.25/hypergram/methods/chats/get_folders.py +0 -76
- hypergram-1.2.25/hypergram/methods/chats/get_forum_topics.py +0 -103
- hypergram-1.2.25/hypergram/methods/chats/get_forum_topics_by_id.py +0 -80
- hypergram-1.2.25/hypergram/methods/chats/get_personal_channels.py +0 -48
- hypergram-1.2.25/hypergram/methods/chats/get_send_as_chats.py +0 -69
- hypergram-1.2.25/hypergram/methods/chats/get_similar_channels.py +0 -59
- hypergram-1.2.25/hypergram/methods/chats/get_suitable_discussion_chats.py +0 -47
- hypergram-1.2.25/hypergram/methods/chats/get_top_chats.py +0 -104
- hypergram-1.2.25/hypergram/methods/chats/join_chat.py +0 -65
- hypergram-1.2.25/hypergram/methods/chats/join_folder.py +0 -79
- hypergram-1.2.25/hypergram/methods/chats/leave_chat.py +0 -77
- hypergram-1.2.25/hypergram/methods/chats/leave_folder.py +0 -83
- hypergram-1.2.25/hypergram/methods/chats/mark_chat_unread.py +0 -47
- hypergram-1.2.25/hypergram/methods/chats/pin_chat_message.py +0 -77
- hypergram-1.2.25/hypergram/methods/chats/pin_forum_topic.py +0 -57
- hypergram-1.2.25/hypergram/methods/chats/process_chat_has_protected_content_disable_request.py +0 -57
- hypergram-1.2.25/hypergram/methods/chats/promote_chat_member.py +0 -106
- hypergram-1.2.25/hypergram/methods/chats/reorder_folders.py +0 -61
- hypergram-1.2.25/hypergram/methods/chats/restrict_chat_member.py +0 -85
- hypergram-1.2.25/hypergram/methods/chats/set_administrator_title.py +0 -85
- hypergram-1.2.25/hypergram/methods/chats/set_chat_description.py +0 -66
- hypergram-1.2.25/hypergram/methods/chats/set_chat_direct_messages_group.py +0 -67
- hypergram-1.2.25/hypergram/methods/chats/set_chat_discussion_group.py +0 -91
- hypergram-1.2.25/hypergram/methods/chats/set_chat_member_tag.py +0 -68
- hypergram-1.2.25/hypergram/methods/chats/set_chat_permissions.py +0 -76
- hypergram-1.2.25/hypergram/methods/chats/set_chat_photo.py +0 -124
- hypergram-1.2.25/hypergram/methods/chats/set_chat_protected_content.py +0 -51
- hypergram-1.2.25/hypergram/methods/chats/set_chat_title.py +0 -69
- hypergram-1.2.25/hypergram/methods/chats/set_chat_ttl.py +0 -67
- hypergram-1.2.25/hypergram/methods/chats/set_chat_username.py +0 -68
- hypergram-1.2.25/hypergram/methods/chats/set_main_profile_tab.py +0 -71
- hypergram-1.2.25/hypergram/methods/chats/set_send_as_chat.py +0 -57
- hypergram-1.2.25/hypergram/methods/chats/set_slow_mode.py +0 -63
- hypergram-1.2.25/hypergram/methods/chats/set_upgraded_gift_colors.py +0 -47
- hypergram-1.2.25/hypergram/methods/chats/toggle_folder_tags.py +0 -51
- hypergram-1.2.25/hypergram/methods/chats/toggle_forum_topics.py +0 -72
- hypergram-1.2.25/hypergram/methods/chats/toggle_join_to_send.py +0 -65
- hypergram-1.2.25/hypergram/methods/chats/transfer_chat_ownership.py +0 -84
- hypergram-1.2.25/hypergram/methods/chats/unarchive_chats.py +0 -71
- hypergram-1.2.25/hypergram/methods/chats/unban_chat_member.py +0 -64
- hypergram-1.2.25/hypergram/methods/chats/unpin_all_chat_messages.py +0 -55
- hypergram-1.2.25/hypergram/methods/chats/unpin_chat_message.py +0 -61
- hypergram-1.2.25/hypergram/methods/chats/unpin_forum_topic.py +0 -58
- hypergram-1.2.25/hypergram/methods/chats/update_chat_notifications.py +0 -92
- hypergram-1.2.25/hypergram/methods/chats/update_color.py +0 -78
- hypergram-1.2.25/hypergram/methods/contacts/__init__.py +0 -39
- hypergram-1.2.25/hypergram/methods/contacts/add_contact.py +0 -85
- hypergram-1.2.25/hypergram/methods/contacts/delete_contacts.py +0 -66
- hypergram-1.2.25/hypergram/methods/contacts/get_blocked_message_senders.py +0 -85
- hypergram-1.2.25/hypergram/methods/contacts/get_contacts.py +0 -47
- hypergram-1.2.25/hypergram/methods/contacts/get_contacts_count.py +0 -41
- hypergram-1.2.25/hypergram/methods/contacts/import_contacts.py +0 -58
- hypergram-1.2.25/hypergram/methods/contacts/search_contacts.py +0 -59
- hypergram-1.2.25/hypergram/methods/contacts/set_contact_note.py +0 -62
- hypergram-1.2.25/hypergram/methods/decorators/__init__.py +0 -81
- hypergram-1.2.25/hypergram/methods/decorators/on_business_connection.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_business_message.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_callback_query.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_chat_boost.py +0 -64
- hypergram-1.2.25/hypergram/methods/decorators/on_chat_join_request.py +0 -62
- hypergram-1.2.25/hypergram/methods/decorators/on_chat_member_updated.py +0 -62
- hypergram-1.2.25/hypergram/methods/decorators/on_chosen_inline_result.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_connect.py +0 -45
- hypergram-1.2.25/hypergram/methods/decorators/on_deleted_business_messages.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_deleted_messages.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_disconnect.py +0 -45
- hypergram-1.2.25/hypergram/methods/decorators/on_edited_business_message.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_edited_message.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_error.py +0 -65
- hypergram-1.2.25/hypergram/methods/decorators/on_guest_message.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_inline_query.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_managed_bot.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_message.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_message_reaction.py +0 -62
- hypergram-1.2.25/hypergram/methods/decorators/on_message_reaction_count.py +0 -62
- hypergram-1.2.25/hypergram/methods/decorators/on_poll.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_pre_checkout_query.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_purchased_paid_media.py +0 -62
- hypergram-1.2.25/hypergram/methods/decorators/on_raw_update.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_shipping_query.py +0 -64
- hypergram-1.2.25/hypergram/methods/decorators/on_start.py +0 -45
- hypergram-1.2.25/hypergram/methods/decorators/on_stop.py +0 -45
- hypergram-1.2.25/hypergram/methods/decorators/on_story.py +0 -63
- hypergram-1.2.25/hypergram/methods/decorators/on_user_status.py +0 -61
- hypergram-1.2.25/hypergram/methods/folders/__init__.py +0 -25
- hypergram-1.2.25/hypergram/methods/folders/check_chat_folder_invite_link.py +0 -55
- hypergram-1.2.25/hypergram/methods/invite_links/__init__.py +0 -58
- hypergram-1.2.25/hypergram/methods/invite_links/approve_all_chat_join_requests.py +0 -55
- hypergram-1.2.25/hypergram/methods/invite_links/approve_chat_join_request.py +0 -57
- hypergram-1.2.25/hypergram/methods/invite_links/create_chat_invite_link.py +0 -87
- hypergram-1.2.25/hypergram/methods/invite_links/decline_all_chat_join_requests.py +0 -55
- hypergram-1.2.25/hypergram/methods/invite_links/decline_chat_join_request.py +0 -57
- hypergram-1.2.25/hypergram/methods/invite_links/delete_chat_admin_invite_links.py +0 -54
- hypergram-1.2.25/hypergram/methods/invite_links/delete_chat_invite_link.py +0 -52
- hypergram-1.2.25/hypergram/methods/invite_links/edit_chat_invite_link.py +0 -92
- hypergram-1.2.25/hypergram/methods/invite_links/export_chat_invite_link.py +0 -66
- hypergram-1.2.25/hypergram/methods/invite_links/get_chat_admin_invite_links.py +0 -100
- hypergram-1.2.25/hypergram/methods/invite_links/get_chat_admin_invite_links_count.py +0 -62
- hypergram-1.2.25/hypergram/methods/invite_links/get_chat_admins_with_invite_links.py +0 -56
- hypergram-1.2.25/hypergram/methods/invite_links/get_chat_invite_link.py +0 -54
- hypergram-1.2.25/hypergram/methods/invite_links/get_chat_invite_link_joiners.py +0 -87
- hypergram-1.2.25/hypergram/methods/invite_links/get_chat_invite_link_joiners_count.py +0 -56
- hypergram-1.2.25/hypergram/methods/invite_links/get_chat_join_requests.py +0 -88
- hypergram-1.2.25/hypergram/methods/invite_links/revoke_chat_invite_link.py +0 -68
- hypergram-1.2.25/hypergram/methods/messages/__init__.py +0 -199
- hypergram-1.2.25/hypergram/methods/messages/add_checklist_tasks.py +0 -73
- hypergram-1.2.25/hypergram/methods/messages/add_poll_option.py +0 -76
- hypergram-1.2.25/hypergram/methods/messages/add_to_gifs.py +0 -60
- hypergram-1.2.25/hypergram/methods/messages/approve_suggested_post.py +0 -66
- hypergram-1.2.25/hypergram/methods/messages/compose_text_with_ai.py +0 -80
- hypergram-1.2.25/hypergram/methods/messages/copy_media_group.py +0 -238
- hypergram-1.2.25/hypergram/methods/messages/copy_message.py +0 -168
- hypergram-1.2.25/hypergram/methods/messages/decline_suggested_post.py +0 -62
- hypergram-1.2.25/hypergram/methods/messages/delete_chat_history.py +0 -101
- hypergram-1.2.25/hypergram/methods/messages/delete_direct_messages_chat_topic_history.py +0 -74
- hypergram-1.2.25/hypergram/methods/messages/delete_messages.py +0 -110
- hypergram-1.2.25/hypergram/methods/messages/delete_poll_option.py +0 -69
- hypergram-1.2.25/hypergram/methods/messages/download_media.py +0 -371
- hypergram-1.2.25/hypergram/methods/messages/edit_inline_caption.py +0 -65
- hypergram-1.2.25/hypergram/methods/messages/edit_inline_media.py +0 -244
- hypergram-1.2.25/hypergram/methods/messages/edit_inline_reply_markup.py +0 -68
- hypergram-1.2.25/hypergram/methods/messages/edit_inline_text.py +0 -122
- hypergram-1.2.25/hypergram/methods/messages/edit_message_caption.py +0 -98
- hypergram-1.2.25/hypergram/methods/messages/edit_message_checklist.py +0 -106
- hypergram-1.2.25/hypergram/methods/messages/edit_message_media.py +0 -137
- hypergram-1.2.25/hypergram/methods/messages/edit_message_reply_markup.py +0 -84
- hypergram-1.2.25/hypergram/methods/messages/edit_message_text.py +0 -165
- hypergram-1.2.25/hypergram/methods/messages/fix_text_with_ai.py +0 -57
- hypergram-1.2.25/hypergram/methods/messages/forward_media_group.py +0 -124
- hypergram-1.2.25/hypergram/methods/messages/forward_messages.py +0 -142
- hypergram-1.2.25/hypergram/methods/messages/get_available_effects.py +0 -59
- hypergram-1.2.25/hypergram/methods/messages/get_chat_history.py +0 -175
- hypergram-1.2.25/hypergram/methods/messages/get_chat_history_count.py +0 -83
- hypergram-1.2.25/hypergram/methods/messages/get_custom_emoji_stickers.py +0 -54
- hypergram-1.2.25/hypergram/methods/messages/get_direct_messages_chat_topic_history.py +0 -151
- hypergram-1.2.25/hypergram/methods/messages/get_discussion_message.py +0 -65
- hypergram-1.2.25/hypergram/methods/messages/get_discussion_replies.py +0 -86
- hypergram-1.2.25/hypergram/methods/messages/get_discussion_replies_count.py +0 -62
- hypergram-1.2.25/hypergram/methods/messages/get_main_web_app.py +0 -71
- hypergram-1.2.25/hypergram/methods/messages/get_media_group.py +0 -72
- hypergram-1.2.25/hypergram/methods/messages/get_messages.py +0 -236
- hypergram-1.2.25/hypergram/methods/messages/get_scheduled_messages.py +0 -61
- hypergram-1.2.25/hypergram/methods/messages/get_stickers.py +0 -66
- hypergram-1.2.25/hypergram/methods/messages/get_user_personal_chat_messages.py +0 -92
- hypergram-1.2.25/hypergram/methods/messages/get_web_app_link_url.py +0 -83
- hypergram-1.2.25/hypergram/methods/messages/get_web_app_url.py +0 -70
- hypergram-1.2.25/hypergram/methods/messages/mark_checklist_tasks_as_done.py +0 -74
- hypergram-1.2.25/hypergram/methods/messages/open_web_app.py +0 -92
- hypergram-1.2.25/hypergram/methods/messages/read_chat_history.py +0 -73
- hypergram-1.2.25/hypergram/methods/messages/read_mentions.py +0 -64
- hypergram-1.2.25/hypergram/methods/messages/read_reactions.py +0 -64
- hypergram-1.2.25/hypergram/methods/messages/retract_vote.py +0 -64
- hypergram-1.2.25/hypergram/methods/messages/search_global.py +0 -132
- hypergram-1.2.25/hypergram/methods/messages/search_global_count.py +0 -79
- hypergram-1.2.25/hypergram/methods/messages/search_messages.py +0 -190
- hypergram-1.2.25/hypergram/methods/messages/search_messages_count.py +0 -98
- hypergram-1.2.25/hypergram/methods/messages/search_posts.py +0 -96
- hypergram-1.2.25/hypergram/methods/messages/search_posts_count.py +0 -54
- hypergram-1.2.25/hypergram/methods/messages/send_animation.py +0 -379
- hypergram-1.2.25/hypergram/methods/messages/send_audio.py +0 -347
- hypergram-1.2.25/hypergram/methods/messages/send_cached_media.py +0 -226
- hypergram-1.2.25/hypergram/methods/messages/send_chat_action.py +0 -85
- hypergram-1.2.25/hypergram/methods/messages/send_checklist.py +0 -153
- hypergram-1.2.25/hypergram/methods/messages/send_contact.py +0 -216
- hypergram-1.2.25/hypergram/methods/messages/send_dice.py +0 -217
- hypergram-1.2.25/hypergram/methods/messages/send_document.py +0 -319
- hypergram-1.2.25/hypergram/methods/messages/send_live_photo.py +0 -241
- hypergram-1.2.25/hypergram/methods/messages/send_location.py +0 -242
- hypergram-1.2.25/hypergram/methods/messages/send_media_group.py +0 -525
- hypergram-1.2.25/hypergram/methods/messages/send_message.py +0 -352
- hypergram-1.2.25/hypergram/methods/messages/send_message_draft.py +0 -105
- hypergram-1.2.25/hypergram/methods/messages/send_paid_media.py +0 -385
- hypergram-1.2.25/hypergram/methods/messages/send_paid_reaction.py +0 -79
- hypergram-1.2.25/hypergram/methods/messages/send_photo.py +0 -317
- hypergram-1.2.25/hypergram/methods/messages/send_poll.py +0 -316
- hypergram-1.2.25/hypergram/methods/messages/send_reaction.py +0 -111
- hypergram-1.2.25/hypergram/methods/messages/send_rich_message.py +0 -156
- hypergram-1.2.25/hypergram/methods/messages/send_rich_message_draft.py +0 -93
- hypergram-1.2.25/hypergram/methods/messages/send_screenshot_notification.py +0 -57
- hypergram-1.2.25/hypergram/methods/messages/send_sticker.py +0 -303
- hypergram-1.2.25/hypergram/methods/messages/send_venue.py +0 -231
- hypergram-1.2.25/hypergram/methods/messages/send_video.py +0 -448
- hypergram-1.2.25/hypergram/methods/messages/send_video_note.py +0 -336
- hypergram-1.2.25/hypergram/methods/messages/send_voice.py +0 -325
- hypergram-1.2.25/hypergram/methods/messages/send_web_page.py +0 -195
- hypergram-1.2.25/hypergram/methods/messages/set_direct_messages_chat_topic_is_marked_as_unread.py +0 -65
- hypergram-1.2.25/hypergram/methods/messages/start_bot.py +0 -77
- hypergram-1.2.25/hypergram/methods/messages/stop_poll.py +0 -81
- hypergram-1.2.25/hypergram/methods/messages/stream_media.py +0 -106
- hypergram-1.2.25/hypergram/methods/messages/summarize_message.py +0 -81
- hypergram-1.2.25/hypergram/methods/messages/translate_message_text.py +0 -77
- hypergram-1.2.25/hypergram/methods/messages/translate_text.py +0 -73
- hypergram-1.2.25/hypergram/methods/messages/view_messages.py +0 -61
- hypergram-1.2.25/hypergram/methods/messages/vote_poll.py +0 -71
- hypergram-1.2.25/hypergram/methods/password/__init__.py +0 -29
- hypergram-1.2.25/hypergram/methods/password/change_cloud_password.py +0 -82
- hypergram-1.2.25/hypergram/methods/password/enable_cloud_password.py +0 -88
- hypergram-1.2.25/hypergram/methods/password/remove_cloud_password.py +0 -64
- hypergram-1.2.25/hypergram/methods/payments/__init__.py +0 -111
- hypergram-1.2.25/hypergram/methods/payments/add_collection_gifts.py +0 -70
- hypergram-1.2.25/hypergram/methods/payments/apply_gift_code.py +0 -64
- hypergram-1.2.25/hypergram/methods/payments/buy_gift_upgrade.py +0 -76
- hypergram-1.2.25/hypergram/methods/payments/check_gift_code.py +0 -67
- hypergram-1.2.25/hypergram/methods/payments/convert_gift_to_stars.py +0 -61
- hypergram-1.2.25/hypergram/methods/payments/craft_gift.py +0 -67
- hypergram-1.2.25/hypergram/methods/payments/create_gift_collection.py +0 -63
- hypergram-1.2.25/hypergram/methods/payments/delete_gift_collection.py +0 -58
- hypergram-1.2.25/hypergram/methods/payments/drop_gift_original_details.py +0 -74
- hypergram-1.2.25/hypergram/methods/payments/edit_star_subscription.py +0 -47
- hypergram-1.2.25/hypergram/methods/payments/get_available_gifts.py +0 -47
- hypergram-1.2.25/hypergram/methods/payments/get_chat_gifts.py +0 -150
- hypergram-1.2.25/hypergram/methods/payments/get_chat_gifts_count.py +0 -63
- hypergram-1.2.25/hypergram/methods/payments/get_gift_auction_state.py +0 -64
- hypergram-1.2.25/hypergram/methods/payments/get_gift_collections.py +0 -53
- hypergram-1.2.25/hypergram/methods/payments/get_gift_upgrade_preview.py +0 -50
- hypergram-1.2.25/hypergram/methods/payments/get_gift_upgrade_variants.py +0 -45
- hypergram-1.2.25/hypergram/methods/payments/get_gifts_for_crafting.py +0 -86
- hypergram-1.2.25/hypergram/methods/payments/get_payment_form.py +0 -66
- hypergram-1.2.25/hypergram/methods/payments/get_stars_balance.py +0 -64
- hypergram-1.2.25/hypergram/methods/payments/get_ton_balance.py +0 -53
- hypergram-1.2.25/hypergram/methods/payments/get_upgraded_gift.py +0 -66
- hypergram-1.2.25/hypergram/methods/payments/get_upgraded_gift_value_info.py +0 -63
- hypergram-1.2.25/hypergram/methods/payments/gift_premium_with_stars.py +0 -97
- hypergram-1.2.25/hypergram/methods/payments/hide_gift.py +0 -62
- hypergram-1.2.25/hypergram/methods/payments/increase_gift_auction_bid.py +0 -68
- hypergram-1.2.25/hypergram/methods/payments/place_gift_auction_bid.py +0 -111
- hypergram-1.2.25/hypergram/methods/payments/process_gift_purchase_offer.py +0 -51
- hypergram-1.2.25/hypergram/methods/payments/remove_collection_gifts.py +0 -68
- hypergram-1.2.25/hypergram/methods/payments/reorder_collection_gifts.py +0 -69
- hypergram-1.2.25/hypergram/methods/payments/reorder_gift_collections.py +0 -57
- hypergram-1.2.25/hypergram/methods/payments/reuse_star_subscription.py +0 -41
- hypergram-1.2.25/hypergram/methods/payments/search_gifts_for_resale.py +0 -119
- hypergram-1.2.25/hypergram/methods/payments/send_gift.py +0 -99
- hypergram-1.2.25/hypergram/methods/payments/send_gift_purchase_offer.py +0 -76
- hypergram-1.2.25/hypergram/methods/payments/send_payment_form.py +0 -96
- hypergram-1.2.25/hypergram/methods/payments/send_resold_gift.py +0 -123
- hypergram-1.2.25/hypergram/methods/payments/set_gift_collection_name.py +0 -62
- hypergram-1.2.25/hypergram/methods/payments/set_gift_resale_price.py +0 -72
- hypergram-1.2.25/hypergram/methods/payments/set_pinned_gifts.py +0 -67
- hypergram-1.2.25/hypergram/methods/payments/show_gift.py +0 -62
- hypergram-1.2.25/hypergram/methods/payments/suggest_birthday.py +0 -59
- hypergram-1.2.25/hypergram/methods/payments/transfer_gift.py +0 -103
- hypergram-1.2.25/hypergram/methods/payments/upgrade_gift.py +0 -114
- hypergram-1.2.25/hypergram/methods/phone/__init__.py +0 -25
- hypergram-1.2.25/hypergram/methods/phone/get_call_members.py +0 -103
- hypergram-1.2.25/hypergram/methods/premium/__init__.py +0 -28
- hypergram-1.2.25/hypergram/methods/premium/apply_boost.py +0 -59
- hypergram-1.2.25/hypergram/methods/premium/get_boosts.py +0 -56
- hypergram-1.2.25/hypergram/methods/premium/get_boosts_status.py +0 -45
- hypergram-1.2.25/hypergram/methods/stories/__init__.py +0 -64
- hypergram-1.2.25/hypergram/methods/stories/can_post_stories.py +0 -53
- hypergram-1.2.25/hypergram/methods/stories/copy_story.py +0 -116
- hypergram-1.2.25/hypergram/methods/stories/delete_stories.py +0 -66
- hypergram-1.2.25/hypergram/methods/stories/edit_story_caption.py +0 -83
- hypergram-1.2.25/hypergram/methods/stories/edit_story_media.py +0 -174
- hypergram-1.2.25/hypergram/methods/stories/edit_story_privacy.py +0 -130
- hypergram-1.2.25/hypergram/methods/stories/enable_stealth_mode.py +0 -67
- hypergram-1.2.25/hypergram/methods/stories/forward_story.py +0 -135
- hypergram-1.2.25/hypergram/methods/stories/get_all_stories.py +0 -81
- hypergram-1.2.25/hypergram/methods/stories/get_archived_stories.py +0 -94
- hypergram-1.2.25/hypergram/methods/stories/get_chat_stories.py +0 -72
- hypergram-1.2.25/hypergram/methods/stories/get_pinned_stories.py +0 -102
- hypergram-1.2.25/hypergram/methods/stories/get_stories.py +0 -104
- hypergram-1.2.25/hypergram/methods/stories/get_story_views.py +0 -120
- hypergram-1.2.25/hypergram/methods/stories/hide_chat_stories.py +0 -56
- hypergram-1.2.25/hypergram/methods/stories/pin_chat_stories.py +0 -65
- hypergram-1.2.25/hypergram/methods/stories/read_chat_stories.py +0 -64
- hypergram-1.2.25/hypergram/methods/stories/send_story.py +0 -274
- hypergram-1.2.25/hypergram/methods/stories/show_chat_stories.py +0 -56
- hypergram-1.2.25/hypergram/methods/stories/unpin_chat_stories.py +0 -65
- hypergram-1.2.25/hypergram/methods/stories/view_stories.py +0 -61
- hypergram-1.2.25/hypergram/methods/users/__init__.py +0 -61
- hypergram-1.2.25/hypergram/methods/users/block_user.py +0 -54
- hypergram-1.2.25/hypergram/methods/users/check_username.py +0 -66
- hypergram-1.2.25/hypergram/methods/users/delete_profile_photos.py +0 -63
- hypergram-1.2.25/hypergram/methods/users/get_chat_audios.py +0 -103
- hypergram-1.2.25/hypergram/methods/users/get_chat_audios_count.py +0 -61
- hypergram-1.2.25/hypergram/methods/users/get_chat_photos.py +0 -159
- hypergram-1.2.25/hypergram/methods/users/get_chat_photos_count.py +0 -74
- hypergram-1.2.25/hypergram/methods/users/get_common_chats.py +0 -67
- hypergram-1.2.25/hypergram/methods/users/get_default_emoji_statuses.py +0 -47
- hypergram-1.2.25/hypergram/methods/users/get_me.py +0 -50
- hypergram-1.2.25/hypergram/methods/users/get_users.py +0 -71
- hypergram-1.2.25/hypergram/methods/users/set_emoji_status.py +0 -92
- hypergram-1.2.25/hypergram/methods/users/set_personal_channel.py +0 -67
- hypergram-1.2.25/hypergram/methods/users/set_profile_photo.py +0 -153
- hypergram-1.2.25/hypergram/methods/users/set_username.py +0 -57
- hypergram-1.2.25/hypergram/methods/users/unblock_user.py +0 -54
- hypergram-1.2.25/hypergram/methods/users/update_birthday.py +0 -67
- hypergram-1.2.25/hypergram/methods/users/update_profile.py +0 -72
- hypergram-1.2.25/hypergram/methods/users/update_status.py +0 -54
- hypergram-1.2.25/hypergram/methods/utilities/__init__.py +0 -39
- hypergram-1.2.25/hypergram/methods/utilities/add_handler.py +0 -73
- hypergram-1.2.25/hypergram/methods/utilities/compose.py +0 -78
- hypergram-1.2.25/hypergram/methods/utilities/export_session_string.py +0 -40
- hypergram-1.2.25/hypergram/methods/utilities/idle.py +0 -88
- hypergram-1.2.25/hypergram/methods/utilities/remove_handler.py +0 -69
- hypergram-1.2.25/hypergram/methods/utilities/restart.py +0 -78
- hypergram-1.2.25/hypergram/methods/utilities/run.py +0 -83
- hypergram-1.2.25/hypergram/methods/utilities/start.py +0 -103
- hypergram-1.2.25/hypergram/methods/utilities/stop.py +0 -76
- hypergram-1.2.25/hypergram/methods/utilities/stop_transmission.py +0 -43
- hypergram-1.2.25/hypergram/mime_types.py +0 -1881
- hypergram-1.2.25/hypergram/parser/__init__.py +0 -19
- hypergram-1.2.25/hypergram/parser/html.py +0 -293
- hypergram-1.2.25/hypergram/parser/markdown.py +0 -325
- hypergram-1.2.25/hypergram/parser/parser.py +0 -61
- hypergram-1.2.25/hypergram/parser/utils.py +0 -39
- hypergram-1.2.25/hypergram/qrlogin.py +0 -111
- hypergram-1.2.25/hypergram/raw/__init__.py +0 -26
- hypergram-1.2.25/hypergram/raw/core/__init__.py +0 -32
- hypergram-1.2.25/hypergram/raw/core/base_type_meta.py +0 -26
- hypergram-1.2.25/hypergram/raw/core/future_salt.py +0 -53
- hypergram-1.2.25/hypergram/raw/core/future_salts.py +0 -63
- hypergram-1.2.25/hypergram/raw/core/gzip_packed.py +0 -62
- hypergram-1.2.25/hypergram/raw/core/list.py +0 -26
- hypergram-1.2.25/hypergram/raw/core/message.py +0 -56
- hypergram-1.2.25/hypergram/raw/core/msg_container.py +0 -53
- hypergram-1.2.25/hypergram/raw/core/primitives/__init__.py +0 -24
- hypergram-1.2.25/hypergram/raw/core/primitives/bool.py +0 -48
- hypergram-1.2.25/hypergram/raw/core/primitives/bytes.py +0 -55
- hypergram-1.2.25/hypergram/raw/core/primitives/double.py +0 -32
- hypergram-1.2.25/hypergram/raw/core/primitives/int.py +0 -45
- hypergram-1.2.25/hypergram/raw/core/primitives/string.py +0 -31
- hypergram-1.2.25/hypergram/raw/core/primitives/vector.py +0 -66
- hypergram-1.2.25/hypergram/raw/core/tl_object.py +0 -84
- hypergram-1.2.25/hypergram/session/__init__.py +0 -20
- hypergram-1.2.25/hypergram/session/auth.py +0 -306
- hypergram-1.2.25/hypergram/session/internals/__init__.py +0 -20
- hypergram-1.2.25/hypergram/session/internals/msg_factory.py +0 -64
- hypergram-1.2.25/hypergram/session/internals/msg_id.py +0 -37
- hypergram-1.2.25/hypergram/session/session.py +0 -536
- hypergram-1.2.25/hypergram/storage/__init__.py +0 -20
- hypergram-1.2.25/hypergram/storage/sqlite_storage.py +0 -432
- hypergram-1.2.25/hypergram/storage/storage.py +0 -248
- hypergram-1.2.25/hypergram/sync.py +0 -109
- hypergram-1.2.25/hypergram/types/__init__.py +0 -27
- hypergram-1.2.25/hypergram/types/authorization/__init__.py +0 -39
- hypergram-1.2.25/hypergram/types/authorization/active_session.py +0 -179
- hypergram-1.2.25/hypergram/types/authorization/active_sessions.py +0 -56
- hypergram-1.2.25/hypergram/types/authorization/firebase_authentication_settings.py +0 -57
- hypergram-1.2.25/hypergram/types/authorization/phone_number_authentication_settings.py +0 -89
- hypergram-1.2.25/hypergram/types/authorization/sent_code.py +0 -62
- hypergram-1.2.25/hypergram/types/authorization/terms_of_service.py +0 -56
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/__init__.py +0 -109
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/bot_access_settings.py +0 -54
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/bot_command.py +0 -53
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/bot_command_scope.py +0 -73
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +0 -32
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +0 -32
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +0 -32
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/bot_command_scope_chat.py +0 -43
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +0 -43
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/bot_command_scope_chat_member.py +0 -48
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/bot_command_scope_default.py +0 -33
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/callback_game.py +0 -29
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/callback_query.py +0 -350
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/chat_boost_updated.py +0 -62
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/chat_shared.py +0 -97
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/force_reply.py +0 -66
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/game_high_score.py +0 -70
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/inline_keyboard_button.py +0 -321
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/inline_keyboard_markup.py +0 -76
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/keyboard_button.py +0 -328
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/keyboard_button_poll_type.py +0 -36
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/keyboard_button_request_chat.py +0 -97
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/keyboard_button_request_managed_bot.py +0 -46
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/keyboard_button_request_users.py +0 -73
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/labeled_price.py +0 -58
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/login_url.py +0 -91
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/managed_bot_updated.py +0 -62
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/menu_button.py +0 -44
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/menu_button_commands.py +0 -32
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/menu_button_default.py +0 -32
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/menu_button_web_app.py +0 -51
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/message_reaction_count_updated.py +0 -89
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/message_reaction_updated.py +0 -125
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/order_info.py +0 -57
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/pre_checkout_query.py +0 -137
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/purchased_paid_media.py +0 -50
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/reply_keyboard_markup.py +0 -112
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/reply_keyboard_remove.py +0 -58
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/sent_guest_message.py +0 -45
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/sent_web_app_message.py +0 -42
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/shipping_address.py +0 -82
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/shipping_option.py +0 -73
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/shipping_query.py +0 -121
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/users_shared.py +0 -83
- hypergram-1.2.25/hypergram/types/bots_and_keyboards/web_app_info.py +0 -37
- hypergram-1.2.25/hypergram/types/inline_mode/__init__.py +0 -47
- hypergram-1.2.25/hypergram/types/inline_mode/chosen_inline_result.py +0 -94
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query.py +0 -181
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result.py +0 -63
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_animation.py +0 -156
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_article.py +0 -99
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_audio.py +0 -120
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_cached_animation.py +0 -108
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_cached_audio.py +0 -101
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_cached_document.py +0 -113
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_cached_photo.py +0 -111
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_cached_sticker.py +0 -78
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_cached_video.py +0 -114
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_cached_voice.py +0 -108
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_contact.py +0 -114
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_document.py +0 -145
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_location.py +0 -122
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_photo.py +0 -147
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_venue.py +0 -131
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_video.py +0 -151
- hypergram-1.2.25/hypergram/types/inline_mode/inline_query_result_voice.py +0 -114
- hypergram-1.2.25/hypergram/types/input_content/__init__.py +0 -121
- hypergram-1.2.25/hypergram/types/input_content/input_chat_photo.py +0 -113
- hypergram-1.2.25/hypergram/types/input_content/input_checklist.py +0 -65
- hypergram-1.2.25/hypergram/types/input_content/input_contact_message_content.py +0 -68
- hypergram-1.2.25/hypergram/types/input_content/input_credentials.py +0 -38
- hypergram-1.2.25/hypergram/types/input_content/input_credentials_apple_pay.py +0 -43
- hypergram-1.2.25/hypergram/types/input_content/input_credentials_google_pay.py +0 -43
- hypergram-1.2.25/hypergram/types/input_content/input_credentials_new.py +0 -50
- hypergram-1.2.25/hypergram/types/input_content/input_credentials_saved.py +0 -59
- hypergram-1.2.25/hypergram/types/input_content/input_invoice.py +0 -36
- hypergram-1.2.25/hypergram/types/input_content/input_invoice_message.py +0 -51
- hypergram-1.2.25/hypergram/types/input_content/input_invoice_message_content.py +0 -176
- hypergram-1.2.25/hypergram/types/input_content/input_invoice_name.py +0 -52
- hypergram-1.2.25/hypergram/types/input_content/input_location_message_content.py +0 -85
- hypergram-1.2.25/hypergram/types/input_content/input_media.py +0 -56
- hypergram-1.2.25/hypergram/types/input_content/input_media_animation.py +0 -160
- hypergram-1.2.25/hypergram/types/input_content/input_media_audio.py +0 -157
- hypergram-1.2.25/hypergram/types/input_content/input_media_document.py +0 -127
- hypergram-1.2.25/hypergram/types/input_content/input_media_link.py +0 -52
- hypergram-1.2.25/hypergram/types/input_content/input_media_live_photo.py +0 -161
- hypergram-1.2.25/hypergram/types/input_content/input_media_location.py +0 -93
- hypergram-1.2.25/hypergram/types/input_content/input_media_photo.py +0 -123
- hypergram-1.2.25/hypergram/types/input_content/input_media_sticker.py +0 -104
- hypergram-1.2.25/hypergram/types/input_content/input_media_venue.py +0 -114
- hypergram-1.2.25/hypergram/types/input_content/input_media_video.py +0 -238
- hypergram-1.2.25/hypergram/types/input_content/input_message_content.py +0 -41
- hypergram-1.2.25/hypergram/types/input_content/input_phone_contact.py +0 -51
- hypergram-1.2.25/hypergram/types/input_content/input_poll_media.py +0 -58
- hypergram-1.2.25/hypergram/types/input_content/input_poll_option.py +0 -57
- hypergram-1.2.25/hypergram/types/input_content/input_poll_option_media.py +0 -57
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule.py +0 -44
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule_allow_all.py +0 -33
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule_allow_bots.py +0 -33
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule_allow_chats.py +0 -49
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule_allow_close_friends.py +0 -33
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule_allow_contacts.py +0 -33
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule_allow_premium.py +0 -33
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule_allow_users.py +0 -47
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule_disallow_all.py +0 -33
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule_disallow_bots.py +0 -33
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule_disallow_chats.py +0 -49
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule_disallow_contacts.py +0 -33
- hypergram-1.2.25/hypergram/types/input_content/input_privacy_rule_disallow_users.py +0 -47
- hypergram-1.2.25/hypergram/types/input_content/input_rich_message.py +0 -76
- hypergram-1.2.25/hypergram/types/input_content/input_rich_message_content.py +0 -49
- hypergram-1.2.25/hypergram/types/input_content/input_text_message_content.py +0 -97
- hypergram-1.2.25/hypergram/types/input_content/input_venue_message_content.py +0 -88
- hypergram-1.2.25/hypergram/types/list.py +0 -30
- hypergram-1.2.25/hypergram/types/messages_and_media/__init__.py +0 -411
- hypergram-1.2.25/hypergram/types/messages_and_media/animation.py +0 -191
- hypergram-1.2.25/hypergram/types/messages_and_media/auction_bid.py +0 -53
- hypergram-1.2.25/hypergram/types/messages_and_media/auction_round.py +0 -70
- hypergram-1.2.25/hypergram/types/messages_and_media/auction_state.py +0 -172
- hypergram-1.2.25/hypergram/types/messages_and_media/audio.py +0 -121
- hypergram-1.2.25/hypergram/types/messages_and_media/available_effect.py +0 -88
- hypergram-1.2.25/hypergram/types/messages_and_media/boosts_status.py +0 -89
- hypergram-1.2.25/hypergram/types/messages_and_media/business_message.py +0 -106
- hypergram-1.2.25/hypergram/types/messages_and_media/chat_background.py +0 -167
- hypergram-1.2.25/hypergram/types/messages_and_media/chat_boost.py +0 -108
- hypergram-1.2.25/hypergram/types/messages_and_media/chat_has_protected_content_disable_requested.py +0 -43
- hypergram-1.2.25/hypergram/types/messages_and_media/chat_has_protected_content_toggled.py +0 -62
- hypergram-1.2.25/hypergram/types/messages_and_media/chat_owner_changed.py +0 -49
- hypergram-1.2.25/hypergram/types/messages_and_media/chat_owner_left.py +0 -49
- hypergram-1.2.25/hypergram/types/messages_and_media/chat_theme.py +0 -51
- hypergram-1.2.25/hypergram/types/messages_and_media/checked_gift_code.py +0 -98
- hypergram-1.2.25/hypergram/types/messages_and_media/checklist.py +0 -110
- hypergram-1.2.25/hypergram/types/messages_and_media/checklist_task.py +0 -88
- hypergram-1.2.25/hypergram/types/messages_and_media/checklist_tasks_added.py +0 -63
- hypergram-1.2.25/hypergram/types/messages_and_media/checklist_tasks_done.py +0 -63
- hypergram-1.2.25/hypergram/types/messages_and_media/contact.py +0 -71
- hypergram-1.2.25/hypergram/types/messages_and_media/contact_registered.py +0 -29
- hypergram-1.2.25/hypergram/types/messages_and_media/craft_gift_result.py +0 -58
- hypergram-1.2.25/hypergram/types/messages_and_media/dice.py +0 -47
- hypergram-1.2.25/hypergram/types/messages_and_media/direct_message_price_changed.py +0 -56
- hypergram-1.2.25/hypergram/types/messages_and_media/direct_messages_topic.py +0 -105
- hypergram-1.2.25/hypergram/types/messages_and_media/document.py +0 -98
- hypergram-1.2.25/hypergram/types/messages_and_media/external_reply_info.py +0 -334
- hypergram-1.2.25/hypergram/types/messages_and_media/fact_check.py +0 -72
- hypergram-1.2.25/hypergram/types/messages_and_media/formatted_text.py +0 -80
- hypergram-1.2.25/hypergram/types/messages_and_media/forum_topic.py +0 -161
- hypergram-1.2.25/hypergram/types/messages_and_media/forum_topic_closed.py +0 -29
- hypergram-1.2.25/hypergram/types/messages_and_media/forum_topic_created.py +0 -64
- hypergram-1.2.25/hypergram/types/messages_and_media/forum_topic_edited.py +0 -70
- hypergram-1.2.25/hypergram/types/messages_and_media/forum_topic_reopened.py +0 -29
- hypergram-1.2.25/hypergram/types/messages_and_media/game.py +0 -98
- hypergram-1.2.25/hypergram/types/messages_and_media/general_forum_topic_hidden.py +0 -29
- hypergram-1.2.25/hypergram/types/messages_and_media/general_forum_topic_unhidden.py +0 -29
- hypergram-1.2.25/hypergram/types/messages_and_media/gift.py +0 -1044
- hypergram-1.2.25/hypergram/types/messages_and_media/gift_attribute.py +0 -174
- hypergram-1.2.25/hypergram/types/messages_and_media/gift_auction.py +0 -55
- hypergram-1.2.25/hypergram/types/messages_and_media/gift_auction_state.py +0 -69
- hypergram-1.2.25/hypergram/types/messages_and_media/gift_collection.py +0 -73
- hypergram-1.2.25/hypergram/types/messages_and_media/gift_purchase_limit.py +0 -52
- hypergram-1.2.25/hypergram/types/messages_and_media/gift_resale_parameters.py +0 -69
- hypergram-1.2.25/hypergram/types/messages_and_media/gift_resale_price.py +0 -83
- hypergram-1.2.25/hypergram/types/messages_and_media/gift_upgrade_preview.py +0 -84
- hypergram-1.2.25/hypergram/types/messages_and_media/gift_upgrade_price.py +0 -53
- hypergram-1.2.25/hypergram/types/messages_and_media/gift_upgrade_variants.py +0 -72
- hypergram-1.2.25/hypergram/types/messages_and_media/gifted_premium.py +0 -135
- hypergram-1.2.25/hypergram/types/messages_and_media/gifted_stars.py +0 -120
- hypergram-1.2.25/hypergram/types/messages_and_media/gifted_ton.py +0 -96
- hypergram-1.2.25/hypergram/types/messages_and_media/giveaway.py +0 -106
- hypergram-1.2.25/hypergram/types/messages_and_media/giveaway_completed.py +0 -95
- hypergram-1.2.25/hypergram/types/messages_and_media/giveaway_created.py +0 -57
- hypergram-1.2.25/hypergram/types/messages_and_media/giveaway_prize_stars.py +0 -119
- hypergram-1.2.25/hypergram/types/messages_and_media/giveaway_winners.py +0 -150
- hypergram-1.2.25/hypergram/types/messages_and_media/input_checklist_task.py +0 -72
- hypergram-1.2.25/hypergram/types/messages_and_media/invoice.py +0 -162
- hypergram-1.2.25/hypergram/types/messages_and_media/link_preview_options.py +0 -87
- hypergram-1.2.25/hypergram/types/messages_and_media/live_photo.py +0 -102
- hypergram-1.2.25/hypergram/types/messages_and_media/location.py +0 -131
- hypergram-1.2.25/hypergram/types/messages_and_media/managed_bot_created.py +0 -56
- hypergram-1.2.25/hypergram/types/messages_and_media/mask_position.py +0 -70
- hypergram-1.2.25/hypergram/types/messages_and_media/media_area.py +0 -287
- hypergram-1.2.25/hypergram/types/messages_and_media/message.py +0 -9572
- hypergram-1.2.25/hypergram/types/messages_and_media/message_content.py +0 -306
- hypergram-1.2.25/hypergram/types/messages_and_media/message_entity.py +0 -205
- hypergram-1.2.25/hypergram/types/messages_and_media/message_origin.py +0 -94
- hypergram-1.2.25/hypergram/types/messages_and_media/message_origin_channel.py +0 -61
- hypergram-1.2.25/hypergram/types/messages_and_media/message_origin_chat.py +0 -56
- hypergram-1.2.25/hypergram/types/messages_and_media/message_origin_hidden_user.py +0 -51
- hypergram-1.2.25/hypergram/types/messages_and_media/message_origin_import.py +0 -50
- hypergram-1.2.25/hypergram/types/messages_and_media/message_origin_user.py +0 -51
- hypergram-1.2.25/hypergram/types/messages_and_media/message_reactions.py +0 -90
- hypergram-1.2.25/hypergram/types/messages_and_media/my_boost.py +0 -79
- hypergram-1.2.25/hypergram/types/messages_and_media/paid_media_info.py +0 -93
- hypergram-1.2.25/hypergram/types/messages_and_media/paid_media_preview.py +0 -55
- hypergram-1.2.25/hypergram/types/messages_and_media/paid_messages_price_changed.py +0 -48
- hypergram-1.2.25/hypergram/types/messages_and_media/paid_messages_refunded.py +0 -54
- hypergram-1.2.25/hypergram/types/messages_and_media/paid_reactor.py +0 -86
- hypergram-1.2.25/hypergram/types/messages_and_media/payment_form.py +0 -169
- hypergram-1.2.25/hypergram/types/messages_and_media/payment_option.py +0 -50
- hypergram-1.2.25/hypergram/types/messages_and_media/payment_result.py +0 -65
- hypergram-1.2.25/hypergram/types/messages_and_media/photo.py +0 -130
- hypergram-1.2.25/hypergram/types/messages_and_media/poll.py +0 -372
- hypergram-1.2.25/hypergram/types/messages_and_media/poll_option.py +0 -91
- hypergram-1.2.25/hypergram/types/messages_and_media/poll_option_added.py +0 -69
- hypergram-1.2.25/hypergram/types/messages_and_media/poll_option_deleted.py +0 -69
- hypergram-1.2.25/hypergram/types/messages_and_media/premium_gift_code.py +0 -141
- hypergram-1.2.25/hypergram/types/messages_and_media/proximity_alert_triggered.py +0 -65
- hypergram-1.2.25/hypergram/types/messages_and_media/reaction.py +0 -97
- hypergram-1.2.25/hypergram/types/messages_and_media/refunded_payment.py +0 -81
- hypergram-1.2.25/hypergram/types/messages_and_media/reply_parameters.py +0 -88
- hypergram-1.2.25/hypergram/types/messages_and_media/restriction_reason.py +0 -61
- hypergram-1.2.25/hypergram/types/messages_and_media/rich_block.py +0 -999
- hypergram-1.2.25/hypergram/types/messages_and_media/rich_message.py +0 -71
- hypergram-1.2.25/hypergram/types/messages_and_media/rich_text.py +0 -692
- hypergram-1.2.25/hypergram/types/messages_and_media/saved_credentials.py +0 -50
- hypergram-1.2.25/hypergram/types/messages_and_media/screenshot_taken.py +0 -29
- hypergram-1.2.25/hypergram/types/messages_and_media/star_amount.py +0 -54
- hypergram-1.2.25/hypergram/types/messages_and_media/sticker.py +0 -287
- hypergram-1.2.25/hypergram/types/messages_and_media/story.py +0 -2183
- hypergram-1.2.25/hypergram/types/messages_and_media/story_view.py +0 -75
- hypergram-1.2.25/hypergram/types/messages_and_media/stripped_thumbnail.py +0 -47
- hypergram-1.2.25/hypergram/types/messages_and_media/successful_payment.py +0 -141
- hypergram-1.2.25/hypergram/types/messages_and_media/suggested_post_approval_failed.py +0 -88
- hypergram-1.2.25/hypergram/types/messages_and_media/suggested_post_approved.py +0 -93
- hypergram-1.2.25/hypergram/types/messages_and_media/suggested_post_declined.py +0 -86
- hypergram-1.2.25/hypergram/types/messages_and_media/suggested_post_info.py +0 -73
- hypergram-1.2.25/hypergram/types/messages_and_media/suggested_post_paid.py +0 -101
- hypergram-1.2.25/hypergram/types/messages_and_media/suggested_post_parameters.py +0 -53
- hypergram-1.2.25/hypergram/types/messages_and_media/suggested_post_price.py +0 -106
- hypergram-1.2.25/hypergram/types/messages_and_media/suggested_post_refunded.py +0 -92
- hypergram-1.2.25/hypergram/types/messages_and_media/text_quote.py +0 -83
- hypergram-1.2.25/hypergram/types/messages_and_media/thumbnail.py +0 -111
- hypergram-1.2.25/hypergram/types/messages_and_media/upgraded_gift_attribute_id.py +0 -58
- hypergram-1.2.25/hypergram/types/messages_and_media/upgraded_gift_attribute_id_backdrop.py +0 -41
- hypergram-1.2.25/hypergram/types/messages_and_media/upgraded_gift_attribute_id_model.py +0 -41
- hypergram-1.2.25/hypergram/types/messages_and_media/upgraded_gift_attribute_id_symbol.py +0 -41
- hypergram-1.2.25/hypergram/types/messages_and_media/upgraded_gift_attribute_rarity.py +0 -131
- hypergram-1.2.25/hypergram/types/messages_and_media/upgraded_gift_original_details.py +0 -74
- hypergram-1.2.25/hypergram/types/messages_and_media/upgraded_gift_purchase_offer.py +0 -138
- hypergram-1.2.25/hypergram/types/messages_and_media/upgraded_gift_value_info.py +0 -124
- hypergram-1.2.25/hypergram/types/messages_and_media/venue.py +0 -76
- hypergram-1.2.25/hypergram/types/messages_and_media/video.py +0 -174
- hypergram-1.2.25/hypergram/types/messages_and_media/video_note.py +0 -115
- hypergram-1.2.25/hypergram/types/messages_and_media/voice.py +0 -102
- hypergram-1.2.25/hypergram/types/messages_and_media/web_app_data.py +0 -53
- hypergram-1.2.25/hypergram/types/messages_and_media/web_page.py +0 -262
- hypergram-1.2.25/hypergram/types/messages_and_media/write_access_allowed.py +0 -57
- hypergram-1.2.25/hypergram/types/object.py +0 -127
- hypergram-1.2.25/hypergram/types/update.py +0 -27
- hypergram-1.2.25/hypergram/types/user_and_chats/__init__.py +0 -124
- hypergram-1.2.25/hypergram/types/user_and_chats/accepted_gift_types.py +0 -83
- hypergram-1.2.25/hypergram/types/user_and_chats/birthday.py +0 -69
- hypergram-1.2.25/hypergram/types/user_and_chats/bot_verification.py +0 -63
- hypergram-1.2.25/hypergram/types/user_and_chats/business_bot_rights.py +0 -125
- hypergram-1.2.25/hypergram/types/user_and_chats/business_connection.py +0 -85
- hypergram-1.2.25/hypergram/types/user_and_chats/business_intro.py +0 -74
- hypergram-1.2.25/hypergram/types/user_and_chats/business_recipients.py +0 -78
- hypergram-1.2.25/hypergram/types/user_and_chats/business_weekly_open.py +0 -49
- hypergram-1.2.25/hypergram/types/user_and_chats/business_working_hours.py +0 -62
- hypergram-1.2.25/hypergram/types/user_and_chats/chat.py +0 -1972
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_admin_with_invite_links.py +0 -63
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_administrator_rights.py +0 -160
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_color.py +0 -64
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_event.py +0 -536
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_event_filter.py +0 -175
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_folder_invite_link_info.py +0 -96
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_invite_link.py +0 -130
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_join_request.py +0 -146
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_join_result.py +0 -117
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_joiner.py +0 -82
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_member.py +0 -247
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_member_updated.py +0 -112
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_permissions.py +0 -213
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_photo.py +0 -125
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_reactions.py +0 -69
- hypergram-1.2.25/hypergram/types/user_and_chats/chat_settings.py +0 -173
- hypergram-1.2.25/hypergram/types/user_and_chats/dialog.py +0 -121
- hypergram-1.2.25/hypergram/types/user_and_chats/emoji_status.py +0 -127
- hypergram-1.2.25/hypergram/types/user_and_chats/failed_to_add_member.py +0 -55
- hypergram-1.2.25/hypergram/types/user_and_chats/folder.py +0 -507
- hypergram-1.2.25/hypergram/types/user_and_chats/folder_invite_link.py +0 -57
- hypergram-1.2.25/hypergram/types/user_and_chats/found_contacts.py +0 -74
- hypergram-1.2.25/hypergram/types/user_and_chats/global_privacy_settings.py +0 -115
- hypergram-1.2.25/hypergram/types/user_and_chats/group_call_member.py +0 -149
- hypergram-1.2.25/hypergram/types/user_and_chats/history_cleared.py +0 -29
- hypergram-1.2.25/hypergram/types/user_and_chats/invite_link_importer.py +0 -61
- hypergram-1.2.25/hypergram/types/user_and_chats/phone_call_ended.py +0 -63
- hypergram-1.2.25/hypergram/types/user_and_chats/phone_call_started.py +0 -49
- hypergram-1.2.25/hypergram/types/user_and_chats/privacy_rule.py +0 -58
- hypergram-1.2.25/hypergram/types/user_and_chats/restriction.py +0 -50
- hypergram-1.2.25/hypergram/types/user_and_chats/stories_stealth_mode.py +0 -47
- hypergram-1.2.25/hypergram/types/user_and_chats/user.py +0 -960
- hypergram-1.2.25/hypergram/types/user_and_chats/user_rating.py +0 -72
- hypergram-1.2.25/hypergram/types/user_and_chats/username.py +0 -50
- hypergram-1.2.25/hypergram/types/user_and_chats/verification_status.py +0 -75
- hypergram-1.2.25/hypergram/types/user_and_chats/video_chat_ended.py +0 -41
- hypergram-1.2.25/hypergram/types/user_and_chats/video_chat_members_invited.py +0 -50
- hypergram-1.2.25/hypergram/types/user_and_chats/video_chat_scheduled.py +0 -43
- hypergram-1.2.25/hypergram/types/user_and_chats/video_chat_started.py +0 -29
- hypergram-1.2.25/hypergram/utils.py +0 -783
- hypergram-1.2.25/pyproject.toml +0 -102
- {hypergram-1.2.25 → hypergram-1.2.27}/.gitignore +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/COPYING +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/COPYING.lesser +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/MANIFEST.in +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/Makefile +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/api/source/auth_key.tl +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/api/source/main_api.tl +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/api/source/sys_msgs.tl +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/api/template/combinator.txt +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/api/template/type.txt +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/errors/source/303_SEE_OTHER.tsv +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/errors/source/400_BAD_REQUEST.tsv +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/errors/source/401_UNAUTHORIZED.tsv +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/errors/source/403_FORBIDDEN.tsv +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/errors/source/406_NOT_ACCEPTABLE.tsv +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/errors/source/420_FLOOD.tsv +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/errors/template/class.txt +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/compiler/errors/template/sub_class.txt +0 -0
- {hypergram-1.2.25 → hypergram-1.2.27}/hypergram/py.typed +0 -0
hypergram-1.2.27/NOTICE
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
hypergram - Telegram MTProto API Client Library for Python
|
|
2
|
+
Copyright (C) 2017-present Dan <https://github.com/delivrance>
|
|
3
|
+
|
|
4
|
+
This file is part of hypergram.
|
|
5
|
+
|
|
6
|
+
hypergram is free software: you can redistribute it and/or modify
|
|
7
|
+
it under the terms of the GNU Lesser General Public License as published
|
|
8
|
+
by the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
(at your option) any later version.
|
|
10
|
+
|
|
11
|
+
hypergram is distributed in the hope that it will be useful,
|
|
12
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
GNU Lesser General Public License for more details.
|
|
15
|
+
|
|
16
|
+
You should have received a copy of the GNU Lesser General Public License
|
|
17
|
+
along with hypergram. If not, see <http://www.gnu.org/licenses/>.
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hypergram
|
|
3
|
+
Version: 1.2.27
|
|
4
|
+
Summary: Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
|
|
5
|
+
Project-URL: Homepage, https://hypergram.icu
|
|
6
|
+
Project-URL: Documentation, https://docs.hypergram.icu
|
|
7
|
+
Project-URL: Source, https://github.com/hypergram/hypergram
|
|
8
|
+
Project-URL: Issues, https://github.com/hypergram/hypergram/issues
|
|
9
|
+
Project-URL: Community, https://t.me/hypergram_chat
|
|
10
|
+
Author-email: Dan <dan@hypergram.org>
|
|
11
|
+
Maintainer: hypergram
|
|
12
|
+
License-Expression: LGPL-3.0-or-later
|
|
13
|
+
License-File: COPYING
|
|
14
|
+
License-File: COPYING.lesser
|
|
15
|
+
Keywords: api,chat,client,library,messenger,mtproto,python,telegram
|
|
16
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
17
|
+
Classifier: Intended Audience :: Developers
|
|
18
|
+
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
|
|
19
|
+
Classifier: Natural Language :: English
|
|
20
|
+
Classifier: Operating System :: OS Independent
|
|
21
|
+
Classifier: Programming Language :: Python
|
|
22
|
+
Classifier: Programming Language :: Python :: 3
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
29
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
30
|
+
Classifier: Programming Language :: Python :: Implementation
|
|
31
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
32
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
33
|
+
Classifier: Topic :: Communications
|
|
34
|
+
Classifier: Topic :: Communications :: Chat
|
|
35
|
+
Classifier: Topic :: Internet
|
|
36
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
37
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
38
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
39
|
+
Requires-Python: >=3.8
|
|
40
|
+
Requires-Dist: pyaes<=1.6.1
|
|
41
|
+
Requires-Dist: python-socks[asyncio]<=2.8.1
|
|
42
|
+
Provides-Extra: dev
|
|
43
|
+
Requires-Dist: hatch<=1.17.0; extra == 'dev'
|
|
44
|
+
Requires-Dist: keyring<=25.7.0; extra == 'dev'
|
|
45
|
+
Requires-Dist: pytest-asyncio<=1.4.0; extra == 'dev'
|
|
46
|
+
Requires-Dist: pytest-cov<=7.1.0; extra == 'dev'
|
|
47
|
+
Requires-Dist: pytest<=9.1.1; extra == 'dev'
|
|
48
|
+
Requires-Dist: twine<=6.2.0; extra == 'dev'
|
|
49
|
+
Provides-Extra: docs
|
|
50
|
+
Requires-Dist: pygments<=2.20.0; extra == 'docs'
|
|
51
|
+
Requires-Dist: shibuya<=2026.5.19; extra == 'docs'
|
|
52
|
+
Requires-Dist: sphinx-autobuild<=2025.8.25; extra == 'docs'
|
|
53
|
+
Requires-Dist: sphinx-copybutton<=0.5.2; extra == 'docs'
|
|
54
|
+
Requires-Dist: sphinx-design<=0.7.0; extra == 'docs'
|
|
55
|
+
Requires-Dist: sphinx-iconify<=0.3.0; extra == 'docs'
|
|
56
|
+
Requires-Dist: sphinx<=9.1.0; extra == 'docs'
|
|
57
|
+
Provides-Extra: fast
|
|
58
|
+
Requires-Dist: tgcrypto<=1.2.5; extra == 'fast'
|
|
59
|
+
Requires-Dist: uvloop<=0.22.1; (sys_platform == 'darwin' or sys_platform == 'linux') and extra == 'fast'
|
|
60
|
+
Description-Content-Type: text/markdown
|
|
61
|
+
|
|
62
|
+
<p align="center">
|
|
63
|
+
<a href="https://github.com/hypergram/hypergram">
|
|
64
|
+
<img src="https://raw.githubusercontent.com/hypergram/hypergramartwork/master/hypergram-logo.png" alt="hypergram" width="128">
|
|
65
|
+
</a>
|
|
66
|
+
<br>
|
|
67
|
+
<b>Telegram MTProto API Framework for Python</b>
|
|
68
|
+
<br>
|
|
69
|
+
<a href="https://hypergram.icu">
|
|
70
|
+
Homepage
|
|
71
|
+
</a>
|
|
72
|
+
•
|
|
73
|
+
<a href="https://docs.hypergram.icu">
|
|
74
|
+
Documentation
|
|
75
|
+
</a>
|
|
76
|
+
•
|
|
77
|
+
<a href="https://t.me/hypergram_news">
|
|
78
|
+
News
|
|
79
|
+
</a>
|
|
80
|
+
•
|
|
81
|
+
<a href="https://t.me/hypergram_chat">
|
|
82
|
+
Chat
|
|
83
|
+
</a>
|
|
84
|
+
<br/>
|
|
85
|
+
<br/>
|
|
86
|
+
<a href="https://pypi.python.org/pypi/hypergram">
|
|
87
|
+
<img src="https://img.shields.io/pypi/v/hypergram.svg?logo=pypi&logoColor=white" alt="PyPI package version">
|
|
88
|
+
</a>
|
|
89
|
+
<a href="https://pypi.python.org/pypi/hypergram">
|
|
90
|
+
<img src="https://img.shields.io/pypi/l/hypergram.svg" alt="License">
|
|
91
|
+
</a>
|
|
92
|
+
<a href="https://pypi.python.org/pypi/hypergram">
|
|
93
|
+
<img src="https://img.shields.io/pypi/pyversions/hypergram.svg" alt="Python versions">
|
|
94
|
+
</a>
|
|
95
|
+
</p>
|
|
96
|
+
|
|
97
|
+
## hypergram
|
|
98
|
+
|
|
99
|
+
> Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
|
|
100
|
+
|
|
101
|
+
hypergram is an actively maintained hypergram fork for Python designed as a drop-in replacement for hypergram, hypergram provides support for the latest Telegram features including Gifts, Stories, Topics, Business Accounts, and more.
|
|
102
|
+
|
|
103
|
+
```python
|
|
104
|
+
from hypergram import Client, filters
|
|
105
|
+
|
|
106
|
+
app = Client("my_account")
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
@app.on_message(filters.private)
|
|
110
|
+
async def hello(client, message):
|
|
111
|
+
await message.reply("Hello from hypergram!")
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
app.run()
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
**hypergram** is a modern, elegant and asynchronous [MTProto API](https://docs.hypergram.icu/topics/mtproto-vs-botapi)
|
|
118
|
+
framework. It enables you to easily interact with the main Telegram API through a user account (custom client) or a bot
|
|
119
|
+
identity (bot API alternative) using Python.
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
### Key Features
|
|
123
|
+
|
|
124
|
+
- **Ready**: Install hypergram with pip and start building your applications right away.
|
|
125
|
+
- **Easy**: Makes the Telegram API simple and intuitive, while still allowing advanced usages.
|
|
126
|
+
- **Elegant**: Low-level details are abstracted and re-presented in a more convenient way.
|
|
127
|
+
- **Fast**: Boosted up by [TgCrypto](https://github.com/hypergram/tgcrypto), a high-performance cryptography library written in C.
|
|
128
|
+
- **Type-hinted**: Types and methods are all type-hinted, enabling excellent editor support.
|
|
129
|
+
- **Async**: Fully asynchronous (also usable synchronously if wanted, for convenience).
|
|
130
|
+
- **Powerful**: Full access to Telegram's API to execute any official client action and more.
|
|
131
|
+
|
|
132
|
+
### Installing
|
|
133
|
+
|
|
134
|
+
Stable version
|
|
135
|
+
|
|
136
|
+
``` bash
|
|
137
|
+
pip install hypergram
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Dev version
|
|
141
|
+
|
|
142
|
+
``` bash
|
|
143
|
+
pip install hypergram --force-reinstall
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
### Resources
|
|
147
|
+
|
|
148
|
+
- Check out the [docs](https://docs.hypergram.icu) to learn more about hypergram, get started right
|
|
149
|
+
away and discover more in-depth material for building your client applications.
|
|
150
|
+
- Join the [official channel](https://t.me/hypergram_news) and stay tuned for news, updates and announcements.
|
|
151
|
+
- Join the [official chat](https://t.me/hypergram_chat) to communicate with people.
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://github.com/hypergram/hypergram">
|
|
3
|
+
<img src="https://raw.githubusercontent.com/hypergram/hypergramartwork/master/hypergram-logo.png" alt="hypergram" width="128">
|
|
4
|
+
</a>
|
|
5
|
+
<br>
|
|
6
|
+
<b>Telegram MTProto API Framework for Python</b>
|
|
7
|
+
<br>
|
|
8
|
+
<a href="https://hypergram.icu">
|
|
9
|
+
Homepage
|
|
10
|
+
</a>
|
|
11
|
+
•
|
|
12
|
+
<a href="https://docs.hypergram.icu">
|
|
13
|
+
Documentation
|
|
14
|
+
</a>
|
|
15
|
+
•
|
|
16
|
+
<a href="https://t.me/hypergram_news">
|
|
17
|
+
News
|
|
18
|
+
</a>
|
|
19
|
+
•
|
|
20
|
+
<a href="https://t.me/hypergram_chat">
|
|
21
|
+
Chat
|
|
22
|
+
</a>
|
|
23
|
+
<br/>
|
|
24
|
+
<br/>
|
|
25
|
+
<a href="https://pypi.python.org/pypi/hypergram">
|
|
26
|
+
<img src="https://img.shields.io/pypi/v/hypergram.svg?logo=pypi&logoColor=white" alt="PyPI package version">
|
|
27
|
+
</a>
|
|
28
|
+
<a href="https://pypi.python.org/pypi/hypergram">
|
|
29
|
+
<img src="https://img.shields.io/pypi/l/hypergram.svg" alt="License">
|
|
30
|
+
</a>
|
|
31
|
+
<a href="https://pypi.python.org/pypi/hypergram">
|
|
32
|
+
<img src="https://img.shields.io/pypi/pyversions/hypergram.svg" alt="Python versions">
|
|
33
|
+
</a>
|
|
34
|
+
</p>
|
|
35
|
+
|
|
36
|
+
## hypergram
|
|
37
|
+
|
|
38
|
+
> Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
|
|
39
|
+
|
|
40
|
+
hypergram is an actively maintained hypergram fork for Python designed as a drop-in replacement for hypergram, hypergram provides support for the latest Telegram features including Gifts, Stories, Topics, Business Accounts, and more.
|
|
41
|
+
|
|
42
|
+
```python
|
|
43
|
+
from hypergram import Client, filters
|
|
44
|
+
|
|
45
|
+
app = Client("my_account")
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
@app.on_message(filters.private)
|
|
49
|
+
async def hello(client, message):
|
|
50
|
+
await message.reply("Hello from hypergram!")
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
app.run()
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
**hypergram** is a modern, elegant and asynchronous [MTProto API](https://docs.hypergram.icu/topics/mtproto-vs-botapi)
|
|
57
|
+
framework. It enables you to easily interact with the main Telegram API through a user account (custom client) or a bot
|
|
58
|
+
identity (bot API alternative) using Python.
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
### Key Features
|
|
62
|
+
|
|
63
|
+
- **Ready**: Install hypergram with pip and start building your applications right away.
|
|
64
|
+
- **Easy**: Makes the Telegram API simple and intuitive, while still allowing advanced usages.
|
|
65
|
+
- **Elegant**: Low-level details are abstracted and re-presented in a more convenient way.
|
|
66
|
+
- **Fast**: Boosted up by [TgCrypto](https://github.com/hypergram/tgcrypto), a high-performance cryptography library written in C.
|
|
67
|
+
- **Type-hinted**: Types and methods are all type-hinted, enabling excellent editor support.
|
|
68
|
+
- **Async**: Fully asynchronous (also usable synchronously if wanted, for convenience).
|
|
69
|
+
- **Powerful**: Full access to Telegram's API to execute any official client action and more.
|
|
70
|
+
|
|
71
|
+
### Installing
|
|
72
|
+
|
|
73
|
+
Stable version
|
|
74
|
+
|
|
75
|
+
``` bash
|
|
76
|
+
pip install hypergram
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Dev version
|
|
80
|
+
|
|
81
|
+
``` bash
|
|
82
|
+
pip install hypergram --force-reinstall
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Resources
|
|
86
|
+
|
|
87
|
+
- Check out the [docs](https://docs.hypergram.icu) to learn more about hypergram, get started right
|
|
88
|
+
away and discover more in-depth material for building your client applications.
|
|
89
|
+
- Join the [official channel](https://t.me/hypergram_news) and stay tuned for news, updates and announcements.
|
|
90
|
+
- Join the [official chat](https://t.me/hypergram_chat) to communicate with people.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# hypergram - Telegram MTProto API Client Library for Python
|
|
2
|
+
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
|
|
3
|
+
#
|
|
4
|
+
# This file is part of hypergram.
|
|
5
|
+
#
|
|
6
|
+
# hypergram is free software: you can redistribute it and/or modify
|
|
7
|
+
# it under the terms of the GNU Lesser General Public License as published
|
|
8
|
+
# by the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
# (at your option) any later version.
|
|
10
|
+
#
|
|
11
|
+
# hypergram is distributed in the hope that it will be useful,
|
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
# GNU Lesser General Public License for more details.
|
|
15
|
+
#
|
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
|
17
|
+
# along with hypergram. If not, see <http://www.gnu.org/licenses/>.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# hypergram - Telegram MTProto API Client Library for Python
|
|
2
|
+
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
|
|
3
|
+
#
|
|
4
|
+
# This file is part of hypergram.
|
|
5
|
+
#
|
|
6
|
+
# hypergram is free software: you can redistribute it and/or modify
|
|
7
|
+
# it under the terms of the GNU Lesser General Public License as published
|
|
8
|
+
# by the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
# (at your option) any later version.
|
|
10
|
+
#
|
|
11
|
+
# hypergram is distributed in the hope that it will be useful,
|
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
# GNU Lesser General Public License for more details.
|
|
15
|
+
#
|
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
|
17
|
+
# along with hypergram. If not, see <http://www.gnu.org/licenses/>.
|