hypergram 1.1.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.
Files changed (879) hide show
  1. hypergram-1.1.0/.gitignore +130 -0
  2. hypergram-1.1.0/COPYING +674 -0
  3. hypergram-1.1.0/COPYING.lesser +165 -0
  4. hypergram-1.1.0/MANIFEST.in +13 -0
  5. hypergram-1.1.0/Makefile +74 -0
  6. hypergram-1.1.0/NOTICE +17 -0
  7. hypergram-1.1.0/PKG-INFO +164 -0
  8. hypergram-1.1.0/README.md +101 -0
  9. hypergram-1.1.0/compiler/__init__.py +17 -0
  10. hypergram-1.1.0/compiler/api/__init__.py +17 -0
  11. hypergram-1.1.0/compiler/api/compiler.py +696 -0
  12. hypergram-1.1.0/compiler/api/source/auth_key.tl +40 -0
  13. hypergram-1.1.0/compiler/api/source/main_api.tl +2988 -0
  14. hypergram-1.1.0/compiler/api/source/sys_msgs.tl +76 -0
  15. hypergram-1.1.0/compiler/api/template/combinator.txt +37 -0
  16. hypergram-1.1.0/compiler/api/template/type.txt +26 -0
  17. hypergram-1.1.0/compiler/errors/__init__.py +17 -0
  18. hypergram-1.1.0/compiler/errors/compiler.py +142 -0
  19. hypergram-1.1.0/compiler/errors/sort.py +35 -0
  20. hypergram-1.1.0/compiler/errors/source/303_SEE_OTHER.tsv +6 -0
  21. hypergram-1.1.0/compiler/errors/source/400_BAD_REQUEST.tsv +707 -0
  22. hypergram-1.1.0/compiler/errors/source/401_UNAUTHORIZED.tsv +10 -0
  23. hypergram-1.1.0/compiler/errors/source/403_FORBIDDEN.tsv +64 -0
  24. hypergram-1.1.0/compiler/errors/source/406_NOT_ACCEPTABLE.tsv +40 -0
  25. hypergram-1.1.0/compiler/errors/source/420_FLOOD.tsv +11 -0
  26. hypergram-1.1.0/compiler/errors/source/500_INTERNAL_SERVER_ERROR.tsv +57 -0
  27. hypergram-1.1.0/compiler/errors/source/503_SERVICE_UNAVAILABLE.tsv +4 -0
  28. hypergram-1.1.0/compiler/errors/template/class.txt +13 -0
  29. hypergram-1.1.0/compiler/errors/template/sub_class.txt +7 -0
  30. hypergram-1.1.0/hatch_build.py +35 -0
  31. hypergram-1.1.0/hypergram/__init__.py +38 -0
  32. hypergram-1.1.0/hypergram/client.py +1553 -0
  33. hypergram-1.1.0/hypergram/connection/__init__.py +19 -0
  34. hypergram-1.1.0/hypergram/connection/connection.py +92 -0
  35. hypergram-1.1.0/hypergram/connection/transport/__init__.py +19 -0
  36. hypergram-1.1.0/hypergram/connection/transport/tcp/__init__.py +24 -0
  37. hypergram-1.1.0/hypergram/connection/transport/tcp/tcp.py +248 -0
  38. hypergram-1.1.0/hypergram/connection/transport/tcp/tcp_abridged.py +66 -0
  39. hypergram-1.1.0/hypergram/connection/transport/tcp/tcp_abridged_o.py +106 -0
  40. hypergram-1.1.0/hypergram/connection/transport/tcp/tcp_full.py +73 -0
  41. hypergram-1.1.0/hypergram/connection/transport/tcp/tcp_intermediate.py +54 -0
  42. hypergram-1.1.0/hypergram/connection/transport/tcp/tcp_intermediate_o.py +88 -0
  43. hypergram-1.1.0/hypergram/crypto/__init__.py +17 -0
  44. hypergram-1.1.0/hypergram/crypto/aes.py +130 -0
  45. hypergram-1.1.0/hypergram/crypto/mtproto.py +100 -0
  46. hypergram-1.1.0/hypergram/crypto/prime.py +82 -0
  47. hypergram-1.1.0/hypergram/crypto/rsa.py +259 -0
  48. hypergram-1.1.0/hypergram/dispatcher.py +514 -0
  49. hypergram-1.1.0/hypergram/enums/__init__.py +105 -0
  50. hypergram-1.1.0/hypergram/enums/auto_name.py +27 -0
  51. hypergram-1.1.0/hypergram/enums/block_list.py +31 -0
  52. hypergram-1.1.0/hypergram/enums/business_schedule.py +34 -0
  53. hypergram-1.1.0/hypergram/enums/button_style.py +37 -0
  54. hypergram-1.1.0/hypergram/enums/chat_action.py +72 -0
  55. hypergram-1.1.0/hypergram/enums/chat_event_action.py +140 -0
  56. hypergram-1.1.0/hypergram/enums/chat_join_type.py +34 -0
  57. hypergram-1.1.0/hypergram/enums/chat_member_status.py +43 -0
  58. hypergram-1.1.0/hypergram/enums/chat_members_filter.py +42 -0
  59. hypergram-1.1.0/hypergram/enums/chat_type.py +46 -0
  60. hypergram-1.1.0/hypergram/enums/client_platform.py +49 -0
  61. hypergram-1.1.0/hypergram/enums/folder_color.py +47 -0
  62. hypergram-1.1.0/hypergram/enums/gift_attribute_type.py +36 -0
  63. hypergram-1.1.0/hypergram/enums/gift_for_resale_order.py +34 -0
  64. hypergram-1.1.0/hypergram/enums/gift_purchase_offer_state.py +34 -0
  65. hypergram-1.1.0/hypergram/enums/gift_type.py +31 -0
  66. hypergram-1.1.0/hypergram/enums/mask_point_type.py +35 -0
  67. hypergram-1.1.0/hypergram/enums/media_area_type.py +46 -0
  68. hypergram-1.1.0/hypergram/enums/message_entity_type.py +87 -0
  69. hypergram-1.1.0/hypergram/enums/message_media_type.py +94 -0
  70. hypergram-1.1.0/hypergram/enums/message_origin_type.py +40 -0
  71. hypergram-1.1.0/hypergram/enums/message_service_type.py +235 -0
  72. hypergram-1.1.0/hypergram/enums/messages_filter.py +78 -0
  73. hypergram-1.1.0/hypergram/enums/next_code_type.py +39 -0
  74. hypergram-1.1.0/hypergram/enums/paid_reaction_privacy.py +35 -0
  75. hypergram-1.1.0/hypergram/enums/parse_mode.py +37 -0
  76. hypergram-1.1.0/hypergram/enums/payment_form_type.py +34 -0
  77. hypergram-1.1.0/hypergram/enums/phone_call_discard_reason.py +40 -0
  78. hypergram-1.1.0/hypergram/enums/phone_number_code_type.py +34 -0
  79. hypergram-1.1.0/hypergram/enums/poll_type.py +31 -0
  80. hypergram-1.1.0/hypergram/enums/privacy_key.py +66 -0
  81. hypergram-1.1.0/hypergram/enums/privacy_rule_type.py +61 -0
  82. hypergram-1.1.0/hypergram/enums/profile_color.py +71 -0
  83. hypergram-1.1.0/hypergram/enums/profile_tab.py +48 -0
  84. hypergram-1.1.0/hypergram/enums/reply_color.py +94 -0
  85. hypergram-1.1.0/hypergram/enums/sent_code_type.py +57 -0
  86. hypergram-1.1.0/hypergram/enums/sticker_type.py +34 -0
  87. hypergram-1.1.0/hypergram/enums/stories_privacy_rules.py +36 -0
  88. hypergram-1.1.0/hypergram/enums/suggested_post_refund_reason.py +31 -0
  89. hypergram-1.1.0/hypergram/enums/suggested_post_state.py +34 -0
  90. hypergram-1.1.0/hypergram/enums/top_chat_category.py +54 -0
  91. hypergram-1.1.0/hypergram/enums/upgraded_gift_origin.py +46 -0
  92. hypergram-1.1.0/hypergram/enums/user_status.py +43 -0
  93. hypergram-1.1.0/hypergram/errors/__init__.py +65 -0
  94. hypergram-1.1.0/hypergram/errors/rpc_error.py +103 -0
  95. hypergram-1.1.0/hypergram/file_id.py +481 -0
  96. hypergram-1.1.0/hypergram/filters.py +1195 -0
  97. hypergram-1.1.0/hypergram/handlers/__init__.py +48 -0
  98. hypergram-1.1.0/hypergram/handlers/business_connection_handler.py +56 -0
  99. hypergram-1.1.0/hypergram/handlers/business_message_handler.py +56 -0
  100. hypergram-1.1.0/hypergram/handlers/callback_query_handler.py +55 -0
  101. hypergram-1.1.0/hypergram/handlers/chat_boost_handler.py +55 -0
  102. hypergram-1.1.0/hypergram/handlers/chat_join_request_handler.py +55 -0
  103. hypergram-1.1.0/hypergram/handlers/chat_member_updated_handler.py +55 -0
  104. hypergram-1.1.0/hypergram/handlers/chosen_inline_result_handler.py +58 -0
  105. hypergram-1.1.0/hypergram/handlers/connect_handler.py +50 -0
  106. hypergram-1.1.0/hypergram/handlers/deleted_business_messages_handler.py +69 -0
  107. hypergram-1.1.0/hypergram/handlers/deleted_messages_handler.py +68 -0
  108. hypergram-1.1.0/hypergram/handlers/disconnect_handler.py +50 -0
  109. hypergram-1.1.0/hypergram/handlers/edited_business_message_handler.py +56 -0
  110. hypergram-1.1.0/hypergram/handlers/edited_message_handler.py +55 -0
  111. hypergram-1.1.0/hypergram/handlers/error_handler.py +98 -0
  112. hypergram-1.1.0/hypergram/handlers/guest_message_handler.py +55 -0
  113. hypergram-1.1.0/hypergram/handlers/handler.py +41 -0
  114. hypergram-1.1.0/hypergram/handlers/inline_query_handler.py +55 -0
  115. hypergram-1.1.0/hypergram/handlers/managed_bot_updated_handler.py +53 -0
  116. hypergram-1.1.0/hypergram/handlers/message_handler.py +55 -0
  117. hypergram-1.1.0/hypergram/handlers/message_reaction_count_handler.py +59 -0
  118. hypergram-1.1.0/hypergram/handlers/message_reaction_handler.py +59 -0
  119. hypergram-1.1.0/hypergram/handlers/poll_handler.py +54 -0
  120. hypergram-1.1.0/hypergram/handlers/pre_checkout_query_handler.py +55 -0
  121. hypergram-1.1.0/hypergram/handlers/purchased_paid_media_handler.py +57 -0
  122. hypergram-1.1.0/hypergram/handlers/raw_update_handler.py +87 -0
  123. hypergram-1.1.0/hypergram/handlers/shipping_query_handler.py +56 -0
  124. hypergram-1.1.0/hypergram/handlers/start_handler.py +46 -0
  125. hypergram-1.1.0/hypergram/handlers/stop_handler.py +47 -0
  126. hypergram-1.1.0/hypergram/handlers/story_handler.py +53 -0
  127. hypergram-1.1.0/hypergram/handlers/user_status_handler.py +51 -0
  128. hypergram-1.1.0/hypergram/methods/__init__.py +59 -0
  129. hypergram-1.1.0/hypergram/methods/account/__init__.py +42 -0
  130. hypergram-1.1.0/hypergram/methods/account/add_profile_audio.py +151 -0
  131. hypergram-1.1.0/hypergram/methods/account/get_account_ttl.py +44 -0
  132. hypergram-1.1.0/hypergram/methods/account/get_global_privacy_settings.py +39 -0
  133. hypergram-1.1.0/hypergram/methods/account/get_privacy.py +55 -0
  134. hypergram-1.1.0/hypergram/methods/account/remove_profile_audio.py +50 -0
  135. hypergram-1.1.0/hypergram/methods/account/set_account_ttl.py +55 -0
  136. hypergram-1.1.0/hypergram/methods/account/set_global_privacy_settings.py +124 -0
  137. hypergram-1.1.0/hypergram/methods/account/set_inactive_session_ttl.py +51 -0
  138. hypergram-1.1.0/hypergram/methods/account/set_privacy.py +76 -0
  139. hypergram-1.1.0/hypergram/methods/account/set_profile_audio_position.py +63 -0
  140. hypergram-1.1.0/hypergram/methods/advanced/__init__.py +31 -0
  141. hypergram-1.1.0/hypergram/methods/advanced/invoke.py +118 -0
  142. hypergram-1.1.0/hypergram/methods/advanced/recover_gaps.py +184 -0
  143. hypergram-1.1.0/hypergram/methods/advanced/resolve_peer.py +153 -0
  144. hypergram-1.1.0/hypergram/methods/advanced/save_file.py +225 -0
  145. hypergram-1.1.0/hypergram/methods/auth/__init__.py +61 -0
  146. hypergram-1.1.0/hypergram/methods/auth/accept_terms_of_service.py +44 -0
  147. hypergram-1.1.0/hypergram/methods/auth/change_phone_number.py +59 -0
  148. hypergram-1.1.0/hypergram/methods/auth/check_password.py +60 -0
  149. hypergram-1.1.0/hypergram/methods/auth/connect.py +56 -0
  150. hypergram-1.1.0/hypergram/methods/auth/disconnect.py +41 -0
  151. hypergram-1.1.0/hypergram/methods/auth/get_active_sessions.py +39 -0
  152. hypergram-1.1.0/hypergram/methods/auth/get_password_hint.py +38 -0
  153. hypergram-1.1.0/hypergram/methods/auth/initialize.py +50 -0
  154. hypergram-1.1.0/hypergram/methods/auth/log_out.py +51 -0
  155. hypergram-1.1.0/hypergram/methods/auth/recover_password.py +57 -0
  156. hypergram-1.1.0/hypergram/methods/auth/resend_phone_number_code.py +63 -0
  157. hypergram-1.1.0/hypergram/methods/auth/reset_session.py +44 -0
  158. hypergram-1.1.0/hypergram/methods/auth/reset_sessions.py +39 -0
  159. hypergram-1.1.0/hypergram/methods/auth/send_phone_number_code.py +187 -0
  160. hypergram-1.1.0/hypergram/methods/auth/send_recovery_code.py +43 -0
  161. hypergram-1.1.0/hypergram/methods/auth/sign_in.py +81 -0
  162. hypergram-1.1.0/hypergram/methods/auth/sign_in_bot.py +78 -0
  163. hypergram-1.1.0/hypergram/methods/auth/sign_up.py +73 -0
  164. hypergram-1.1.0/hypergram/methods/auth/terminate.py +67 -0
  165. hypergram-1.1.0/hypergram/methods/bots/__init__.py +95 -0
  166. hypergram-1.1.0/hypergram/methods/bots/answer_callback_query.py +81 -0
  167. hypergram-1.1.0/hypergram/methods/bots/answer_guest_query.py +61 -0
  168. hypergram-1.1.0/hypergram/methods/bots/answer_inline_query.py +112 -0
  169. hypergram-1.1.0/hypergram/methods/bots/answer_pre_checkout_query.py +66 -0
  170. hypergram-1.1.0/hypergram/methods/bots/answer_shipping_query.py +81 -0
  171. hypergram-1.1.0/hypergram/methods/bots/answer_web_app_query.py +53 -0
  172. hypergram-1.1.0/hypergram/methods/bots/check_bot_username.py +39 -0
  173. hypergram-1.1.0/hypergram/methods/bots/create_bot.py +64 -0
  174. hypergram-1.1.0/hypergram/methods/bots/create_invoice_link.py +175 -0
  175. hypergram-1.1.0/hypergram/methods/bots/delete_bot_commands.py +62 -0
  176. hypergram-1.1.0/hypergram/methods/bots/edit_user_star_subscription.py +56 -0
  177. hypergram-1.1.0/hypergram/methods/bots/get_bot_commands.py +67 -0
  178. hypergram-1.1.0/hypergram/methods/bots/get_bot_default_privileges.py +59 -0
  179. hypergram-1.1.0/hypergram/methods/bots/get_bot_info_description.py +63 -0
  180. hypergram-1.1.0/hypergram/methods/bots/get_bot_info_short_description.py +63 -0
  181. hypergram-1.1.0/hypergram/methods/bots/get_bot_name.py +62 -0
  182. hypergram-1.1.0/hypergram/methods/bots/get_chat_menu_button.py +66 -0
  183. hypergram-1.1.0/hypergram/methods/bots/get_game_high_scores.py +72 -0
  184. hypergram-1.1.0/hypergram/methods/bots/get_inline_bot_results.py +92 -0
  185. hypergram-1.1.0/hypergram/methods/bots/get_managed_bot_access_settings.py +47 -0
  186. hypergram-1.1.0/hypergram/methods/bots/get_managed_bot_token.py +48 -0
  187. hypergram-1.1.0/hypergram/methods/bots/get_owned_bots.py +44 -0
  188. hypergram-1.1.0/hypergram/methods/bots/refund_star_payment.py +54 -0
  189. hypergram-1.1.0/hypergram/methods/bots/replace_managed_bot_token.py +48 -0
  190. hypergram-1.1.0/hypergram/methods/bots/request_callback_answer.py +91 -0
  191. hypergram-1.1.0/hypergram/methods/bots/send_game.py +139 -0
  192. hypergram-1.1.0/hypergram/methods/bots/send_inline_bot_result.py +171 -0
  193. hypergram-1.1.0/hypergram/methods/bots/send_invoice.py +268 -0
  194. hypergram-1.1.0/hypergram/methods/bots/set_bot_commands.py +73 -0
  195. hypergram-1.1.0/hypergram/methods/bots/set_bot_default_privileges.py +81 -0
  196. hypergram-1.1.0/hypergram/methods/bots/set_bot_info_description.py +66 -0
  197. hypergram-1.1.0/hypergram/methods/bots/set_bot_info_short_description.py +66 -0
  198. hypergram-1.1.0/hypergram/methods/bots/set_bot_name.py +66 -0
  199. hypergram-1.1.0/hypergram/methods/bots/set_chat_menu_button.py +56 -0
  200. hypergram-1.1.0/hypergram/methods/bots/set_game_score.py +100 -0
  201. hypergram-1.1.0/hypergram/methods/bots/set_managed_bot_access_settings.py +60 -0
  202. hypergram-1.1.0/hypergram/methods/business/__init__.py +33 -0
  203. hypergram-1.1.0/hypergram/methods/business/delete_business_messages.py +70 -0
  204. hypergram-1.1.0/hypergram/methods/business/get_business_account_gifts.py +151 -0
  205. hypergram-1.1.0/hypergram/methods/business/get_business_account_star_balance.py +60 -0
  206. hypergram-1.1.0/hypergram/methods/business/get_business_connection.py +53 -0
  207. hypergram-1.1.0/hypergram/methods/business/transfer_business_account_stars.py +72 -0
  208. hypergram-1.1.0/hypergram/methods/chats/__init__.py +181 -0
  209. hypergram-1.1.0/hypergram/methods/chats/add_chat_members.py +97 -0
  210. hypergram-1.1.0/hypergram/methods/chats/archive_chats.py +71 -0
  211. hypergram-1.1.0/hypergram/methods/chats/ban_chat_member.py +124 -0
  212. hypergram-1.1.0/hypergram/methods/chats/close_forum_topic.py +58 -0
  213. hypergram-1.1.0/hypergram/methods/chats/create_channel.py +56 -0
  214. hypergram-1.1.0/hypergram/methods/chats/create_folder.py +179 -0
  215. hypergram-1.1.0/hypergram/methods/chats/create_folder_invite_link.py +67 -0
  216. hypergram-1.1.0/hypergram/methods/chats/create_forum_topic.py +68 -0
  217. hypergram-1.1.0/hypergram/methods/chats/create_group.py +67 -0
  218. hypergram-1.1.0/hypergram/methods/chats/create_supergroup.py +78 -0
  219. hypergram-1.1.0/hypergram/methods/chats/delete_all_message_reactions.py +74 -0
  220. hypergram-1.1.0/hypergram/methods/chats/delete_channel.py +52 -0
  221. hypergram-1.1.0/hypergram/methods/chats/delete_chat_photo.py +70 -0
  222. hypergram-1.1.0/hypergram/methods/chats/delete_folder.py +51 -0
  223. hypergram-1.1.0/hypergram/methods/chats/delete_folder_invite_link.py +70 -0
  224. hypergram-1.1.0/hypergram/methods/chats/delete_forum_topic.py +57 -0
  225. hypergram-1.1.0/hypergram/methods/chats/delete_message_reaction.py +81 -0
  226. hypergram-1.1.0/hypergram/methods/chats/delete_supergroup.py +52 -0
  227. hypergram-1.1.0/hypergram/methods/chats/delete_user_history.py +55 -0
  228. hypergram-1.1.0/hypergram/methods/chats/edit_folder.py +186 -0
  229. hypergram-1.1.0/hypergram/methods/chats/edit_folder_invite_link.py +85 -0
  230. hypergram-1.1.0/hypergram/methods/chats/edit_forum_topic.py +77 -0
  231. hypergram-1.1.0/hypergram/methods/chats/get_chat.py +105 -0
  232. hypergram-1.1.0/hypergram/methods/chats/get_chat_event_log.py +109 -0
  233. hypergram-1.1.0/hypergram/methods/chats/get_chat_member.py +92 -0
  234. hypergram-1.1.0/hypergram/methods/chats/get_chat_members.py +158 -0
  235. hypergram-1.1.0/hypergram/methods/chats/get_chat_members_count.py +69 -0
  236. hypergram-1.1.0/hypergram/methods/chats/get_chat_online_count.py +51 -0
  237. hypergram-1.1.0/hypergram/methods/chats/get_chat_settings.py +61 -0
  238. hypergram-1.1.0/hypergram/methods/chats/get_chats_for_folder_invite_link.py +78 -0
  239. hypergram-1.1.0/hypergram/methods/chats/get_dialogs.py +133 -0
  240. hypergram-1.1.0/hypergram/methods/chats/get_dialogs_count.py +76 -0
  241. hypergram-1.1.0/hypergram/methods/chats/get_direct_messages_topics.py +109 -0
  242. hypergram-1.1.0/hypergram/methods/chats/get_direct_messages_topics_by_id.py +77 -0
  243. hypergram-1.1.0/hypergram/methods/chats/get_folder_invite_links.py +52 -0
  244. hypergram-1.1.0/hypergram/methods/chats/get_folders.py +76 -0
  245. hypergram-1.1.0/hypergram/methods/chats/get_forum_topics.py +103 -0
  246. hypergram-1.1.0/hypergram/methods/chats/get_forum_topics_by_id.py +80 -0
  247. hypergram-1.1.0/hypergram/methods/chats/get_personal_channels.py +48 -0
  248. hypergram-1.1.0/hypergram/methods/chats/get_send_as_chats.py +69 -0
  249. hypergram-1.1.0/hypergram/methods/chats/get_similar_channels.py +59 -0
  250. hypergram-1.1.0/hypergram/methods/chats/get_suitable_discussion_chats.py +47 -0
  251. hypergram-1.1.0/hypergram/methods/chats/get_top_chats.py +104 -0
  252. hypergram-1.1.0/hypergram/methods/chats/join_chat.py +74 -0
  253. hypergram-1.1.0/hypergram/methods/chats/join_folder.py +79 -0
  254. hypergram-1.1.0/hypergram/methods/chats/leave_chat.py +77 -0
  255. hypergram-1.1.0/hypergram/methods/chats/leave_folder.py +83 -0
  256. hypergram-1.1.0/hypergram/methods/chats/mark_chat_unread.py +47 -0
  257. hypergram-1.1.0/hypergram/methods/chats/pin_chat_message.py +77 -0
  258. hypergram-1.1.0/hypergram/methods/chats/pin_forum_topic.py +57 -0
  259. hypergram-1.1.0/hypergram/methods/chats/process_chat_has_protected_content_disable_request.py +57 -0
  260. hypergram-1.1.0/hypergram/methods/chats/promote_chat_member.py +106 -0
  261. hypergram-1.1.0/hypergram/methods/chats/reorder_folders.py +61 -0
  262. hypergram-1.1.0/hypergram/methods/chats/restrict_chat_member.py +85 -0
  263. hypergram-1.1.0/hypergram/methods/chats/set_administrator_title.py +85 -0
  264. hypergram-1.1.0/hypergram/methods/chats/set_chat_description.py +66 -0
  265. hypergram-1.1.0/hypergram/methods/chats/set_chat_direct_messages_group.py +67 -0
  266. hypergram-1.1.0/hypergram/methods/chats/set_chat_discussion_group.py +91 -0
  267. hypergram-1.1.0/hypergram/methods/chats/set_chat_member_tag.py +68 -0
  268. hypergram-1.1.0/hypergram/methods/chats/set_chat_permissions.py +76 -0
  269. hypergram-1.1.0/hypergram/methods/chats/set_chat_photo.py +124 -0
  270. hypergram-1.1.0/hypergram/methods/chats/set_chat_protected_content.py +51 -0
  271. hypergram-1.1.0/hypergram/methods/chats/set_chat_title.py +69 -0
  272. hypergram-1.1.0/hypergram/methods/chats/set_chat_ttl.py +67 -0
  273. hypergram-1.1.0/hypergram/methods/chats/set_chat_username.py +68 -0
  274. hypergram-1.1.0/hypergram/methods/chats/set_main_profile_tab.py +71 -0
  275. hypergram-1.1.0/hypergram/methods/chats/set_send_as_chat.py +57 -0
  276. hypergram-1.1.0/hypergram/methods/chats/set_slow_mode.py +63 -0
  277. hypergram-1.1.0/hypergram/methods/chats/set_upgraded_gift_colors.py +47 -0
  278. hypergram-1.1.0/hypergram/methods/chats/toggle_folder_tags.py +51 -0
  279. hypergram-1.1.0/hypergram/methods/chats/toggle_forum_topics.py +72 -0
  280. hypergram-1.1.0/hypergram/methods/chats/toggle_join_to_send.py +65 -0
  281. hypergram-1.1.0/hypergram/methods/chats/transfer_chat_ownership.py +84 -0
  282. hypergram-1.1.0/hypergram/methods/chats/unarchive_chats.py +71 -0
  283. hypergram-1.1.0/hypergram/methods/chats/unban_chat_member.py +64 -0
  284. hypergram-1.1.0/hypergram/methods/chats/unpin_all_chat_messages.py +55 -0
  285. hypergram-1.1.0/hypergram/methods/chats/unpin_chat_message.py +61 -0
  286. hypergram-1.1.0/hypergram/methods/chats/unpin_forum_topic.py +58 -0
  287. hypergram-1.1.0/hypergram/methods/chats/update_chat_notifications.py +92 -0
  288. hypergram-1.1.0/hypergram/methods/chats/update_color.py +78 -0
  289. hypergram-1.1.0/hypergram/methods/contacts/__init__.py +39 -0
  290. hypergram-1.1.0/hypergram/methods/contacts/add_contact.py +85 -0
  291. hypergram-1.1.0/hypergram/methods/contacts/delete_contacts.py +66 -0
  292. hypergram-1.1.0/hypergram/methods/contacts/get_blocked_message_senders.py +85 -0
  293. hypergram-1.1.0/hypergram/methods/contacts/get_contacts.py +47 -0
  294. hypergram-1.1.0/hypergram/methods/contacts/get_contacts_count.py +41 -0
  295. hypergram-1.1.0/hypergram/methods/contacts/import_contacts.py +58 -0
  296. hypergram-1.1.0/hypergram/methods/contacts/search_contacts.py +59 -0
  297. hypergram-1.1.0/hypergram/methods/contacts/set_contact_note.py +62 -0
  298. hypergram-1.1.0/hypergram/methods/decorators/__init__.py +81 -0
  299. hypergram-1.1.0/hypergram/methods/decorators/on_business_connection.py +63 -0
  300. hypergram-1.1.0/hypergram/methods/decorators/on_business_message.py +63 -0
  301. hypergram-1.1.0/hypergram/methods/decorators/on_callback_query.py +63 -0
  302. hypergram-1.1.0/hypergram/methods/decorators/on_chat_boost.py +64 -0
  303. hypergram-1.1.0/hypergram/methods/decorators/on_chat_join_request.py +62 -0
  304. hypergram-1.1.0/hypergram/methods/decorators/on_chat_member_updated.py +62 -0
  305. hypergram-1.1.0/hypergram/methods/decorators/on_chosen_inline_result.py +63 -0
  306. hypergram-1.1.0/hypergram/methods/decorators/on_connect.py +45 -0
  307. hypergram-1.1.0/hypergram/methods/decorators/on_deleted_business_messages.py +63 -0
  308. hypergram-1.1.0/hypergram/methods/decorators/on_deleted_messages.py +63 -0
  309. hypergram-1.1.0/hypergram/methods/decorators/on_disconnect.py +45 -0
  310. hypergram-1.1.0/hypergram/methods/decorators/on_edited_business_message.py +63 -0
  311. hypergram-1.1.0/hypergram/methods/decorators/on_edited_message.py +63 -0
  312. hypergram-1.1.0/hypergram/methods/decorators/on_error.py +65 -0
  313. hypergram-1.1.0/hypergram/methods/decorators/on_guest_message.py +63 -0
  314. hypergram-1.1.0/hypergram/methods/decorators/on_inline_query.py +63 -0
  315. hypergram-1.1.0/hypergram/methods/decorators/on_managed_bot.py +63 -0
  316. hypergram-1.1.0/hypergram/methods/decorators/on_message.py +63 -0
  317. hypergram-1.1.0/hypergram/methods/decorators/on_message_reaction.py +62 -0
  318. hypergram-1.1.0/hypergram/methods/decorators/on_message_reaction_count.py +62 -0
  319. hypergram-1.1.0/hypergram/methods/decorators/on_poll.py +63 -0
  320. hypergram-1.1.0/hypergram/methods/decorators/on_pre_checkout_query.py +63 -0
  321. hypergram-1.1.0/hypergram/methods/decorators/on_purchased_paid_media.py +62 -0
  322. hypergram-1.1.0/hypergram/methods/decorators/on_raw_update.py +63 -0
  323. hypergram-1.1.0/hypergram/methods/decorators/on_shipping_query.py +64 -0
  324. hypergram-1.1.0/hypergram/methods/decorators/on_start.py +45 -0
  325. hypergram-1.1.0/hypergram/methods/decorators/on_stop.py +45 -0
  326. hypergram-1.1.0/hypergram/methods/decorators/on_story.py +63 -0
  327. hypergram-1.1.0/hypergram/methods/decorators/on_user_status.py +61 -0
  328. hypergram-1.1.0/hypergram/methods/folders/__init__.py +25 -0
  329. hypergram-1.1.0/hypergram/methods/folders/check_chat_folder_invite_link.py +55 -0
  330. hypergram-1.1.0/hypergram/methods/invite_links/__init__.py +58 -0
  331. hypergram-1.1.0/hypergram/methods/invite_links/approve_all_chat_join_requests.py +55 -0
  332. hypergram-1.1.0/hypergram/methods/invite_links/approve_chat_join_request.py +57 -0
  333. hypergram-1.1.0/hypergram/methods/invite_links/create_chat_invite_link.py +87 -0
  334. hypergram-1.1.0/hypergram/methods/invite_links/decline_all_chat_join_requests.py +55 -0
  335. hypergram-1.1.0/hypergram/methods/invite_links/decline_chat_join_request.py +57 -0
  336. hypergram-1.1.0/hypergram/methods/invite_links/delete_chat_admin_invite_links.py +54 -0
  337. hypergram-1.1.0/hypergram/methods/invite_links/delete_chat_invite_link.py +52 -0
  338. hypergram-1.1.0/hypergram/methods/invite_links/edit_chat_invite_link.py +92 -0
  339. hypergram-1.1.0/hypergram/methods/invite_links/export_chat_invite_link.py +66 -0
  340. hypergram-1.1.0/hypergram/methods/invite_links/get_chat_admin_invite_links.py +100 -0
  341. hypergram-1.1.0/hypergram/methods/invite_links/get_chat_admin_invite_links_count.py +62 -0
  342. hypergram-1.1.0/hypergram/methods/invite_links/get_chat_admins_with_invite_links.py +56 -0
  343. hypergram-1.1.0/hypergram/methods/invite_links/get_chat_invite_link.py +54 -0
  344. hypergram-1.1.0/hypergram/methods/invite_links/get_chat_invite_link_joiners.py +87 -0
  345. hypergram-1.1.0/hypergram/methods/invite_links/get_chat_invite_link_joiners_count.py +56 -0
  346. hypergram-1.1.0/hypergram/methods/invite_links/get_chat_join_requests.py +88 -0
  347. hypergram-1.1.0/hypergram/methods/invite_links/revoke_chat_invite_link.py +68 -0
  348. hypergram-1.1.0/hypergram/methods/messages/__init__.py +195 -0
  349. hypergram-1.1.0/hypergram/methods/messages/add_checklist_tasks.py +73 -0
  350. hypergram-1.1.0/hypergram/methods/messages/add_poll_option.py +76 -0
  351. hypergram-1.1.0/hypergram/methods/messages/add_to_gifs.py +60 -0
  352. hypergram-1.1.0/hypergram/methods/messages/approve_suggested_post.py +66 -0
  353. hypergram-1.1.0/hypergram/methods/messages/compose_text_with_ai.py +80 -0
  354. hypergram-1.1.0/hypergram/methods/messages/copy_media_group.py +238 -0
  355. hypergram-1.1.0/hypergram/methods/messages/copy_message.py +168 -0
  356. hypergram-1.1.0/hypergram/methods/messages/decline_suggested_post.py +62 -0
  357. hypergram-1.1.0/hypergram/methods/messages/delete_chat_history.py +101 -0
  358. hypergram-1.1.0/hypergram/methods/messages/delete_direct_messages_chat_topic_history.py +74 -0
  359. hypergram-1.1.0/hypergram/methods/messages/delete_messages.py +110 -0
  360. hypergram-1.1.0/hypergram/methods/messages/delete_poll_option.py +69 -0
  361. hypergram-1.1.0/hypergram/methods/messages/download_media.py +371 -0
  362. hypergram-1.1.0/hypergram/methods/messages/edit_inline_caption.py +65 -0
  363. hypergram-1.1.0/hypergram/methods/messages/edit_inline_media.py +244 -0
  364. hypergram-1.1.0/hypergram/methods/messages/edit_inline_reply_markup.py +68 -0
  365. hypergram-1.1.0/hypergram/methods/messages/edit_inline_text.py +101 -0
  366. hypergram-1.1.0/hypergram/methods/messages/edit_message_caption.py +98 -0
  367. hypergram-1.1.0/hypergram/methods/messages/edit_message_checklist.py +106 -0
  368. hypergram-1.1.0/hypergram/methods/messages/edit_message_media.py +137 -0
  369. hypergram-1.1.0/hypergram/methods/messages/edit_message_reply_markup.py +84 -0
  370. hypergram-1.1.0/hypergram/methods/messages/edit_message_text.py +148 -0
  371. hypergram-1.1.0/hypergram/methods/messages/fix_text_with_ai.py +57 -0
  372. hypergram-1.1.0/hypergram/methods/messages/forward_media_group.py +124 -0
  373. hypergram-1.1.0/hypergram/methods/messages/forward_messages.py +142 -0
  374. hypergram-1.1.0/hypergram/methods/messages/get_available_effects.py +59 -0
  375. hypergram-1.1.0/hypergram/methods/messages/get_chat_history.py +175 -0
  376. hypergram-1.1.0/hypergram/methods/messages/get_chat_history_count.py +83 -0
  377. hypergram-1.1.0/hypergram/methods/messages/get_custom_emoji_stickers.py +54 -0
  378. hypergram-1.1.0/hypergram/methods/messages/get_direct_messages_chat_topic_history.py +151 -0
  379. hypergram-1.1.0/hypergram/methods/messages/get_discussion_message.py +65 -0
  380. hypergram-1.1.0/hypergram/methods/messages/get_discussion_replies.py +86 -0
  381. hypergram-1.1.0/hypergram/methods/messages/get_discussion_replies_count.py +62 -0
  382. hypergram-1.1.0/hypergram/methods/messages/get_main_web_app.py +71 -0
  383. hypergram-1.1.0/hypergram/methods/messages/get_media_group.py +72 -0
  384. hypergram-1.1.0/hypergram/methods/messages/get_messages.py +236 -0
  385. hypergram-1.1.0/hypergram/methods/messages/get_scheduled_messages.py +61 -0
  386. hypergram-1.1.0/hypergram/methods/messages/get_stickers.py +66 -0
  387. hypergram-1.1.0/hypergram/methods/messages/get_user_personal_chat_messages.py +92 -0
  388. hypergram-1.1.0/hypergram/methods/messages/get_web_app_link_url.py +83 -0
  389. hypergram-1.1.0/hypergram/methods/messages/get_web_app_url.py +70 -0
  390. hypergram-1.1.0/hypergram/methods/messages/mark_checklist_tasks_as_done.py +74 -0
  391. hypergram-1.1.0/hypergram/methods/messages/open_web_app.py +92 -0
  392. hypergram-1.1.0/hypergram/methods/messages/read_chat_history.py +73 -0
  393. hypergram-1.1.0/hypergram/methods/messages/read_mentions.py +64 -0
  394. hypergram-1.1.0/hypergram/methods/messages/read_reactions.py +64 -0
  395. hypergram-1.1.0/hypergram/methods/messages/retract_vote.py +64 -0
  396. hypergram-1.1.0/hypergram/methods/messages/search_global.py +132 -0
  397. hypergram-1.1.0/hypergram/methods/messages/search_global_count.py +79 -0
  398. hypergram-1.1.0/hypergram/methods/messages/search_messages.py +190 -0
  399. hypergram-1.1.0/hypergram/methods/messages/search_messages_count.py +98 -0
  400. hypergram-1.1.0/hypergram/methods/messages/search_posts.py +96 -0
  401. hypergram-1.1.0/hypergram/methods/messages/search_posts_count.py +54 -0
  402. hypergram-1.1.0/hypergram/methods/messages/send_animation.py +379 -0
  403. hypergram-1.1.0/hypergram/methods/messages/send_audio.py +347 -0
  404. hypergram-1.1.0/hypergram/methods/messages/send_cached_media.py +226 -0
  405. hypergram-1.1.0/hypergram/methods/messages/send_chat_action.py +85 -0
  406. hypergram-1.1.0/hypergram/methods/messages/send_checklist.py +153 -0
  407. hypergram-1.1.0/hypergram/methods/messages/send_contact.py +216 -0
  408. hypergram-1.1.0/hypergram/methods/messages/send_dice.py +217 -0
  409. hypergram-1.1.0/hypergram/methods/messages/send_document.py +319 -0
  410. hypergram-1.1.0/hypergram/methods/messages/send_live_photo.py +244 -0
  411. hypergram-1.1.0/hypergram/methods/messages/send_location.py +242 -0
  412. hypergram-1.1.0/hypergram/methods/messages/send_media_group.py +525 -0
  413. hypergram-1.1.0/hypergram/methods/messages/send_message.py +352 -0
  414. hypergram-1.1.0/hypergram/methods/messages/send_message_draft.py +105 -0
  415. hypergram-1.1.0/hypergram/methods/messages/send_paid_media.py +385 -0
  416. hypergram-1.1.0/hypergram/methods/messages/send_paid_reaction.py +79 -0
  417. hypergram-1.1.0/hypergram/methods/messages/send_photo.py +317 -0
  418. hypergram-1.1.0/hypergram/methods/messages/send_poll.py +316 -0
  419. hypergram-1.1.0/hypergram/methods/messages/send_reaction.py +111 -0
  420. hypergram-1.1.0/hypergram/methods/messages/send_screenshot_notification.py +57 -0
  421. hypergram-1.1.0/hypergram/methods/messages/send_sticker.py +303 -0
  422. hypergram-1.1.0/hypergram/methods/messages/send_venue.py +231 -0
  423. hypergram-1.1.0/hypergram/methods/messages/send_video.py +448 -0
  424. hypergram-1.1.0/hypergram/methods/messages/send_video_note.py +336 -0
  425. hypergram-1.1.0/hypergram/methods/messages/send_voice.py +319 -0
  426. hypergram-1.1.0/hypergram/methods/messages/send_web_page.py +195 -0
  427. hypergram-1.1.0/hypergram/methods/messages/set_direct_messages_chat_topic_is_marked_as_unread.py +66 -0
  428. hypergram-1.1.0/hypergram/methods/messages/start_bot.py +77 -0
  429. hypergram-1.1.0/hypergram/methods/messages/stop_poll.py +81 -0
  430. hypergram-1.1.0/hypergram/methods/messages/stream_media.py +106 -0
  431. hypergram-1.1.0/hypergram/methods/messages/summarize_message.py +81 -0
  432. hypergram-1.1.0/hypergram/methods/messages/translate_message_text.py +77 -0
  433. hypergram-1.1.0/hypergram/methods/messages/translate_text.py +73 -0
  434. hypergram-1.1.0/hypergram/methods/messages/view_messages.py +61 -0
  435. hypergram-1.1.0/hypergram/methods/messages/vote_poll.py +71 -0
  436. hypergram-1.1.0/hypergram/methods/password/__init__.py +29 -0
  437. hypergram-1.1.0/hypergram/methods/password/change_cloud_password.py +82 -0
  438. hypergram-1.1.0/hypergram/methods/password/enable_cloud_password.py +88 -0
  439. hypergram-1.1.0/hypergram/methods/password/remove_cloud_password.py +64 -0
  440. hypergram-1.1.0/hypergram/methods/payments/__init__.py +111 -0
  441. hypergram-1.1.0/hypergram/methods/payments/add_collection_gifts.py +71 -0
  442. hypergram-1.1.0/hypergram/methods/payments/apply_gift_code.py +64 -0
  443. hypergram-1.1.0/hypergram/methods/payments/buy_gift_upgrade.py +76 -0
  444. hypergram-1.1.0/hypergram/methods/payments/check_gift_code.py +67 -0
  445. hypergram-1.1.0/hypergram/methods/payments/convert_gift_to_stars.py +61 -0
  446. hypergram-1.1.0/hypergram/methods/payments/craft_gift.py +67 -0
  447. hypergram-1.1.0/hypergram/methods/payments/create_gift_collection.py +63 -0
  448. hypergram-1.1.0/hypergram/methods/payments/delete_gift_collection.py +58 -0
  449. hypergram-1.1.0/hypergram/methods/payments/drop_gift_original_details.py +74 -0
  450. hypergram-1.1.0/hypergram/methods/payments/edit_star_subscription.py +47 -0
  451. hypergram-1.1.0/hypergram/methods/payments/get_available_gifts.py +47 -0
  452. hypergram-1.1.0/hypergram/methods/payments/get_chat_gifts.py +150 -0
  453. hypergram-1.1.0/hypergram/methods/payments/get_chat_gifts_count.py +63 -0
  454. hypergram-1.1.0/hypergram/methods/payments/get_gift_auction_state.py +64 -0
  455. hypergram-1.1.0/hypergram/methods/payments/get_gift_collections.py +53 -0
  456. hypergram-1.1.0/hypergram/methods/payments/get_gift_upgrade_preview.py +50 -0
  457. hypergram-1.1.0/hypergram/methods/payments/get_gift_upgrade_variants.py +45 -0
  458. hypergram-1.1.0/hypergram/methods/payments/get_gifts_for_crafting.py +86 -0
  459. hypergram-1.1.0/hypergram/methods/payments/get_payment_form.py +66 -0
  460. hypergram-1.1.0/hypergram/methods/payments/get_stars_balance.py +64 -0
  461. hypergram-1.1.0/hypergram/methods/payments/get_ton_balance.py +54 -0
  462. hypergram-1.1.0/hypergram/methods/payments/get_upgraded_gift.py +66 -0
  463. hypergram-1.1.0/hypergram/methods/payments/get_upgraded_gift_value_info.py +63 -0
  464. hypergram-1.1.0/hypergram/methods/payments/gift_premium_with_stars.py +97 -0
  465. hypergram-1.1.0/hypergram/methods/payments/hide_gift.py +62 -0
  466. hypergram-1.1.0/hypergram/methods/payments/increase_gift_auction_bid.py +68 -0
  467. hypergram-1.1.0/hypergram/methods/payments/place_gift_auction_bid.py +111 -0
  468. hypergram-1.1.0/hypergram/methods/payments/process_gift_purchase_offer.py +51 -0
  469. hypergram-1.1.0/hypergram/methods/payments/remove_collection_gifts.py +68 -0
  470. hypergram-1.1.0/hypergram/methods/payments/reorder_collection_gifts.py +69 -0
  471. hypergram-1.1.0/hypergram/methods/payments/reorder_gift_collections.py +57 -0
  472. hypergram-1.1.0/hypergram/methods/payments/reuse_star_subscription.py +41 -0
  473. hypergram-1.1.0/hypergram/methods/payments/search_gifts_for_resale.py +119 -0
  474. hypergram-1.1.0/hypergram/methods/payments/send_gift.py +99 -0
  475. hypergram-1.1.0/hypergram/methods/payments/send_gift_purchase_offer.py +76 -0
  476. hypergram-1.1.0/hypergram/methods/payments/send_payment_form.py +96 -0
  477. hypergram-1.1.0/hypergram/methods/payments/send_resold_gift.py +123 -0
  478. hypergram-1.1.0/hypergram/methods/payments/set_gift_collection_name.py +62 -0
  479. hypergram-1.1.0/hypergram/methods/payments/set_gift_resale_price.py +72 -0
  480. hypergram-1.1.0/hypergram/methods/payments/set_pinned_gifts.py +67 -0
  481. hypergram-1.1.0/hypergram/methods/payments/show_gift.py +62 -0
  482. hypergram-1.1.0/hypergram/methods/payments/suggest_birthday.py +59 -0
  483. hypergram-1.1.0/hypergram/methods/payments/transfer_gift.py +103 -0
  484. hypergram-1.1.0/hypergram/methods/payments/upgrade_gift.py +114 -0
  485. hypergram-1.1.0/hypergram/methods/phone/__init__.py +25 -0
  486. hypergram-1.1.0/hypergram/methods/phone/get_call_members.py +103 -0
  487. hypergram-1.1.0/hypergram/methods/premium/__init__.py +28 -0
  488. hypergram-1.1.0/hypergram/methods/premium/apply_boost.py +59 -0
  489. hypergram-1.1.0/hypergram/methods/premium/get_boosts.py +57 -0
  490. hypergram-1.1.0/hypergram/methods/premium/get_boosts_status.py +45 -0
  491. hypergram-1.1.0/hypergram/methods/stories/__init__.py +64 -0
  492. hypergram-1.1.0/hypergram/methods/stories/can_post_stories.py +53 -0
  493. hypergram-1.1.0/hypergram/methods/stories/copy_story.py +116 -0
  494. hypergram-1.1.0/hypergram/methods/stories/delete_stories.py +66 -0
  495. hypergram-1.1.0/hypergram/methods/stories/edit_story_caption.py +83 -0
  496. hypergram-1.1.0/hypergram/methods/stories/edit_story_media.py +174 -0
  497. hypergram-1.1.0/hypergram/methods/stories/edit_story_privacy.py +130 -0
  498. hypergram-1.1.0/hypergram/methods/stories/enable_stealth_mode.py +67 -0
  499. hypergram-1.1.0/hypergram/methods/stories/forward_story.py +135 -0
  500. hypergram-1.1.0/hypergram/methods/stories/get_all_stories.py +81 -0
  501. hypergram-1.1.0/hypergram/methods/stories/get_archived_stories.py +95 -0
  502. hypergram-1.1.0/hypergram/methods/stories/get_chat_stories.py +72 -0
  503. hypergram-1.1.0/hypergram/methods/stories/get_pinned_stories.py +102 -0
  504. hypergram-1.1.0/hypergram/methods/stories/get_stories.py +104 -0
  505. hypergram-1.1.0/hypergram/methods/stories/get_story_views.py +120 -0
  506. hypergram-1.1.0/hypergram/methods/stories/hide_chat_stories.py +56 -0
  507. hypergram-1.1.0/hypergram/methods/stories/pin_chat_stories.py +65 -0
  508. hypergram-1.1.0/hypergram/methods/stories/read_chat_stories.py +64 -0
  509. hypergram-1.1.0/hypergram/methods/stories/send_story.py +274 -0
  510. hypergram-1.1.0/hypergram/methods/stories/show_chat_stories.py +56 -0
  511. hypergram-1.1.0/hypergram/methods/stories/unpin_chat_stories.py +65 -0
  512. hypergram-1.1.0/hypergram/methods/stories/view_stories.py +61 -0
  513. hypergram-1.1.0/hypergram/methods/users/__init__.py +61 -0
  514. hypergram-1.1.0/hypergram/methods/users/block_user.py +54 -0
  515. hypergram-1.1.0/hypergram/methods/users/check_username.py +66 -0
  516. hypergram-1.1.0/hypergram/methods/users/delete_profile_photos.py +63 -0
  517. hypergram-1.1.0/hypergram/methods/users/get_chat_audios.py +103 -0
  518. hypergram-1.1.0/hypergram/methods/users/get_chat_audios_count.py +61 -0
  519. hypergram-1.1.0/hypergram/methods/users/get_chat_photos.py +159 -0
  520. hypergram-1.1.0/hypergram/methods/users/get_chat_photos_count.py +74 -0
  521. hypergram-1.1.0/hypergram/methods/users/get_common_chats.py +67 -0
  522. hypergram-1.1.0/hypergram/methods/users/get_default_emoji_statuses.py +47 -0
  523. hypergram-1.1.0/hypergram/methods/users/get_me.py +50 -0
  524. hypergram-1.1.0/hypergram/methods/users/get_users.py +71 -0
  525. hypergram-1.1.0/hypergram/methods/users/set_emoji_status.py +62 -0
  526. hypergram-1.1.0/hypergram/methods/users/set_personal_channel.py +67 -0
  527. hypergram-1.1.0/hypergram/methods/users/set_profile_photo.py +153 -0
  528. hypergram-1.1.0/hypergram/methods/users/set_username.py +57 -0
  529. hypergram-1.1.0/hypergram/methods/users/unblock_user.py +54 -0
  530. hypergram-1.1.0/hypergram/methods/users/update_birthday.py +67 -0
  531. hypergram-1.1.0/hypergram/methods/users/update_profile.py +72 -0
  532. hypergram-1.1.0/hypergram/methods/users/update_status.py +54 -0
  533. hypergram-1.1.0/hypergram/methods/utilities/__init__.py +39 -0
  534. hypergram-1.1.0/hypergram/methods/utilities/add_handler.py +73 -0
  535. hypergram-1.1.0/hypergram/methods/utilities/compose.py +78 -0
  536. hypergram-1.1.0/hypergram/methods/utilities/export_session_string.py +40 -0
  537. hypergram-1.1.0/hypergram/methods/utilities/idle.py +88 -0
  538. hypergram-1.1.0/hypergram/methods/utilities/remove_handler.py +69 -0
  539. hypergram-1.1.0/hypergram/methods/utilities/restart.py +78 -0
  540. hypergram-1.1.0/hypergram/methods/utilities/run.py +70 -0
  541. hypergram-1.1.0/hypergram/methods/utilities/start.py +103 -0
  542. hypergram-1.1.0/hypergram/methods/utilities/stop.py +76 -0
  543. hypergram-1.1.0/hypergram/methods/utilities/stop_transmission.py +43 -0
  544. hypergram-1.1.0/hypergram/mime_types.py +1881 -0
  545. hypergram-1.1.0/hypergram/parser/__init__.py +19 -0
  546. hypergram-1.1.0/hypergram/parser/html.py +293 -0
  547. hypergram-1.1.0/hypergram/parser/markdown.py +325 -0
  548. hypergram-1.1.0/hypergram/parser/parser.py +61 -0
  549. hypergram-1.1.0/hypergram/parser/utils.py +41 -0
  550. hypergram-1.1.0/hypergram/py.typed +0 -0
  551. hypergram-1.1.0/hypergram/qrlogin.py +111 -0
  552. hypergram-1.1.0/hypergram/raw/__init__.py +26 -0
  553. hypergram-1.1.0/hypergram/raw/core/__init__.py +32 -0
  554. hypergram-1.1.0/hypergram/raw/core/base_type_meta.py +26 -0
  555. hypergram-1.1.0/hypergram/raw/core/future_salt.py +53 -0
  556. hypergram-1.1.0/hypergram/raw/core/future_salts.py +63 -0
  557. hypergram-1.1.0/hypergram/raw/core/gzip_packed.py +62 -0
  558. hypergram-1.1.0/hypergram/raw/core/list.py +26 -0
  559. hypergram-1.1.0/hypergram/raw/core/message.py +56 -0
  560. hypergram-1.1.0/hypergram/raw/core/msg_container.py +53 -0
  561. hypergram-1.1.0/hypergram/raw/core/primitives/__init__.py +24 -0
  562. hypergram-1.1.0/hypergram/raw/core/primitives/bool.py +48 -0
  563. hypergram-1.1.0/hypergram/raw/core/primitives/bytes.py +55 -0
  564. hypergram-1.1.0/hypergram/raw/core/primitives/double.py +32 -0
  565. hypergram-1.1.0/hypergram/raw/core/primitives/int.py +45 -0
  566. hypergram-1.1.0/hypergram/raw/core/primitives/string.py +31 -0
  567. hypergram-1.1.0/hypergram/raw/core/primitives/vector.py +66 -0
  568. hypergram-1.1.0/hypergram/raw/core/tl_object.py +84 -0
  569. hypergram-1.1.0/hypergram/session/__init__.py +20 -0
  570. hypergram-1.1.0/hypergram/session/auth.py +306 -0
  571. hypergram-1.1.0/hypergram/session/internals/__init__.py +20 -0
  572. hypergram-1.1.0/hypergram/session/internals/msg_factory.py +65 -0
  573. hypergram-1.1.0/hypergram/session/internals/msg_id.py +37 -0
  574. hypergram-1.1.0/hypergram/session/session.py +576 -0
  575. hypergram-1.1.0/hypergram/storage/__init__.py +20 -0
  576. hypergram-1.1.0/hypergram/storage/sqlite_storage.py +432 -0
  577. hypergram-1.1.0/hypergram/storage/storage.py +248 -0
  578. hypergram-1.1.0/hypergram/sync.py +109 -0
  579. hypergram-1.1.0/hypergram/types/__init__.py +27 -0
  580. hypergram-1.1.0/hypergram/types/authorization/__init__.py +39 -0
  581. hypergram-1.1.0/hypergram/types/authorization/active_session.py +179 -0
  582. hypergram-1.1.0/hypergram/types/authorization/active_sessions.py +56 -0
  583. hypergram-1.1.0/hypergram/types/authorization/firebase_authentication_settings.py +57 -0
  584. hypergram-1.1.0/hypergram/types/authorization/phone_number_authentication_settings.py +89 -0
  585. hypergram-1.1.0/hypergram/types/authorization/sent_code.py +62 -0
  586. hypergram-1.1.0/hypergram/types/authorization/terms_of_service.py +56 -0
  587. hypergram-1.1.0/hypergram/types/bots_and_keyboards/__init__.py +109 -0
  588. hypergram-1.1.0/hypergram/types/bots_and_keyboards/bot_access_settings.py +54 -0
  589. hypergram-1.1.0/hypergram/types/bots_and_keyboards/bot_command.py +53 -0
  590. hypergram-1.1.0/hypergram/types/bots_and_keyboards/bot_command_scope.py +73 -0
  591. hypergram-1.1.0/hypergram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +32 -0
  592. hypergram-1.1.0/hypergram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +32 -0
  593. hypergram-1.1.0/hypergram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +32 -0
  594. hypergram-1.1.0/hypergram/types/bots_and_keyboards/bot_command_scope_chat.py +43 -0
  595. hypergram-1.1.0/hypergram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +43 -0
  596. hypergram-1.1.0/hypergram/types/bots_and_keyboards/bot_command_scope_chat_member.py +48 -0
  597. hypergram-1.1.0/hypergram/types/bots_and_keyboards/bot_command_scope_default.py +33 -0
  598. hypergram-1.1.0/hypergram/types/bots_and_keyboards/callback_game.py +29 -0
  599. hypergram-1.1.0/hypergram/types/bots_and_keyboards/callback_query.py +350 -0
  600. hypergram-1.1.0/hypergram/types/bots_and_keyboards/chat_boost_updated.py +62 -0
  601. hypergram-1.1.0/hypergram/types/bots_and_keyboards/chat_shared.py +97 -0
  602. hypergram-1.1.0/hypergram/types/bots_and_keyboards/force_reply.py +66 -0
  603. hypergram-1.1.0/hypergram/types/bots_and_keyboards/game_high_score.py +70 -0
  604. hypergram-1.1.0/hypergram/types/bots_and_keyboards/inline_keyboard_button.py +320 -0
  605. hypergram-1.1.0/hypergram/types/bots_and_keyboards/inline_keyboard_markup.py +76 -0
  606. hypergram-1.1.0/hypergram/types/bots_and_keyboards/keyboard_button.py +328 -0
  607. hypergram-1.1.0/hypergram/types/bots_and_keyboards/keyboard_button_poll_type.py +36 -0
  608. hypergram-1.1.0/hypergram/types/bots_and_keyboards/keyboard_button_request_chat.py +97 -0
  609. hypergram-1.1.0/hypergram/types/bots_and_keyboards/keyboard_button_request_managed_bot.py +46 -0
  610. hypergram-1.1.0/hypergram/types/bots_and_keyboards/keyboard_button_request_users.py +73 -0
  611. hypergram-1.1.0/hypergram/types/bots_and_keyboards/labeled_price.py +58 -0
  612. hypergram-1.1.0/hypergram/types/bots_and_keyboards/login_url.py +91 -0
  613. hypergram-1.1.0/hypergram/types/bots_and_keyboards/managed_bot_updated.py +62 -0
  614. hypergram-1.1.0/hypergram/types/bots_and_keyboards/menu_button.py +44 -0
  615. hypergram-1.1.0/hypergram/types/bots_and_keyboards/menu_button_commands.py +32 -0
  616. hypergram-1.1.0/hypergram/types/bots_and_keyboards/menu_button_default.py +32 -0
  617. hypergram-1.1.0/hypergram/types/bots_and_keyboards/menu_button_web_app.py +51 -0
  618. hypergram-1.1.0/hypergram/types/bots_and_keyboards/message_reaction_count_updated.py +89 -0
  619. hypergram-1.1.0/hypergram/types/bots_and_keyboards/message_reaction_updated.py +125 -0
  620. hypergram-1.1.0/hypergram/types/bots_and_keyboards/order_info.py +57 -0
  621. hypergram-1.1.0/hypergram/types/bots_and_keyboards/pre_checkout_query.py +137 -0
  622. hypergram-1.1.0/hypergram/types/bots_and_keyboards/purchased_paid_media.py +50 -0
  623. hypergram-1.1.0/hypergram/types/bots_and_keyboards/reply_keyboard_markup.py +112 -0
  624. hypergram-1.1.0/hypergram/types/bots_and_keyboards/reply_keyboard_remove.py +58 -0
  625. hypergram-1.1.0/hypergram/types/bots_and_keyboards/sent_guest_message.py +45 -0
  626. hypergram-1.1.0/hypergram/types/bots_and_keyboards/sent_web_app_message.py +42 -0
  627. hypergram-1.1.0/hypergram/types/bots_and_keyboards/shipping_address.py +82 -0
  628. hypergram-1.1.0/hypergram/types/bots_and_keyboards/shipping_option.py +73 -0
  629. hypergram-1.1.0/hypergram/types/bots_and_keyboards/shipping_query.py +121 -0
  630. hypergram-1.1.0/hypergram/types/bots_and_keyboards/users_shared.py +83 -0
  631. hypergram-1.1.0/hypergram/types/bots_and_keyboards/web_app_info.py +37 -0
  632. hypergram-1.1.0/hypergram/types/inline_mode/__init__.py +47 -0
  633. hypergram-1.1.0/hypergram/types/inline_mode/chosen_inline_result.py +94 -0
  634. hypergram-1.1.0/hypergram/types/inline_mode/inline_query.py +181 -0
  635. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result.py +63 -0
  636. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_animation.py +156 -0
  637. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_article.py +99 -0
  638. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_audio.py +120 -0
  639. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_cached_animation.py +108 -0
  640. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_cached_audio.py +101 -0
  641. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_cached_document.py +113 -0
  642. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_cached_photo.py +111 -0
  643. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_cached_sticker.py +78 -0
  644. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_cached_video.py +114 -0
  645. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_cached_voice.py +108 -0
  646. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_contact.py +114 -0
  647. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_document.py +145 -0
  648. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_location.py +122 -0
  649. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_photo.py +147 -0
  650. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_venue.py +131 -0
  651. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_video.py +151 -0
  652. hypergram-1.1.0/hypergram/types/inline_mode/inline_query_result_voice.py +114 -0
  653. hypergram-1.1.0/hypergram/types/input_content/__init__.py +110 -0
  654. hypergram-1.1.0/hypergram/types/input_content/input_chat_photo.py +113 -0
  655. hypergram-1.1.0/hypergram/types/input_content/input_checklist.py +65 -0
  656. hypergram-1.1.0/hypergram/types/input_content/input_contact_message_content.py +68 -0
  657. hypergram-1.1.0/hypergram/types/input_content/input_credentials.py +38 -0
  658. hypergram-1.1.0/hypergram/types/input_content/input_credentials_apple_pay.py +43 -0
  659. hypergram-1.1.0/hypergram/types/input_content/input_credentials_google_pay.py +43 -0
  660. hypergram-1.1.0/hypergram/types/input_content/input_credentials_new.py +50 -0
  661. hypergram-1.1.0/hypergram/types/input_content/input_credentials_saved.py +59 -0
  662. hypergram-1.1.0/hypergram/types/input_content/input_invoice.py +36 -0
  663. hypergram-1.1.0/hypergram/types/input_content/input_invoice_message.py +51 -0
  664. hypergram-1.1.0/hypergram/types/input_content/input_invoice_message_content.py +176 -0
  665. hypergram-1.1.0/hypergram/types/input_content/input_invoice_name.py +52 -0
  666. hypergram-1.1.0/hypergram/types/input_content/input_location_message_content.py +85 -0
  667. hypergram-1.1.0/hypergram/types/input_content/input_media.py +56 -0
  668. hypergram-1.1.0/hypergram/types/input_content/input_media_animation.py +160 -0
  669. hypergram-1.1.0/hypergram/types/input_content/input_media_audio.py +157 -0
  670. hypergram-1.1.0/hypergram/types/input_content/input_media_document.py +127 -0
  671. hypergram-1.1.0/hypergram/types/input_content/input_media_live_photo.py +162 -0
  672. hypergram-1.1.0/hypergram/types/input_content/input_media_location.py +93 -0
  673. hypergram-1.1.0/hypergram/types/input_content/input_media_photo.py +123 -0
  674. hypergram-1.1.0/hypergram/types/input_content/input_media_sticker.py +104 -0
  675. hypergram-1.1.0/hypergram/types/input_content/input_media_venue.py +114 -0
  676. hypergram-1.1.0/hypergram/types/input_content/input_media_video.py +238 -0
  677. hypergram-1.1.0/hypergram/types/input_content/input_message_content.py +40 -0
  678. hypergram-1.1.0/hypergram/types/input_content/input_phone_contact.py +51 -0
  679. hypergram-1.1.0/hypergram/types/input_content/input_poll_media.py +58 -0
  680. hypergram-1.1.0/hypergram/types/input_content/input_poll_option.py +57 -0
  681. hypergram-1.1.0/hypergram/types/input_content/input_poll_option_media.py +56 -0
  682. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule.py +44 -0
  683. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule_allow_all.py +33 -0
  684. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule_allow_bots.py +33 -0
  685. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule_allow_chats.py +49 -0
  686. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule_allow_close_friends.py +33 -0
  687. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule_allow_contacts.py +33 -0
  688. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule_allow_premium.py +33 -0
  689. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule_allow_users.py +47 -0
  690. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule_disallow_all.py +33 -0
  691. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule_disallow_bots.py +33 -0
  692. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule_disallow_chats.py +49 -0
  693. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule_disallow_contacts.py +33 -0
  694. hypergram-1.1.0/hypergram/types/input_content/input_privacy_rule_disallow_users.py +47 -0
  695. hypergram-1.1.0/hypergram/types/input_content/input_text_message_content.py +97 -0
  696. hypergram-1.1.0/hypergram/types/input_content/input_venue_message_content.py +88 -0
  697. hypergram-1.1.0/hypergram/types/list.py +30 -0
  698. hypergram-1.1.0/hypergram/types/messages_and_media/__init__.py +291 -0
  699. hypergram-1.1.0/hypergram/types/messages_and_media/animation.py +191 -0
  700. hypergram-1.1.0/hypergram/types/messages_and_media/auction_bid.py +53 -0
  701. hypergram-1.1.0/hypergram/types/messages_and_media/auction_round.py +70 -0
  702. hypergram-1.1.0/hypergram/types/messages_and_media/auction_state.py +172 -0
  703. hypergram-1.1.0/hypergram/types/messages_and_media/audio.py +121 -0
  704. hypergram-1.1.0/hypergram/types/messages_and_media/available_effect.py +88 -0
  705. hypergram-1.1.0/hypergram/types/messages_and_media/boosts_status.py +89 -0
  706. hypergram-1.1.0/hypergram/types/messages_and_media/business_message.py +106 -0
  707. hypergram-1.1.0/hypergram/types/messages_and_media/chat_background.py +167 -0
  708. hypergram-1.1.0/hypergram/types/messages_and_media/chat_boost.py +108 -0
  709. hypergram-1.1.0/hypergram/types/messages_and_media/chat_has_protected_content_disable_requested.py +45 -0
  710. hypergram-1.1.0/hypergram/types/messages_and_media/chat_has_protected_content_toggled.py +64 -0
  711. hypergram-1.1.0/hypergram/types/messages_and_media/chat_owner_changed.py +49 -0
  712. hypergram-1.1.0/hypergram/types/messages_and_media/chat_owner_left.py +49 -0
  713. hypergram-1.1.0/hypergram/types/messages_and_media/chat_theme.py +51 -0
  714. hypergram-1.1.0/hypergram/types/messages_and_media/checked_gift_code.py +98 -0
  715. hypergram-1.1.0/hypergram/types/messages_and_media/checklist.py +111 -0
  716. hypergram-1.1.0/hypergram/types/messages_and_media/checklist_task.py +88 -0
  717. hypergram-1.1.0/hypergram/types/messages_and_media/checklist_tasks_added.py +63 -0
  718. hypergram-1.1.0/hypergram/types/messages_and_media/checklist_tasks_done.py +63 -0
  719. hypergram-1.1.0/hypergram/types/messages_and_media/contact.py +71 -0
  720. hypergram-1.1.0/hypergram/types/messages_and_media/contact_registered.py +29 -0
  721. hypergram-1.1.0/hypergram/types/messages_and_media/craft_gift_result.py +58 -0
  722. hypergram-1.1.0/hypergram/types/messages_and_media/dice.py +47 -0
  723. hypergram-1.1.0/hypergram/types/messages_and_media/direct_message_price_changed.py +56 -0
  724. hypergram-1.1.0/hypergram/types/messages_and_media/direct_messages_topic.py +105 -0
  725. hypergram-1.1.0/hypergram/types/messages_and_media/document.py +98 -0
  726. hypergram-1.1.0/hypergram/types/messages_and_media/external_reply_info.py +334 -0
  727. hypergram-1.1.0/hypergram/types/messages_and_media/fact_check.py +72 -0
  728. hypergram-1.1.0/hypergram/types/messages_and_media/formatted_text.py +80 -0
  729. hypergram-1.1.0/hypergram/types/messages_and_media/forum_topic.py +161 -0
  730. hypergram-1.1.0/hypergram/types/messages_and_media/forum_topic_closed.py +29 -0
  731. hypergram-1.1.0/hypergram/types/messages_and_media/forum_topic_created.py +64 -0
  732. hypergram-1.1.0/hypergram/types/messages_and_media/forum_topic_edited.py +70 -0
  733. hypergram-1.1.0/hypergram/types/messages_and_media/forum_topic_reopened.py +29 -0
  734. hypergram-1.1.0/hypergram/types/messages_and_media/game.py +98 -0
  735. hypergram-1.1.0/hypergram/types/messages_and_media/general_forum_topic_hidden.py +29 -0
  736. hypergram-1.1.0/hypergram/types/messages_and_media/general_forum_topic_unhidden.py +29 -0
  737. hypergram-1.1.0/hypergram/types/messages_and_media/gift.py +1041 -0
  738. hypergram-1.1.0/hypergram/types/messages_and_media/gift_attribute.py +175 -0
  739. hypergram-1.1.0/hypergram/types/messages_and_media/gift_auction.py +55 -0
  740. hypergram-1.1.0/hypergram/types/messages_and_media/gift_auction_state.py +69 -0
  741. hypergram-1.1.0/hypergram/types/messages_and_media/gift_collection.py +73 -0
  742. hypergram-1.1.0/hypergram/types/messages_and_media/gift_purchase_limit.py +52 -0
  743. hypergram-1.1.0/hypergram/types/messages_and_media/gift_resale_parameters.py +69 -0
  744. hypergram-1.1.0/hypergram/types/messages_and_media/gift_resale_price.py +83 -0
  745. hypergram-1.1.0/hypergram/types/messages_and_media/gift_upgrade_preview.py +84 -0
  746. hypergram-1.1.0/hypergram/types/messages_and_media/gift_upgrade_price.py +53 -0
  747. hypergram-1.1.0/hypergram/types/messages_and_media/gift_upgrade_variants.py +72 -0
  748. hypergram-1.1.0/hypergram/types/messages_and_media/gifted_premium.py +135 -0
  749. hypergram-1.1.0/hypergram/types/messages_and_media/gifted_stars.py +120 -0
  750. hypergram-1.1.0/hypergram/types/messages_and_media/gifted_ton.py +96 -0
  751. hypergram-1.1.0/hypergram/types/messages_and_media/giveaway.py +106 -0
  752. hypergram-1.1.0/hypergram/types/messages_and_media/giveaway_completed.py +95 -0
  753. hypergram-1.1.0/hypergram/types/messages_and_media/giveaway_created.py +57 -0
  754. hypergram-1.1.0/hypergram/types/messages_and_media/giveaway_prize_stars.py +119 -0
  755. hypergram-1.1.0/hypergram/types/messages_and_media/giveaway_winners.py +150 -0
  756. hypergram-1.1.0/hypergram/types/messages_and_media/input_checklist_task.py +72 -0
  757. hypergram-1.1.0/hypergram/types/messages_and_media/invoice.py +162 -0
  758. hypergram-1.1.0/hypergram/types/messages_and_media/link_preview_options.py +87 -0
  759. hypergram-1.1.0/hypergram/types/messages_and_media/live_photo.py +102 -0
  760. hypergram-1.1.0/hypergram/types/messages_and_media/location.py +131 -0
  761. hypergram-1.1.0/hypergram/types/messages_and_media/managed_bot_created.py +56 -0
  762. hypergram-1.1.0/hypergram/types/messages_and_media/mask_position.py +70 -0
  763. hypergram-1.1.0/hypergram/types/messages_and_media/media_area.py +287 -0
  764. hypergram-1.1.0/hypergram/types/messages_and_media/message.py +9565 -0
  765. hypergram-1.1.0/hypergram/types/messages_and_media/message_content.py +306 -0
  766. hypergram-1.1.0/hypergram/types/messages_and_media/message_entity.py +205 -0
  767. hypergram-1.1.0/hypergram/types/messages_and_media/message_origin.py +94 -0
  768. hypergram-1.1.0/hypergram/types/messages_and_media/message_origin_channel.py +61 -0
  769. hypergram-1.1.0/hypergram/types/messages_and_media/message_origin_chat.py +56 -0
  770. hypergram-1.1.0/hypergram/types/messages_and_media/message_origin_hidden_user.py +51 -0
  771. hypergram-1.1.0/hypergram/types/messages_and_media/message_origin_import.py +50 -0
  772. hypergram-1.1.0/hypergram/types/messages_and_media/message_origin_user.py +51 -0
  773. hypergram-1.1.0/hypergram/types/messages_and_media/message_reactions.py +90 -0
  774. hypergram-1.1.0/hypergram/types/messages_and_media/my_boost.py +79 -0
  775. hypergram-1.1.0/hypergram/types/messages_and_media/paid_media_info.py +93 -0
  776. hypergram-1.1.0/hypergram/types/messages_and_media/paid_media_preview.py +55 -0
  777. hypergram-1.1.0/hypergram/types/messages_and_media/paid_messages_price_changed.py +48 -0
  778. hypergram-1.1.0/hypergram/types/messages_and_media/paid_messages_refunded.py +54 -0
  779. hypergram-1.1.0/hypergram/types/messages_and_media/paid_reactor.py +86 -0
  780. hypergram-1.1.0/hypergram/types/messages_and_media/payment_form.py +169 -0
  781. hypergram-1.1.0/hypergram/types/messages_and_media/payment_option.py +50 -0
  782. hypergram-1.1.0/hypergram/types/messages_and_media/payment_result.py +66 -0
  783. hypergram-1.1.0/hypergram/types/messages_and_media/photo.py +130 -0
  784. hypergram-1.1.0/hypergram/types/messages_and_media/poll.py +372 -0
  785. hypergram-1.1.0/hypergram/types/messages_and_media/poll_option.py +91 -0
  786. hypergram-1.1.0/hypergram/types/messages_and_media/poll_option_added.py +69 -0
  787. hypergram-1.1.0/hypergram/types/messages_and_media/poll_option_deleted.py +69 -0
  788. hypergram-1.1.0/hypergram/types/messages_and_media/premium_gift_code.py +141 -0
  789. hypergram-1.1.0/hypergram/types/messages_and_media/proximity_alert_triggered.py +65 -0
  790. hypergram-1.1.0/hypergram/types/messages_and_media/reaction.py +97 -0
  791. hypergram-1.1.0/hypergram/types/messages_and_media/refunded_payment.py +81 -0
  792. hypergram-1.1.0/hypergram/types/messages_and_media/reply_parameters.py +88 -0
  793. hypergram-1.1.0/hypergram/types/messages_and_media/restriction_reason.py +62 -0
  794. hypergram-1.1.0/hypergram/types/messages_and_media/saved_credentials.py +50 -0
  795. hypergram-1.1.0/hypergram/types/messages_and_media/screenshot_taken.py +29 -0
  796. hypergram-1.1.0/hypergram/types/messages_and_media/star_amount.py +54 -0
  797. hypergram-1.1.0/hypergram/types/messages_and_media/sticker.py +287 -0
  798. hypergram-1.1.0/hypergram/types/messages_and_media/story.py +2183 -0
  799. hypergram-1.1.0/hypergram/types/messages_and_media/story_view.py +75 -0
  800. hypergram-1.1.0/hypergram/types/messages_and_media/stripped_thumbnail.py +47 -0
  801. hypergram-1.1.0/hypergram/types/messages_and_media/successful_payment.py +141 -0
  802. hypergram-1.1.0/hypergram/types/messages_and_media/suggested_post_approval_failed.py +88 -0
  803. hypergram-1.1.0/hypergram/types/messages_and_media/suggested_post_approved.py +93 -0
  804. hypergram-1.1.0/hypergram/types/messages_and_media/suggested_post_declined.py +86 -0
  805. hypergram-1.1.0/hypergram/types/messages_and_media/suggested_post_info.py +73 -0
  806. hypergram-1.1.0/hypergram/types/messages_and_media/suggested_post_paid.py +101 -0
  807. hypergram-1.1.0/hypergram/types/messages_and_media/suggested_post_parameters.py +53 -0
  808. hypergram-1.1.0/hypergram/types/messages_and_media/suggested_post_price.py +106 -0
  809. hypergram-1.1.0/hypergram/types/messages_and_media/suggested_post_refunded.py +92 -0
  810. hypergram-1.1.0/hypergram/types/messages_and_media/text_quote.py +83 -0
  811. hypergram-1.1.0/hypergram/types/messages_and_media/thumbnail.py +111 -0
  812. hypergram-1.1.0/hypergram/types/messages_and_media/upgraded_gift_attribute_id.py +58 -0
  813. hypergram-1.1.0/hypergram/types/messages_and_media/upgraded_gift_attribute_id_backdrop.py +41 -0
  814. hypergram-1.1.0/hypergram/types/messages_and_media/upgraded_gift_attribute_id_model.py +41 -0
  815. hypergram-1.1.0/hypergram/types/messages_and_media/upgraded_gift_attribute_id_symbol.py +41 -0
  816. hypergram-1.1.0/hypergram/types/messages_and_media/upgraded_gift_attribute_rarity.py +131 -0
  817. hypergram-1.1.0/hypergram/types/messages_and_media/upgraded_gift_original_details.py +74 -0
  818. hypergram-1.1.0/hypergram/types/messages_and_media/upgraded_gift_purchase_offer.py +138 -0
  819. hypergram-1.1.0/hypergram/types/messages_and_media/upgraded_gift_value_info.py +124 -0
  820. hypergram-1.1.0/hypergram/types/messages_and_media/venue.py +76 -0
  821. hypergram-1.1.0/hypergram/types/messages_and_media/video.py +174 -0
  822. hypergram-1.1.0/hypergram/types/messages_and_media/video_note.py +115 -0
  823. hypergram-1.1.0/hypergram/types/messages_and_media/voice.py +102 -0
  824. hypergram-1.1.0/hypergram/types/messages_and_media/web_app_data.py +53 -0
  825. hypergram-1.1.0/hypergram/types/messages_and_media/web_page.py +262 -0
  826. hypergram-1.1.0/hypergram/types/messages_and_media/write_access_allowed.py +57 -0
  827. hypergram-1.1.0/hypergram/types/object.py +127 -0
  828. hypergram-1.1.0/hypergram/types/update.py +27 -0
  829. hypergram-1.1.0/hypergram/types/user_and_chats/__init__.py +118 -0
  830. hypergram-1.1.0/hypergram/types/user_and_chats/accepted_gift_types.py +85 -0
  831. hypergram-1.1.0/hypergram/types/user_and_chats/birthday.py +69 -0
  832. hypergram-1.1.0/hypergram/types/user_and_chats/bot_verification.py +63 -0
  833. hypergram-1.1.0/hypergram/types/user_and_chats/business_bot_rights.py +125 -0
  834. hypergram-1.1.0/hypergram/types/user_and_chats/business_connection.py +85 -0
  835. hypergram-1.1.0/hypergram/types/user_and_chats/business_intro.py +74 -0
  836. hypergram-1.1.0/hypergram/types/user_and_chats/business_recipients.py +78 -0
  837. hypergram-1.1.0/hypergram/types/user_and_chats/business_weekly_open.py +49 -0
  838. hypergram-1.1.0/hypergram/types/user_and_chats/business_working_hours.py +62 -0
  839. hypergram-1.1.0/hypergram/types/user_and_chats/chat.py +1964 -0
  840. hypergram-1.1.0/hypergram/types/user_and_chats/chat_admin_with_invite_links.py +63 -0
  841. hypergram-1.1.0/hypergram/types/user_and_chats/chat_administrator_rights.py +160 -0
  842. hypergram-1.1.0/hypergram/types/user_and_chats/chat_color.py +64 -0
  843. hypergram-1.1.0/hypergram/types/user_and_chats/chat_event.py +536 -0
  844. hypergram-1.1.0/hypergram/types/user_and_chats/chat_event_filter.py +175 -0
  845. hypergram-1.1.0/hypergram/types/user_and_chats/chat_folder_invite_link_info.py +96 -0
  846. hypergram-1.1.0/hypergram/types/user_and_chats/chat_invite_link.py +130 -0
  847. hypergram-1.1.0/hypergram/types/user_and_chats/chat_join_request.py +139 -0
  848. hypergram-1.1.0/hypergram/types/user_and_chats/chat_joiner.py +82 -0
  849. hypergram-1.1.0/hypergram/types/user_and_chats/chat_member.py +247 -0
  850. hypergram-1.1.0/hypergram/types/user_and_chats/chat_member_updated.py +112 -0
  851. hypergram-1.1.0/hypergram/types/user_and_chats/chat_permissions.py +213 -0
  852. hypergram-1.1.0/hypergram/types/user_and_chats/chat_photo.py +125 -0
  853. hypergram-1.1.0/hypergram/types/user_and_chats/chat_reactions.py +69 -0
  854. hypergram-1.1.0/hypergram/types/user_and_chats/chat_settings.py +174 -0
  855. hypergram-1.1.0/hypergram/types/user_and_chats/dialog.py +121 -0
  856. hypergram-1.1.0/hypergram/types/user_and_chats/emoji_status.py +127 -0
  857. hypergram-1.1.0/hypergram/types/user_and_chats/failed_to_add_member.py +55 -0
  858. hypergram-1.1.0/hypergram/types/user_and_chats/folder.py +507 -0
  859. hypergram-1.1.0/hypergram/types/user_and_chats/folder_invite_link.py +57 -0
  860. hypergram-1.1.0/hypergram/types/user_and_chats/found_contacts.py +74 -0
  861. hypergram-1.1.0/hypergram/types/user_and_chats/global_privacy_settings.py +115 -0
  862. hypergram-1.1.0/hypergram/types/user_and_chats/group_call_member.py +149 -0
  863. hypergram-1.1.0/hypergram/types/user_and_chats/history_cleared.py +29 -0
  864. hypergram-1.1.0/hypergram/types/user_and_chats/invite_link_importer.py +61 -0
  865. hypergram-1.1.0/hypergram/types/user_and_chats/phone_call_ended.py +63 -0
  866. hypergram-1.1.0/hypergram/types/user_and_chats/phone_call_started.py +49 -0
  867. hypergram-1.1.0/hypergram/types/user_and_chats/privacy_rule.py +58 -0
  868. hypergram-1.1.0/hypergram/types/user_and_chats/restriction.py +50 -0
  869. hypergram-1.1.0/hypergram/types/user_and_chats/stories_stealth_mode.py +47 -0
  870. hypergram-1.1.0/hypergram/types/user_and_chats/user.py +953 -0
  871. hypergram-1.1.0/hypergram/types/user_and_chats/user_rating.py +72 -0
  872. hypergram-1.1.0/hypergram/types/user_and_chats/username.py +50 -0
  873. hypergram-1.1.0/hypergram/types/user_and_chats/verification_status.py +75 -0
  874. hypergram-1.1.0/hypergram/types/user_and_chats/video_chat_ended.py +41 -0
  875. hypergram-1.1.0/hypergram/types/user_and_chats/video_chat_members_invited.py +50 -0
  876. hypergram-1.1.0/hypergram/types/user_and_chats/video_chat_scheduled.py +43 -0
  877. hypergram-1.1.0/hypergram/types/user_and_chats/video_chat_started.py +29 -0
  878. hypergram-1.1.0/hypergram/utils.py +747 -0
  879. hypergram-1.1.0/pyproject.toml +175 -0
