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