mentio 0.2.1__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 (304) hide show
  1. mentio-0.2.1/.gitignore +7 -0
  2. mentio-0.2.1/PKG-INFO +47 -0
  3. mentio-0.2.1/README.md +24 -0
  4. mentio-0.2.1/mentio/__init__.py +13 -0
  5. mentio-0.2.1/mentio/_facade.py +1221 -0
  6. mentio-0.2.1/mentio/api/__init__.py +1 -0
  7. mentio-0.2.1/mentio/api/alerts/__init__.py +1 -0
  8. mentio-0.2.1/mentio/api/alerts/create_alert.py +171 -0
  9. mentio-0.2.1/mentio/api/alerts/create_channel.py +240 -0
  10. mentio-0.2.1/mentio/api/alerts/delete_alert.py +164 -0
  11. mentio-0.2.1/mentio/api/alerts/delete_channel.py +164 -0
  12. mentio-0.2.1/mentio/api/alerts/get_alert.py +166 -0
  13. mentio-0.2.1/mentio/api/alerts/get_channel.py +230 -0
  14. mentio-0.2.1/mentio/api/alerts/list_alerts.py +134 -0
  15. mentio-0.2.1/mentio/api/alerts/list_channel_deliveries.py +189 -0
  16. mentio-0.2.1/mentio/api/alerts/list_channels.py +134 -0
  17. mentio-0.2.1/mentio/api/alerts/rotate_webhook_secret.py +230 -0
  18. mentio-0.2.1/mentio/api/alerts/run_alert_digest.py +171 -0
  19. mentio-0.2.1/mentio/api/alerts/test_alert.py +166 -0
  20. mentio-0.2.1/mentio/api/alerts/test_channel.py +166 -0
  21. mentio-0.2.1/mentio/api/alerts/update_alert.py +192 -0
  22. mentio-0.2.1/mentio/api/alerts/update_channel.py +251 -0
  23. mentio-0.2.1/mentio/api/analytics/__init__.py +1 -0
  24. mentio-0.2.1/mentio/api/analytics/get_analytics_breakdown.py +357 -0
  25. mentio-0.2.1/mentio/api/analytics/get_analytics_series.py +376 -0
  26. mentio-0.2.1/mentio/api/analytics/get_analytics_summary.py +328 -0
  27. mentio-0.2.1/mentio/api/analytics/get_share_of_voice.py +326 -0
  28. mentio-0.2.1/mentio/api/api_keys/__init__.py +1 -0
  29. mentio-0.2.1/mentio/api/api_keys/create_api_key.py +174 -0
  30. mentio-0.2.1/mentio/api/api_keys/list_api_keys.py +134 -0
  31. mentio-0.2.1/mentio/api/api_keys/revoke_api_key.py +172 -0
  32. mentio-0.2.1/mentio/api/company/__init__.py +1 -0
  33. mentio-0.2.1/mentio/api/company/get_company.py +151 -0
  34. mentio-0.2.1/mentio/api/company/update_company.py +183 -0
  35. mentio-0.2.1/mentio/api/keywords/__init__.py +1 -0
  36. mentio-0.2.1/mentio/api/keywords/create_keyword.py +192 -0
  37. mentio-0.2.1/mentio/api/keywords/delete_keyword.py +172 -0
  38. mentio-0.2.1/mentio/api/keywords/get_keyword.py +166 -0
  39. mentio-0.2.1/mentio/api/keywords/list_keywords.py +142 -0
  40. mentio-0.2.1/mentio/api/keywords/update_keyword.py +200 -0
  41. mentio-0.2.1/mentio/api/mentions/__init__.py +1 -0
  42. mentio-0.2.1/mentio/api/mentions/export_mentions_csv.py +538 -0
  43. mentio-0.2.1/mentio/api/mentions/get_mention.py +182 -0
  44. mentio-0.2.1/mentio/api/mentions/search_mentions.py +585 -0
  45. mentio-0.2.1/mentio/api/mentions/update_mention.py +208 -0
  46. mentio-0.2.1/mentio/api/people/__init__.py +1 -0
  47. mentio-0.2.1/mentio/api/people/export_people_csv.py +543 -0
  48. mentio-0.2.1/mentio/api/people/get_person.py +174 -0
  49. mentio-0.2.1/mentio/api/people/list_people.py +581 -0
  50. mentio-0.2.1/mentio/api/people/merge_people.py +199 -0
  51. mentio-0.2.1/mentio/api/people/split_person.py +174 -0
  52. mentio-0.2.1/mentio/api/people/update_person.py +199 -0
  53. mentio-0.2.1/mentio/api/segments/__init__.py +1 -0
  54. mentio-0.2.1/mentio/api/segments/create_segment.py +176 -0
  55. mentio-0.2.1/mentio/api/segments/delete_segment.py +172 -0
  56. mentio-0.2.1/mentio/api/segments/get_segment.py +166 -0
  57. mentio-0.2.1/mentio/api/segments/list_segments.py +150 -0
  58. mentio-0.2.1/mentio/api/segments/update_segment.py +192 -0
  59. mentio-0.2.1/mentio/api/system/__init__.py +1 -0
  60. mentio-0.2.1/mentio/api/system/get_health.py +124 -0
  61. mentio-0.2.1/mentio/client.py +280 -0
  62. mentio-0.2.1/mentio/errors.py +16 -0
  63. mentio-0.2.1/mentio/models/__init__.py +593 -0
  64. mentio-0.2.1/mentio/models/alert.py +174 -0
  65. mentio-0.2.1/mentio/models/alert_channels_item.py +79 -0
  66. mentio-0.2.1/mentio/models/alert_channels_item_kind.py +11 -0
  67. mentio-0.2.1/mentio/models/alert_filter.py +158 -0
  68. mentio-0.2.1/mentio/models/alert_filter_platforms_item.py +17 -0
  69. mentio-0.2.1/mentio/models/alert_filter_sentiments_item.py +10 -0
  70. mentio-0.2.1/mentio/models/alert_mode.py +9 -0
  71. mentio-0.2.1/mentio/models/alert_schedule_type_0.py +90 -0
  72. mentio-0.2.1/mentio/models/alert_stats.py +90 -0
  73. mentio-0.2.1/mentio/models/analytics_breakdown.py +100 -0
  74. mentio-0.2.1/mentio/models/analytics_breakdown_by.py +14 -0
  75. mentio-0.2.1/mentio/models/analytics_breakdown_data_item.py +258 -0
  76. mentio-0.2.1/mentio/models/analytics_breakdown_data_item_keyword_type_0.py +82 -0
  77. mentio-0.2.1/mentio/models/analytics_breakdown_data_item_keyword_type_0_kind.py +10 -0
  78. mentio-0.2.1/mentio/models/analytics_breakdown_data_item_person_type_0.py +138 -0
  79. mentio-0.2.1/mentio/models/analytics_breakdown_data_item_person_type_0_platform.py +17 -0
  80. mentio-0.2.1/mentio/models/analytics_breakdown_data_item_previous_type_0.py +70 -0
  81. mentio-0.2.1/mentio/models/analytics_breakdown_data_item_sentiment.py +86 -0
  82. mentio-0.2.1/mentio/models/analytics_breakdown_data_item_slot_type_0.py +70 -0
  83. mentio-0.2.1/mentio/models/analytics_breakdown_window.py +86 -0
  84. mentio-0.2.1/mentio/models/analytics_series.py +136 -0
  85. mentio-0.2.1/mentio/models/analytics_series_data_item.py +131 -0
  86. mentio-0.2.1/mentio/models/analytics_series_data_item_keyword_type_0.py +82 -0
  87. mentio-0.2.1/mentio/models/analytics_series_data_item_keyword_type_0_kind.py +10 -0
  88. mentio-0.2.1/mentio/models/analytics_series_data_item_points_item.py +109 -0
  89. mentio-0.2.1/mentio/models/analytics_series_previous_type_0_item.py +137 -0
  90. mentio-0.2.1/mentio/models/analytics_series_previous_type_0_item_keyword_type_0.py +82 -0
  91. mentio-0.2.1/mentio/models/analytics_series_previous_type_0_item_keyword_type_0_kind.py +10 -0
  92. mentio-0.2.1/mentio/models/analytics_series_previous_type_0_item_points_item.py +109 -0
  93. mentio-0.2.1/mentio/models/analytics_series_window.py +96 -0
  94. mentio-0.2.1/mentio/models/analytics_series_window_bucket.py +9 -0
  95. mentio-0.2.1/mentio/models/analytics_summary.py +187 -0
  96. mentio-0.2.1/mentio/models/analytics_summary_previous_type_0.py +148 -0
  97. mentio-0.2.1/mentio/models/analytics_summary_previous_type_0_reach.py +71 -0
  98. mentio-0.2.1/mentio/models/analytics_summary_previous_type_0_sentiment.py +86 -0
  99. mentio-0.2.1/mentio/models/analytics_summary_previous_type_0_triage.py +116 -0
  100. mentio-0.2.1/mentio/models/analytics_summary_reach.py +71 -0
  101. mentio-0.2.1/mentio/models/analytics_summary_sentiment.py +86 -0
  102. mentio-0.2.1/mentio/models/analytics_summary_triage.py +116 -0
  103. mentio-0.2.1/mentio/models/analytics_summary_window.py +86 -0
  104. mentio-0.2.1/mentio/models/company.py +99 -0
  105. mentio-0.2.1/mentio/models/company_accounts.py +83 -0
  106. mentio-0.2.1/mentio/models/create_alert_body.py +164 -0
  107. mentio-0.2.1/mentio/models/create_alert_body_filter.py +164 -0
  108. mentio-0.2.1/mentio/models/create_alert_body_filter_platforms_item.py +17 -0
  109. mentio-0.2.1/mentio/models/create_alert_body_filter_sentiments_item.py +10 -0
  110. mentio-0.2.1/mentio/models/create_alert_body_mode.py +9 -0
  111. mentio-0.2.1/mentio/models/create_alert_body_schedule.py +90 -0
  112. mentio-0.2.1/mentio/models/create_api_key_body.py +78 -0
  113. mentio-0.2.1/mentio/models/create_api_key_body_scope.py +9 -0
  114. mentio-0.2.1/mentio/models/create_api_key_response_201.py +117 -0
  115. mentio-0.2.1/mentio/models/create_api_key_response_201_scope.py +9 -0
  116. mentio-0.2.1/mentio/models/create_email_channel.py +71 -0
  117. mentio-0.2.1/mentio/models/create_email_channel_kind.py +8 -0
  118. mentio-0.2.1/mentio/models/create_keyword_body.py +128 -0
  119. mentio-0.2.1/mentio/models/create_keyword_body_kind.py +10 -0
  120. mentio-0.2.1/mentio/models/create_keyword_body_platforms_type_0_item.py +17 -0
  121. mentio-0.2.1/mentio/models/create_segment_body.py +96 -0
  122. mentio-0.2.1/mentio/models/create_segment_body_filter.py +213 -0
  123. mentio-0.2.1/mentio/models/create_segment_body_filter_keyword_kinds_item.py +10 -0
  124. mentio-0.2.1/mentio/models/create_segment_body_filter_never_keyword_kinds_item.py +10 -0
  125. mentio-0.2.1/mentio/models/create_segment_body_filter_platforms_item.py +17 -0
  126. mentio-0.2.1/mentio/models/create_slack_channel.py +79 -0
  127. mentio-0.2.1/mentio/models/create_slack_channel_kind.py +8 -0
  128. mentio-0.2.1/mentio/models/create_webhook_channel.py +105 -0
  129. mentio-0.2.1/mentio/models/create_webhook_channel_headers.py +47 -0
  130. mentio-0.2.1/mentio/models/create_webhook_channel_kind.py +8 -0
  131. mentio-0.2.1/mentio/models/email_channel.py +111 -0
  132. mentio-0.2.1/mentio/models/email_channel_config.py +81 -0
  133. mentio-0.2.1/mentio/models/email_channel_config_recipients_item.py +76 -0
  134. mentio-0.2.1/mentio/models/email_channel_kind.py +8 -0
  135. mentio-0.2.1/mentio/models/email_channel_stats.py +100 -0
  136. mentio-0.2.1/mentio/models/email_channel_stats_last_7d.py +70 -0
  137. mentio-0.2.1/mentio/models/error_response.py +67 -0
  138. mentio-0.2.1/mentio/models/error_response_error.py +70 -0
  139. mentio-0.2.1/mentio/models/export_mentions_csv_platform.py +17 -0
  140. mentio-0.2.1/mentio/models/export_mentions_csv_sentiment.py +10 -0
  141. mentio-0.2.1/mentio/models/export_mentions_csv_status.py +10 -0
  142. mentio-0.2.1/mentio/models/export_people_csv_keyword_kinds_item.py +10 -0
  143. mentio-0.2.1/mentio/models/export_people_csv_never_keyword_kinds_item.py +10 -0
  144. mentio-0.2.1/mentio/models/export_people_csv_platform.py +17 -0
  145. mentio-0.2.1/mentio/models/export_people_csv_platforms_item.py +17 -0
  146. mentio-0.2.1/mentio/models/export_people_csv_sort.py +11 -0
  147. mentio-0.2.1/mentio/models/get_analytics_breakdown_by.py +14 -0
  148. mentio-0.2.1/mentio/models/get_analytics_breakdown_platforms_item.py +17 -0
  149. mentio-0.2.1/mentio/models/get_analytics_breakdown_range.py +11 -0
  150. mentio-0.2.1/mentio/models/get_analytics_series_bucket.py +9 -0
  151. mentio-0.2.1/mentio/models/get_analytics_series_by.py +9 -0
  152. mentio-0.2.1/mentio/models/get_analytics_series_platforms_item.py +17 -0
  153. mentio-0.2.1/mentio/models/get_analytics_series_range.py +11 -0
  154. mentio-0.2.1/mentio/models/get_analytics_summary_platforms_item.py +17 -0
  155. mentio-0.2.1/mentio/models/get_analytics_summary_range.py +11 -0
  156. mentio-0.2.1/mentio/models/get_health_response_200.py +61 -0
  157. mentio-0.2.1/mentio/models/get_share_of_voice_platforms_item.py +17 -0
  158. mentio-0.2.1/mentio/models/get_share_of_voice_range.py +11 -0
  159. mentio-0.2.1/mentio/models/keyword.py +175 -0
  160. mentio-0.2.1/mentio/models/keyword_kind.py +10 -0
  161. mentio-0.2.1/mentio/models/keyword_platforms_type_0_item.py +17 -0
  162. mentio-0.2.1/mentio/models/keyword_polling_item.py +86 -0
  163. mentio-0.2.1/mentio/models/keyword_polling_item_platform.py +17 -0
  164. mentio-0.2.1/mentio/models/keyword_stats.py +92 -0
  165. mentio-0.2.1/mentio/models/list_alerts_response_200.py +79 -0
  166. mentio-0.2.1/mentio/models/list_alerts_response_200_data_item.py +201 -0
  167. mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_channels_item.py +81 -0
  168. mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_channels_item_kind.py +11 -0
  169. mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_filter.py +170 -0
  170. mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_filter_platforms_item.py +17 -0
  171. mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_filter_sentiments_item.py +10 -0
  172. mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_mode.py +9 -0
  173. mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_schedule_type_0.py +90 -0
  174. mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_stats.py +90 -0
  175. mentio-0.2.1/mentio/models/list_api_keys_response_200.py +79 -0
  176. mentio-0.2.1/mentio/models/list_api_keys_response_200_data_item.py +111 -0
  177. mentio-0.2.1/mentio/models/list_api_keys_response_200_data_item_scope.py +9 -0
  178. mentio-0.2.1/mentio/models/list_channel_deliveries_response_200.py +81 -0
  179. mentio-0.2.1/mentio/models/list_channel_deliveries_response_200_data_item.py +191 -0
  180. mentio-0.2.1/mentio/models/list_channel_deliveries_response_200_data_item_alert.py +69 -0
  181. mentio-0.2.1/mentio/models/list_channel_deliveries_response_200_data_item_kind.py +9 -0
  182. mentio-0.2.1/mentio/models/list_channel_deliveries_response_200_data_item_mention_type_0.py +78 -0
  183. mentio-0.2.1/mentio/models/list_channel_deliveries_response_200_data_item_status.py +10 -0
  184. mentio-0.2.1/mentio/models/list_channels_response_200.py +128 -0
  185. mentio-0.2.1/mentio/models/list_keywords_response_200.py +79 -0
  186. mentio-0.2.1/mentio/models/list_keywords_response_200_data_item.py +195 -0
  187. mentio-0.2.1/mentio/models/list_keywords_response_200_data_item_kind.py +10 -0
  188. mentio-0.2.1/mentio/models/list_keywords_response_200_data_item_platforms_type_0_item.py +17 -0
  189. mentio-0.2.1/mentio/models/list_keywords_response_200_data_item_polling_item.py +88 -0
  190. mentio-0.2.1/mentio/models/list_keywords_response_200_data_item_polling_item_platform.py +17 -0
  191. mentio-0.2.1/mentio/models/list_keywords_response_200_data_item_stats.py +92 -0
  192. mentio-0.2.1/mentio/models/list_people_keyword_kinds_item.py +10 -0
  193. mentio-0.2.1/mentio/models/list_people_never_keyword_kinds_item.py +10 -0
  194. mentio-0.2.1/mentio/models/list_people_platform.py +17 -0
  195. mentio-0.2.1/mentio/models/list_people_platforms_item.py +17 -0
  196. mentio-0.2.1/mentio/models/list_people_response_200.py +87 -0
  197. mentio-0.2.1/mentio/models/list_people_response_200_data_item.py +243 -0
  198. mentio-0.2.1/mentio/models/list_people_response_200_data_item_accounts_item.py +116 -0
  199. mentio-0.2.1/mentio/models/list_people_response_200_data_item_accounts_item_platform.py +17 -0
  200. mentio-0.2.1/mentio/models/list_people_response_200_data_item_annotations.py +78 -0
  201. mentio-0.2.1/mentio/models/list_people_response_200_data_item_platform.py +17 -0
  202. mentio-0.2.1/mentio/models/list_people_response_200_data_item_profile_type_0.py +162 -0
  203. mentio-0.2.1/mentio/models/list_people_response_200_data_item_profile_type_0_links_item.py +69 -0
  204. mentio-0.2.1/mentio/models/list_people_response_200_data_item_reach.py +97 -0
  205. mentio-0.2.1/mentio/models/list_people_response_200_data_item_stats.py +106 -0
  206. mentio-0.2.1/mentio/models/list_people_response_200_data_item_stats_sentiment.py +77 -0
  207. mentio-0.2.1/mentio/models/list_people_sort.py +11 -0
  208. mentio-0.2.1/mentio/models/list_segments_response_200.py +103 -0
  209. mentio-0.2.1/mentio/models/list_segments_response_200_data_item.py +119 -0
  210. mentio-0.2.1/mentio/models/list_segments_response_200_data_item_filter.py +223 -0
  211. mentio-0.2.1/mentio/models/list_segments_response_200_data_item_filter_keyword_kinds_item.py +10 -0
  212. mentio-0.2.1/mentio/models/list_segments_response_200_data_item_filter_never_keyword_kinds_item.py +10 -0
  213. mentio-0.2.1/mentio/models/list_segments_response_200_data_item_filter_platforms_item.py +17 -0
  214. mentio-0.2.1/mentio/models/list_segments_response_200_presets_item.py +95 -0
  215. mentio-0.2.1/mentio/models/list_segments_response_200_presets_item_filter.py +225 -0
  216. mentio-0.2.1/mentio/models/list_segments_response_200_presets_item_filter_keyword_kinds_item.py +10 -0
  217. mentio-0.2.1/mentio/models/list_segments_response_200_presets_item_filter_never_keyword_kinds_item.py +10 -0
  218. mentio-0.2.1/mentio/models/list_segments_response_200_presets_item_filter_platforms_item.py +17 -0
  219. mentio-0.2.1/mentio/models/mention.py +203 -0
  220. mentio-0.2.1/mentio/models/mention_author_type_0.py +148 -0
  221. mentio-0.2.1/mentio/models/mention_classification_type_0.py +111 -0
  222. mentio-0.2.1/mentio/models/mention_classification_type_0_sentiment.py +10 -0
  223. mentio-0.2.1/mentio/models/mention_keyword.py +70 -0
  224. mentio-0.2.1/mentio/models/mention_post.py +125 -0
  225. mentio-0.2.1/mentio/models/mention_post_platform.py +17 -0
  226. mentio-0.2.1/mentio/models/mention_post_reply_to_type_0.py +97 -0
  227. mentio-0.2.1/mentio/models/mention_status.py +10 -0
  228. mentio-0.2.1/mentio/models/mention_triage.py +120 -0
  229. mentio-0.2.1/mentio/models/mention_triage_assignee_type_0.py +90 -0
  230. mentio-0.2.1/mentio/models/merge_people_body.py +61 -0
  231. mentio-0.2.1/mentio/models/person.py +209 -0
  232. mentio-0.2.1/mentio/models/person_accounts_item.py +114 -0
  233. mentio-0.2.1/mentio/models/person_accounts_item_platform.py +17 -0
  234. mentio-0.2.1/mentio/models/person_annotations.py +78 -0
  235. mentio-0.2.1/mentio/models/person_platform.py +17 -0
  236. mentio-0.2.1/mentio/models/person_profile_type_0.py +157 -0
  237. mentio-0.2.1/mentio/models/person_profile_type_0_links_item.py +69 -0
  238. mentio-0.2.1/mentio/models/person_reach.py +97 -0
  239. mentio-0.2.1/mentio/models/person_stats.py +102 -0
  240. mentio-0.2.1/mentio/models/person_stats_sentiment.py +77 -0
  241. mentio-0.2.1/mentio/models/run_alert_digest_response_200.py +109 -0
  242. mentio-0.2.1/mentio/models/run_alert_digest_response_200_outcomes_item.py +83 -0
  243. mentio-0.2.1/mentio/models/run_alert_digest_response_200_skipped.py +9 -0
  244. mentio-0.2.1/mentio/models/search_mentions_platform.py +17 -0
  245. mentio-0.2.1/mentio/models/search_mentions_response_200.py +89 -0
  246. mentio-0.2.1/mentio/models/search_mentions_sentiment.py +10 -0
  247. mentio-0.2.1/mentio/models/search_mentions_sort.py +9 -0
  248. mentio-0.2.1/mentio/models/search_mentions_status.py +10 -0
  249. mentio-0.2.1/mentio/models/segment.py +115 -0
  250. mentio-0.2.1/mentio/models/segment_filter.py +201 -0
  251. mentio-0.2.1/mentio/models/segment_filter_keyword_kinds_item.py +10 -0
  252. mentio-0.2.1/mentio/models/segment_filter_never_keyword_kinds_item.py +10 -0
  253. mentio-0.2.1/mentio/models/segment_filter_platforms_item.py +17 -0
  254. mentio-0.2.1/mentio/models/share_of_voice.py +87 -0
  255. mentio-0.2.1/mentio/models/share_of_voice_data_item.py +152 -0
  256. mentio-0.2.1/mentio/models/share_of_voice_data_item_keyword.py +82 -0
  257. mentio-0.2.1/mentio/models/share_of_voice_data_item_keyword_kind.py +10 -0
  258. mentio-0.2.1/mentio/models/share_of_voice_data_item_previous_type_0.py +62 -0
  259. mentio-0.2.1/mentio/models/share_of_voice_window.py +86 -0
  260. mentio-0.2.1/mentio/models/slack_channel.py +111 -0
  261. mentio-0.2.1/mentio/models/slack_channel_config.py +69 -0
  262. mentio-0.2.1/mentio/models/slack_channel_kind.py +8 -0
  263. mentio-0.2.1/mentio/models/slack_channel_stats.py +100 -0
  264. mentio-0.2.1/mentio/models/slack_channel_stats_last_7d.py +70 -0
  265. mentio-0.2.1/mentio/models/telegram_channel.py +115 -0
  266. mentio-0.2.1/mentio/models/telegram_channel_config.py +71 -0
  267. mentio-0.2.1/mentio/models/telegram_channel_config_chat_type.py +11 -0
  268. mentio-0.2.1/mentio/models/telegram_channel_kind.py +8 -0
  269. mentio-0.2.1/mentio/models/telegram_channel_stats.py +100 -0
  270. mentio-0.2.1/mentio/models/telegram_channel_stats_last_7d.py +70 -0
  271. mentio-0.2.1/mentio/models/test_alert_response_200.py +81 -0
  272. mentio-0.2.1/mentio/models/test_alert_response_200_outcomes_item.py +83 -0
  273. mentio-0.2.1/mentio/models/test_channel_response_200.py +81 -0
  274. mentio-0.2.1/mentio/models/test_channel_response_200_outcomes_item.py +83 -0
  275. mentio-0.2.1/mentio/models/update_alert_body.py +183 -0
  276. mentio-0.2.1/mentio/models/update_alert_body_filter.py +165 -0
  277. mentio-0.2.1/mentio/models/update_alert_body_filter_platforms_item.py +17 -0
  278. mentio-0.2.1/mentio/models/update_alert_body_filter_sentiments_item.py +10 -0
  279. mentio-0.2.1/mentio/models/update_alert_body_mode.py +9 -0
  280. mentio-0.2.1/mentio/models/update_alert_body_schedule_type_0.py +89 -0
  281. mentio-0.2.1/mentio/models/update_channel_body.py +95 -0
  282. mentio-0.2.1/mentio/models/update_channel_body_headers.py +47 -0
  283. mentio-0.2.1/mentio/models/update_company_body.py +115 -0
  284. mentio-0.2.1/mentio/models/update_company_body_accounts.py +93 -0
  285. mentio-0.2.1/mentio/models/update_keyword_body.py +109 -0
  286. mentio-0.2.1/mentio/models/update_keyword_body_platforms_type_0_item.py +17 -0
  287. mentio-0.2.1/mentio/models/update_mention_body.py +128 -0
  288. mentio-0.2.1/mentio/models/update_mention_body_status.py +10 -0
  289. mentio-0.2.1/mentio/models/update_person_body.py +82 -0
  290. mentio-0.2.1/mentio/models/update_segment_body.py +95 -0
  291. mentio-0.2.1/mentio/models/update_segment_body_filter.py +214 -0
  292. mentio-0.2.1/mentio/models/update_segment_body_filter_keyword_kinds_item.py +10 -0
  293. mentio-0.2.1/mentio/models/update_segment_body_filter_never_keyword_kinds_item.py +10 -0
  294. mentio-0.2.1/mentio/models/update_segment_body_filter_platforms_item.py +17 -0
  295. mentio-0.2.1/mentio/models/webhook_channel.py +113 -0
  296. mentio-0.2.1/mentio/models/webhook_channel_config.py +89 -0
  297. mentio-0.2.1/mentio/models/webhook_channel_config_headers.py +47 -0
  298. mentio-0.2.1/mentio/models/webhook_channel_kind.py +8 -0
  299. mentio-0.2.1/mentio/models/webhook_channel_stats.py +100 -0
  300. mentio-0.2.1/mentio/models/webhook_channel_stats_last_7d.py +70 -0
  301. mentio-0.2.1/mentio/types.py +54 -0
  302. mentio-0.2.1/node_modules/tsx/README.md +32 -0
  303. mentio-0.2.1/node_modules/typescript/README.md +50 -0
  304. mentio-0.2.1/pyproject.toml +45 -0
