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.
- mentio-0.2.1/.gitignore +7 -0
- mentio-0.2.1/PKG-INFO +47 -0
- mentio-0.2.1/README.md +24 -0
- mentio-0.2.1/mentio/__init__.py +13 -0
- mentio-0.2.1/mentio/_facade.py +1221 -0
- mentio-0.2.1/mentio/api/__init__.py +1 -0
- mentio-0.2.1/mentio/api/alerts/__init__.py +1 -0
- mentio-0.2.1/mentio/api/alerts/create_alert.py +171 -0
- mentio-0.2.1/mentio/api/alerts/create_channel.py +240 -0
- mentio-0.2.1/mentio/api/alerts/delete_alert.py +164 -0
- mentio-0.2.1/mentio/api/alerts/delete_channel.py +164 -0
- mentio-0.2.1/mentio/api/alerts/get_alert.py +166 -0
- mentio-0.2.1/mentio/api/alerts/get_channel.py +230 -0
- mentio-0.2.1/mentio/api/alerts/list_alerts.py +134 -0
- mentio-0.2.1/mentio/api/alerts/list_channel_deliveries.py +189 -0
- mentio-0.2.1/mentio/api/alerts/list_channels.py +134 -0
- mentio-0.2.1/mentio/api/alerts/rotate_webhook_secret.py +230 -0
- mentio-0.2.1/mentio/api/alerts/run_alert_digest.py +171 -0
- mentio-0.2.1/mentio/api/alerts/test_alert.py +166 -0
- mentio-0.2.1/mentio/api/alerts/test_channel.py +166 -0
- mentio-0.2.1/mentio/api/alerts/update_alert.py +192 -0
- mentio-0.2.1/mentio/api/alerts/update_channel.py +251 -0
- mentio-0.2.1/mentio/api/analytics/__init__.py +1 -0
- mentio-0.2.1/mentio/api/analytics/get_analytics_breakdown.py +357 -0
- mentio-0.2.1/mentio/api/analytics/get_analytics_series.py +376 -0
- mentio-0.2.1/mentio/api/analytics/get_analytics_summary.py +328 -0
- mentio-0.2.1/mentio/api/analytics/get_share_of_voice.py +326 -0
- mentio-0.2.1/mentio/api/api_keys/__init__.py +1 -0
- mentio-0.2.1/mentio/api/api_keys/create_api_key.py +174 -0
- mentio-0.2.1/mentio/api/api_keys/list_api_keys.py +134 -0
- mentio-0.2.1/mentio/api/api_keys/revoke_api_key.py +172 -0
- mentio-0.2.1/mentio/api/company/__init__.py +1 -0
- mentio-0.2.1/mentio/api/company/get_company.py +151 -0
- mentio-0.2.1/mentio/api/company/update_company.py +183 -0
- mentio-0.2.1/mentio/api/keywords/__init__.py +1 -0
- mentio-0.2.1/mentio/api/keywords/create_keyword.py +192 -0
- mentio-0.2.1/mentio/api/keywords/delete_keyword.py +172 -0
- mentio-0.2.1/mentio/api/keywords/get_keyword.py +166 -0
- mentio-0.2.1/mentio/api/keywords/list_keywords.py +142 -0
- mentio-0.2.1/mentio/api/keywords/update_keyword.py +200 -0
- mentio-0.2.1/mentio/api/mentions/__init__.py +1 -0
- mentio-0.2.1/mentio/api/mentions/export_mentions_csv.py +538 -0
- mentio-0.2.1/mentio/api/mentions/get_mention.py +182 -0
- mentio-0.2.1/mentio/api/mentions/search_mentions.py +585 -0
- mentio-0.2.1/mentio/api/mentions/update_mention.py +208 -0
- mentio-0.2.1/mentio/api/people/__init__.py +1 -0
- mentio-0.2.1/mentio/api/people/export_people_csv.py +543 -0
- mentio-0.2.1/mentio/api/people/get_person.py +174 -0
- mentio-0.2.1/mentio/api/people/list_people.py +581 -0
- mentio-0.2.1/mentio/api/people/merge_people.py +199 -0
- mentio-0.2.1/mentio/api/people/split_person.py +174 -0
- mentio-0.2.1/mentio/api/people/update_person.py +199 -0
- mentio-0.2.1/mentio/api/segments/__init__.py +1 -0
- mentio-0.2.1/mentio/api/segments/create_segment.py +176 -0
- mentio-0.2.1/mentio/api/segments/delete_segment.py +172 -0
- mentio-0.2.1/mentio/api/segments/get_segment.py +166 -0
- mentio-0.2.1/mentio/api/segments/list_segments.py +150 -0
- mentio-0.2.1/mentio/api/segments/update_segment.py +192 -0
- mentio-0.2.1/mentio/api/system/__init__.py +1 -0
- mentio-0.2.1/mentio/api/system/get_health.py +124 -0
- mentio-0.2.1/mentio/client.py +280 -0
- mentio-0.2.1/mentio/errors.py +16 -0
- mentio-0.2.1/mentio/models/__init__.py +593 -0
- mentio-0.2.1/mentio/models/alert.py +174 -0
- mentio-0.2.1/mentio/models/alert_channels_item.py +79 -0
- mentio-0.2.1/mentio/models/alert_channels_item_kind.py +11 -0
- mentio-0.2.1/mentio/models/alert_filter.py +158 -0
- mentio-0.2.1/mentio/models/alert_filter_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/alert_filter_sentiments_item.py +10 -0
- mentio-0.2.1/mentio/models/alert_mode.py +9 -0
- mentio-0.2.1/mentio/models/alert_schedule_type_0.py +90 -0
- mentio-0.2.1/mentio/models/alert_stats.py +90 -0
- mentio-0.2.1/mentio/models/analytics_breakdown.py +100 -0
- mentio-0.2.1/mentio/models/analytics_breakdown_by.py +14 -0
- mentio-0.2.1/mentio/models/analytics_breakdown_data_item.py +258 -0
- mentio-0.2.1/mentio/models/analytics_breakdown_data_item_keyword_type_0.py +82 -0
- mentio-0.2.1/mentio/models/analytics_breakdown_data_item_keyword_type_0_kind.py +10 -0
- mentio-0.2.1/mentio/models/analytics_breakdown_data_item_person_type_0.py +138 -0
- mentio-0.2.1/mentio/models/analytics_breakdown_data_item_person_type_0_platform.py +17 -0
- mentio-0.2.1/mentio/models/analytics_breakdown_data_item_previous_type_0.py +70 -0
- mentio-0.2.1/mentio/models/analytics_breakdown_data_item_sentiment.py +86 -0
- mentio-0.2.1/mentio/models/analytics_breakdown_data_item_slot_type_0.py +70 -0
- mentio-0.2.1/mentio/models/analytics_breakdown_window.py +86 -0
- mentio-0.2.1/mentio/models/analytics_series.py +136 -0
- mentio-0.2.1/mentio/models/analytics_series_data_item.py +131 -0
- mentio-0.2.1/mentio/models/analytics_series_data_item_keyword_type_0.py +82 -0
- mentio-0.2.1/mentio/models/analytics_series_data_item_keyword_type_0_kind.py +10 -0
- mentio-0.2.1/mentio/models/analytics_series_data_item_points_item.py +109 -0
- mentio-0.2.1/mentio/models/analytics_series_previous_type_0_item.py +137 -0
- mentio-0.2.1/mentio/models/analytics_series_previous_type_0_item_keyword_type_0.py +82 -0
- mentio-0.2.1/mentio/models/analytics_series_previous_type_0_item_keyword_type_0_kind.py +10 -0
- mentio-0.2.1/mentio/models/analytics_series_previous_type_0_item_points_item.py +109 -0
- mentio-0.2.1/mentio/models/analytics_series_window.py +96 -0
- mentio-0.2.1/mentio/models/analytics_series_window_bucket.py +9 -0
- mentio-0.2.1/mentio/models/analytics_summary.py +187 -0
- mentio-0.2.1/mentio/models/analytics_summary_previous_type_0.py +148 -0
- mentio-0.2.1/mentio/models/analytics_summary_previous_type_0_reach.py +71 -0
- mentio-0.2.1/mentio/models/analytics_summary_previous_type_0_sentiment.py +86 -0
- mentio-0.2.1/mentio/models/analytics_summary_previous_type_0_triage.py +116 -0
- mentio-0.2.1/mentio/models/analytics_summary_reach.py +71 -0
- mentio-0.2.1/mentio/models/analytics_summary_sentiment.py +86 -0
- mentio-0.2.1/mentio/models/analytics_summary_triage.py +116 -0
- mentio-0.2.1/mentio/models/analytics_summary_window.py +86 -0
- mentio-0.2.1/mentio/models/company.py +99 -0
- mentio-0.2.1/mentio/models/company_accounts.py +83 -0
- mentio-0.2.1/mentio/models/create_alert_body.py +164 -0
- mentio-0.2.1/mentio/models/create_alert_body_filter.py +164 -0
- mentio-0.2.1/mentio/models/create_alert_body_filter_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/create_alert_body_filter_sentiments_item.py +10 -0
- mentio-0.2.1/mentio/models/create_alert_body_mode.py +9 -0
- mentio-0.2.1/mentio/models/create_alert_body_schedule.py +90 -0
- mentio-0.2.1/mentio/models/create_api_key_body.py +78 -0
- mentio-0.2.1/mentio/models/create_api_key_body_scope.py +9 -0
- mentio-0.2.1/mentio/models/create_api_key_response_201.py +117 -0
- mentio-0.2.1/mentio/models/create_api_key_response_201_scope.py +9 -0
- mentio-0.2.1/mentio/models/create_email_channel.py +71 -0
- mentio-0.2.1/mentio/models/create_email_channel_kind.py +8 -0
- mentio-0.2.1/mentio/models/create_keyword_body.py +128 -0
- mentio-0.2.1/mentio/models/create_keyword_body_kind.py +10 -0
- mentio-0.2.1/mentio/models/create_keyword_body_platforms_type_0_item.py +17 -0
- mentio-0.2.1/mentio/models/create_segment_body.py +96 -0
- mentio-0.2.1/mentio/models/create_segment_body_filter.py +213 -0
- mentio-0.2.1/mentio/models/create_segment_body_filter_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/create_segment_body_filter_never_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/create_segment_body_filter_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/create_slack_channel.py +79 -0
- mentio-0.2.1/mentio/models/create_slack_channel_kind.py +8 -0
- mentio-0.2.1/mentio/models/create_webhook_channel.py +105 -0
- mentio-0.2.1/mentio/models/create_webhook_channel_headers.py +47 -0
- mentio-0.2.1/mentio/models/create_webhook_channel_kind.py +8 -0
- mentio-0.2.1/mentio/models/email_channel.py +111 -0
- mentio-0.2.1/mentio/models/email_channel_config.py +81 -0
- mentio-0.2.1/mentio/models/email_channel_config_recipients_item.py +76 -0
- mentio-0.2.1/mentio/models/email_channel_kind.py +8 -0
- mentio-0.2.1/mentio/models/email_channel_stats.py +100 -0
- mentio-0.2.1/mentio/models/email_channel_stats_last_7d.py +70 -0
- mentio-0.2.1/mentio/models/error_response.py +67 -0
- mentio-0.2.1/mentio/models/error_response_error.py +70 -0
- mentio-0.2.1/mentio/models/export_mentions_csv_platform.py +17 -0
- mentio-0.2.1/mentio/models/export_mentions_csv_sentiment.py +10 -0
- mentio-0.2.1/mentio/models/export_mentions_csv_status.py +10 -0
- mentio-0.2.1/mentio/models/export_people_csv_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/export_people_csv_never_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/export_people_csv_platform.py +17 -0
- mentio-0.2.1/mentio/models/export_people_csv_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/export_people_csv_sort.py +11 -0
- mentio-0.2.1/mentio/models/get_analytics_breakdown_by.py +14 -0
- mentio-0.2.1/mentio/models/get_analytics_breakdown_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/get_analytics_breakdown_range.py +11 -0
- mentio-0.2.1/mentio/models/get_analytics_series_bucket.py +9 -0
- mentio-0.2.1/mentio/models/get_analytics_series_by.py +9 -0
- mentio-0.2.1/mentio/models/get_analytics_series_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/get_analytics_series_range.py +11 -0
- mentio-0.2.1/mentio/models/get_analytics_summary_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/get_analytics_summary_range.py +11 -0
- mentio-0.2.1/mentio/models/get_health_response_200.py +61 -0
- mentio-0.2.1/mentio/models/get_share_of_voice_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/get_share_of_voice_range.py +11 -0
- mentio-0.2.1/mentio/models/keyword.py +175 -0
- mentio-0.2.1/mentio/models/keyword_kind.py +10 -0
- mentio-0.2.1/mentio/models/keyword_platforms_type_0_item.py +17 -0
- mentio-0.2.1/mentio/models/keyword_polling_item.py +86 -0
- mentio-0.2.1/mentio/models/keyword_polling_item_platform.py +17 -0
- mentio-0.2.1/mentio/models/keyword_stats.py +92 -0
- mentio-0.2.1/mentio/models/list_alerts_response_200.py +79 -0
- mentio-0.2.1/mentio/models/list_alerts_response_200_data_item.py +201 -0
- mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_channels_item.py +81 -0
- mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_channels_item_kind.py +11 -0
- mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_filter.py +170 -0
- mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_filter_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_filter_sentiments_item.py +10 -0
- mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_mode.py +9 -0
- mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_schedule_type_0.py +90 -0
- mentio-0.2.1/mentio/models/list_alerts_response_200_data_item_stats.py +90 -0
- mentio-0.2.1/mentio/models/list_api_keys_response_200.py +79 -0
- mentio-0.2.1/mentio/models/list_api_keys_response_200_data_item.py +111 -0
- mentio-0.2.1/mentio/models/list_api_keys_response_200_data_item_scope.py +9 -0
- mentio-0.2.1/mentio/models/list_channel_deliveries_response_200.py +81 -0
- mentio-0.2.1/mentio/models/list_channel_deliveries_response_200_data_item.py +191 -0
- mentio-0.2.1/mentio/models/list_channel_deliveries_response_200_data_item_alert.py +69 -0
- mentio-0.2.1/mentio/models/list_channel_deliveries_response_200_data_item_kind.py +9 -0
- mentio-0.2.1/mentio/models/list_channel_deliveries_response_200_data_item_mention_type_0.py +78 -0
- mentio-0.2.1/mentio/models/list_channel_deliveries_response_200_data_item_status.py +10 -0
- mentio-0.2.1/mentio/models/list_channels_response_200.py +128 -0
- mentio-0.2.1/mentio/models/list_keywords_response_200.py +79 -0
- mentio-0.2.1/mentio/models/list_keywords_response_200_data_item.py +195 -0
- mentio-0.2.1/mentio/models/list_keywords_response_200_data_item_kind.py +10 -0
- mentio-0.2.1/mentio/models/list_keywords_response_200_data_item_platforms_type_0_item.py +17 -0
- mentio-0.2.1/mentio/models/list_keywords_response_200_data_item_polling_item.py +88 -0
- mentio-0.2.1/mentio/models/list_keywords_response_200_data_item_polling_item_platform.py +17 -0
- mentio-0.2.1/mentio/models/list_keywords_response_200_data_item_stats.py +92 -0
- mentio-0.2.1/mentio/models/list_people_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/list_people_never_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/list_people_platform.py +17 -0
- mentio-0.2.1/mentio/models/list_people_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/list_people_response_200.py +87 -0
- mentio-0.2.1/mentio/models/list_people_response_200_data_item.py +243 -0
- mentio-0.2.1/mentio/models/list_people_response_200_data_item_accounts_item.py +116 -0
- mentio-0.2.1/mentio/models/list_people_response_200_data_item_accounts_item_platform.py +17 -0
- mentio-0.2.1/mentio/models/list_people_response_200_data_item_annotations.py +78 -0
- mentio-0.2.1/mentio/models/list_people_response_200_data_item_platform.py +17 -0
- mentio-0.2.1/mentio/models/list_people_response_200_data_item_profile_type_0.py +162 -0
- mentio-0.2.1/mentio/models/list_people_response_200_data_item_profile_type_0_links_item.py +69 -0
- mentio-0.2.1/mentio/models/list_people_response_200_data_item_reach.py +97 -0
- mentio-0.2.1/mentio/models/list_people_response_200_data_item_stats.py +106 -0
- mentio-0.2.1/mentio/models/list_people_response_200_data_item_stats_sentiment.py +77 -0
- mentio-0.2.1/mentio/models/list_people_sort.py +11 -0
- mentio-0.2.1/mentio/models/list_segments_response_200.py +103 -0
- mentio-0.2.1/mentio/models/list_segments_response_200_data_item.py +119 -0
- mentio-0.2.1/mentio/models/list_segments_response_200_data_item_filter.py +223 -0
- mentio-0.2.1/mentio/models/list_segments_response_200_data_item_filter_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/list_segments_response_200_data_item_filter_never_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/list_segments_response_200_data_item_filter_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/list_segments_response_200_presets_item.py +95 -0
- mentio-0.2.1/mentio/models/list_segments_response_200_presets_item_filter.py +225 -0
- mentio-0.2.1/mentio/models/list_segments_response_200_presets_item_filter_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/list_segments_response_200_presets_item_filter_never_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/list_segments_response_200_presets_item_filter_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/mention.py +203 -0
- mentio-0.2.1/mentio/models/mention_author_type_0.py +148 -0
- mentio-0.2.1/mentio/models/mention_classification_type_0.py +111 -0
- mentio-0.2.1/mentio/models/mention_classification_type_0_sentiment.py +10 -0
- mentio-0.2.1/mentio/models/mention_keyword.py +70 -0
- mentio-0.2.1/mentio/models/mention_post.py +125 -0
- mentio-0.2.1/mentio/models/mention_post_platform.py +17 -0
- mentio-0.2.1/mentio/models/mention_post_reply_to_type_0.py +97 -0
- mentio-0.2.1/mentio/models/mention_status.py +10 -0
- mentio-0.2.1/mentio/models/mention_triage.py +120 -0
- mentio-0.2.1/mentio/models/mention_triage_assignee_type_0.py +90 -0
- mentio-0.2.1/mentio/models/merge_people_body.py +61 -0
- mentio-0.2.1/mentio/models/person.py +209 -0
- mentio-0.2.1/mentio/models/person_accounts_item.py +114 -0
- mentio-0.2.1/mentio/models/person_accounts_item_platform.py +17 -0
- mentio-0.2.1/mentio/models/person_annotations.py +78 -0
- mentio-0.2.1/mentio/models/person_platform.py +17 -0
- mentio-0.2.1/mentio/models/person_profile_type_0.py +157 -0
- mentio-0.2.1/mentio/models/person_profile_type_0_links_item.py +69 -0
- mentio-0.2.1/mentio/models/person_reach.py +97 -0
- mentio-0.2.1/mentio/models/person_stats.py +102 -0
- mentio-0.2.1/mentio/models/person_stats_sentiment.py +77 -0
- mentio-0.2.1/mentio/models/run_alert_digest_response_200.py +109 -0
- mentio-0.2.1/mentio/models/run_alert_digest_response_200_outcomes_item.py +83 -0
- mentio-0.2.1/mentio/models/run_alert_digest_response_200_skipped.py +9 -0
- mentio-0.2.1/mentio/models/search_mentions_platform.py +17 -0
- mentio-0.2.1/mentio/models/search_mentions_response_200.py +89 -0
- mentio-0.2.1/mentio/models/search_mentions_sentiment.py +10 -0
- mentio-0.2.1/mentio/models/search_mentions_sort.py +9 -0
- mentio-0.2.1/mentio/models/search_mentions_status.py +10 -0
- mentio-0.2.1/mentio/models/segment.py +115 -0
- mentio-0.2.1/mentio/models/segment_filter.py +201 -0
- mentio-0.2.1/mentio/models/segment_filter_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/segment_filter_never_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/segment_filter_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/share_of_voice.py +87 -0
- mentio-0.2.1/mentio/models/share_of_voice_data_item.py +152 -0
- mentio-0.2.1/mentio/models/share_of_voice_data_item_keyword.py +82 -0
- mentio-0.2.1/mentio/models/share_of_voice_data_item_keyword_kind.py +10 -0
- mentio-0.2.1/mentio/models/share_of_voice_data_item_previous_type_0.py +62 -0
- mentio-0.2.1/mentio/models/share_of_voice_window.py +86 -0
- mentio-0.2.1/mentio/models/slack_channel.py +111 -0
- mentio-0.2.1/mentio/models/slack_channel_config.py +69 -0
- mentio-0.2.1/mentio/models/slack_channel_kind.py +8 -0
- mentio-0.2.1/mentio/models/slack_channel_stats.py +100 -0
- mentio-0.2.1/mentio/models/slack_channel_stats_last_7d.py +70 -0
- mentio-0.2.1/mentio/models/telegram_channel.py +115 -0
- mentio-0.2.1/mentio/models/telegram_channel_config.py +71 -0
- mentio-0.2.1/mentio/models/telegram_channel_config_chat_type.py +11 -0
- mentio-0.2.1/mentio/models/telegram_channel_kind.py +8 -0
- mentio-0.2.1/mentio/models/telegram_channel_stats.py +100 -0
- mentio-0.2.1/mentio/models/telegram_channel_stats_last_7d.py +70 -0
- mentio-0.2.1/mentio/models/test_alert_response_200.py +81 -0
- mentio-0.2.1/mentio/models/test_alert_response_200_outcomes_item.py +83 -0
- mentio-0.2.1/mentio/models/test_channel_response_200.py +81 -0
- mentio-0.2.1/mentio/models/test_channel_response_200_outcomes_item.py +83 -0
- mentio-0.2.1/mentio/models/update_alert_body.py +183 -0
- mentio-0.2.1/mentio/models/update_alert_body_filter.py +165 -0
- mentio-0.2.1/mentio/models/update_alert_body_filter_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/update_alert_body_filter_sentiments_item.py +10 -0
- mentio-0.2.1/mentio/models/update_alert_body_mode.py +9 -0
- mentio-0.2.1/mentio/models/update_alert_body_schedule_type_0.py +89 -0
- mentio-0.2.1/mentio/models/update_channel_body.py +95 -0
- mentio-0.2.1/mentio/models/update_channel_body_headers.py +47 -0
- mentio-0.2.1/mentio/models/update_company_body.py +115 -0
- mentio-0.2.1/mentio/models/update_company_body_accounts.py +93 -0
- mentio-0.2.1/mentio/models/update_keyword_body.py +109 -0
- mentio-0.2.1/mentio/models/update_keyword_body_platforms_type_0_item.py +17 -0
- mentio-0.2.1/mentio/models/update_mention_body.py +128 -0
- mentio-0.2.1/mentio/models/update_mention_body_status.py +10 -0
- mentio-0.2.1/mentio/models/update_person_body.py +82 -0
- mentio-0.2.1/mentio/models/update_segment_body.py +95 -0
- mentio-0.2.1/mentio/models/update_segment_body_filter.py +214 -0
- mentio-0.2.1/mentio/models/update_segment_body_filter_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/update_segment_body_filter_never_keyword_kinds_item.py +10 -0
- mentio-0.2.1/mentio/models/update_segment_body_filter_platforms_item.py +17 -0
- mentio-0.2.1/mentio/models/webhook_channel.py +113 -0
- mentio-0.2.1/mentio/models/webhook_channel_config.py +89 -0
- mentio-0.2.1/mentio/models/webhook_channel_config_headers.py +47 -0
- mentio-0.2.1/mentio/models/webhook_channel_kind.py +8 -0
- mentio-0.2.1/mentio/models/webhook_channel_stats.py +100 -0
- mentio-0.2.1/mentio/models/webhook_channel_stats_last_7d.py +70 -0
- mentio-0.2.1/mentio/types.py +54 -0
- mentio-0.2.1/node_modules/tsx/README.md +32 -0
- mentio-0.2.1/node_modules/typescript/README.md +50 -0
- mentio-0.2.1/pyproject.toml +45 -0
mentio-0.2.1/.gitignore
ADDED
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
|
+
)
|