{% extends 'base.html' %} {% block header %}

{% block title %} Get Top Interest Topics for a Profile's Followers {% endblock %}

{% endblock %} {% block content %}

What topics do your followers care about the most?

{{ form.hidden_tag() }}

{{ form.username.label }}
{{ form.username(size=32) }}



Once submitted, please allow ~1 minute for data to be fetched and returned.
{% endblock %} {% block emojis %} {% if top_emojis == 0 %}

{% elif top_emojis == 1 %}

No emojis to analyze.

{% else %}

Top emojis used by this profile's followers: {{ top_emojis }}

Note: The emojis returned above were present at least 3 times in Tweets from this profile's followers. They are sorted from most frequently to least frequently used.
{% endif %} {% endblock %} {% block results %} {% if annotations_data == 0 %}

Invalid username.

{% elif annotations_data == 1 %}

Oops! Something went wrong, response code: {{ response_code }} Try again later.

{% elif tweet_count == 0 %}

Total number of follower Tweets analyzed: 0


This application takes a (deterministic) random sample of the user's follower base and analyzes the 10 most recent Tweets for 50 followers.
{% else %}
{% if tweet_count == 0 %}

Total number of follower Tweets analyzed: 0


This application takes a (deterministic) random sample of the user's follower base and analyzes the 10 most recent Tweets for 50 followers.
{% else %} {% if follower_count > 6500 %}

Total follower count: 6500+

Note: By default, this demo app does not return more than ~7000 followers.

Total number of follower Tweets analyzed: {{ tweet_count }}


Download CSV


{% else %}

Total follower count: {{ follower_count }}

Total number of follower Tweets analyzed: {{ tweet_count }}


Download CSV


{% endif %} {% endif %} {% if domain == {} %} {% else %}

Top annotation domains:

    {% for k, v in domain.items() %}
  • {{ k }} ({{ v }})
  • {% endfor %}
{% endif %} {% if entity == {} %} {% else %}

Top annotation entities:

    {% for k, v in entity.items() %}
  • {{ k }} ({{ v }})
  • {% endfor %}
{% endif %} {% if person == {} %} {% else %}

Top people:

    {% for k, v in person.items() %}
  • {{ k }} ({{ v }})
  • {% endfor %}
{% endif %} {% if place == {} %} {% else %}

Top places:

    {% for k, v in place.items() %}
  • {{ k }} ({{ v }})
  • {% endfor %}
{% endif %} {% if product == {} %} {% else %}

Top products:

    {% for k, v in product.items() %}
  • {{ k }} ({{ v }})
  • {% endfor %}
{% endif %} {% if organization == {} %} {% else %}

Top organizations:

    {% for k, v in organization.items() %}
  • {{ k }} ({{ v }})
  • {% endfor %}
{% endif %} {% if other == {} %} {% else %}

Other frequent topics:

    {% for k, v in other.items() %}
  • {{ k }} ({{ v }})
  • {% endfor %}
{% endif %}
This application takes a (deterministic) random sample of the user's follower base and analyzes the 10 most recent Tweets for 50 followers.
Read more about Tweet Annotations in our documentation.
{% endif %} {% endblock %}