@@ -0,0 +1,130 @@
1
+ # Development
2
+ docs
3
+ *.session
4
+ config.ini
5
+ main.py
6
+ unknown_errors.txt
7
+ .DS_Store
8
+
9
+ # hypergram generated code
10
+ hypergram/errors/exceptions/
11
+ hypergram/raw/functions/
12
+ hypergram/raw/types/
13
+ hypergram/raw/base/
14
+ hypergram/raw/all.py
15
+ docs/source/telegram
16
+ docs/source/api/methods/
17
+ docs/source/api/bound-methods/
18
+ docs/source/api/types/
19
+
20
+ # PyCharm stuff
21
+ .idea/
22
+
23
+ # VS Code
24
+ .vscode/
25
+
26
+ # Byte-compiled / optimized / DLL files
27
+ __pycache__/
28
+ *.py[cod]
29
+ *$py.class
30
+
31
+ # C extensions
32
+ *.so
33
+
34
+ # Distribution / packaging
35
+ .Python
36
+ build/
37
+ develop-eggs/
38
+ dist/
39
+ downloads/
40
+ eggs/
41
+ .eggs/
42
+ lib/
43
+ lib64/
44
+ parts/
45
+ sdist/
46
+ var/
47
+ wheels/
48
+ *.egg-info/
49
+ .installed.cfg
50
+ *.egg
51
+ MANIFEST
52
+
53
+ # PyInstaller
54
+ # Usually these files are written by a python script from a template
55
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
56
+ *.manifest
57
+ *.spec
58
+
59
+ # Installer logs
60
+ pip-log.txt
61
+ pip-delete-this-directory.txt
62
+
63
+ # Unit test / coverage reports
64
+ htmlcov/
65
+ .tox/
66
+ .coverage
67
+ .coverage.*
68
+ .cache
69
+ nosetests.xml
70
+ coverage.xml
71
+ *.cover
72
+ .hypothesis/
73
+
74
+ # Translations
75
+ *.mo
76
+ *.pot
77
+
78
+ # Django stuff:
79
+ *.log
80
+ .static_storage/
81
+ .media/
82
+ local_settings.py
83
+
84
+ # Flask stuff:
85
+ instance/
86
+ .webassets-cache
87
+
88
+ # Scrapy stuff:
89
+ .scrapy
90
+
91
+ # Sphinx documentation
92
+ docs/_build/
93
+ docs/source/_build
94
+
95
+ # PyBuilder
96
+ target/
97
+
98
+ # Jupyter Notebook
99
+ .ipynb_checkpoints
100
+
101
+ # pyenv
102
+ .python-version
103
+
104
+ # celery beat schedule file
105
+ celerybeat-schedule
106
+
107
+ # SageMath parsed files
108
+ *.sage.py
109
+
110
+ # Environments
111
+ .env
112
+ .venv
113
+ env/
114
+ venv/
115
+ ENV/
116
+ env.bak/
117
+ venv.bak/
118
+
119
+ # Spyder project settings
120
+ .spyderproject
121
+ .spyproject
122
+
123
+ # Rope project settings
124
+ .ropeproject
125
+
126
+ # mkdocs documentation
127
+ /site
128
+
129
+ # mypy
130
+ .mypy_cache/