@@ -0,0 +1,7 @@
1
+ dist/
2
+ .venv/
3
+ __pycache__/
4
+ *.pyc
5
+ .ruff_cache/
6
+ .pytest_cache/
7
+ uv.lock
mentio-0.2.1/PKG-INFO ADDED
@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.5
2
+ Name: mentio
3
+ Version: 0.2.1
4
+ Summary: Python client for the Mentio API: social listening across developer platforms.
5
+ Project-URL: Homepage, https://docs.mentio.dev/sdks/python
6
+ Project-URL: Documentation, https://docs.mentio.dev/sdks/python
7
+ Project-URL: Repository, https://github.com/PauGuirao/mentions
8
+ Author: Mentio
9
+ License-Expression: MIT
10
+ Keywords: api client,brand monitoring,mentio,openapi,social listening
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Typing :: Typed
19
+ Requires-Python: >=3.11
20
+ Requires-Dist: attrs>=22.2.0
21
+ Requires-Dist: httpx<0.29.0,>=0.23.1
22
+ Description-Content-Type: text/markdown
23
+
24
+ # mentio
25
+
26
+ Python client for the [Mentio API](https://docs.mentio.dev): social listening across Bluesky, Hacker News, Reddit, X, GitHub, Stack Overflow, DEV, YouTube, LinkedIn and news. Generated from the API's OpenAPI document and regenerated whenever the API changes, so it is always complete. Python 3.11+, sync and async, typed.
27
+
28
+ ```bash
29
+ pip install mentio
30
+ ```
31
+
32
+ ```python
33
+ from mentio import Mentio
34
+
35
+ mentio = Mentio(api_key="mk_live_...")
36
+
37
+ for mention in mentio.mentions.search(platform="reddit", relevant=True, limit=25).data:
38
+ print(mention.post.platform.value, mention.classification.relevance, mention.post.url)
39
+
40
+ keyword = mentio.keywords.create(term="acme", kind="brand")
41
+ mentio.mentions.update("mm_7f3a...", status="done")
42
+ summary = mentio.analytics.summary(range_="7d", compare=True, timezone="Europe/Madrid")
43
+ ```
44
+
45
+ One object, one call per endpoint, grouped by resource: `keywords`, `mentions`, `people`, `segments`, `alerts`, `channels`, `company`, `analytics`, `api_keys`, `system`. Enum-valued arguments take plain strings, instants take a `datetime`, an ISO 8601 string or epoch milliseconds, bodies take a dict, a model or their fields as keyword arguments. A non-2xx raises `MentioError` with the API's `status`, `code` and `message`. `AsyncMentio` mirrors every call for `asyncio`.
46
+
47
+ The full guide is at [docs.mentio.dev/sdks/python](https://docs.mentio.dev/sdks/python).
mentio-0.2.1/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # mentio
2
+
3
+ Python client for the [Mentio API](https://docs.mentio.dev): social listening across Bluesky, Hacker News, Reddit, X, GitHub, Stack Overflow, DEV, YouTube, LinkedIn and news. Generated from the API's OpenAPI document and regenerated whenever the API changes, so it is always complete. Python 3.11+, sync and async, typed.
4
+
5
+ ```bash
6
+ pip install mentio
7
+ ```
8
+
9
+ ```python
10
+ from mentio import Mentio
11
+
12
+ mentio = Mentio(api_key="mk_live_...")
13
+
14
+ for mention in mentio.mentions.search(platform="reddit", relevant=True, limit=25).data:
15
+ print(mention.post.platform.value, mention.classification.relevance, mention.post.url)
16
+
17
+ keyword = mentio.keywords.create(term="acme", kind="brand")
18
+ mentio.mentions.update("mm_7f3a...", status="done")
19
+ summary = mentio.analytics.summary(range_="7d", compare=True, timezone="Europe/Madrid")
20
+ ```
21
+
22
+ One object, one call per endpoint, grouped by resource: `keywords`, `mentions`, `people`, `segments`, `alerts`, `channels`, `company`, `analytics`, `api_keys`, `system`. Enum-valued arguments take plain strings, instants take a `datetime`, an ISO 8601 string or epoch milliseconds, bodies take a dict, a model or their fields as keyword arguments. A non-2xx raises `MentioError` with the API's `status`, `code` and `message`. `AsyncMentio` mirrors every call for `asyncio`.
23
+
24
+ The full guide is at [docs.mentio.dev/sdks/python](https://docs.mentio.dev/sdks/python).
@@ -0,0 +1,13 @@
1
+ """A client library for accessing Mentio API"""
2
+
3
+ from ._facade import DEFAULT_BASE_URL, AsyncMentio, Mentio, MentioError
4
+ from .client import AuthenticatedClient, Client
5
+
6
+ __all__ = (
7
+ "DEFAULT_BASE_URL",
8
+ "AsyncMentio",
9
+ "AuthenticatedClient",
10
+ "Client",
11
+ "Mentio",
12
+ "MentioError",
13
+ )