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