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

{% block title %} Get Topics of Interest for a Profile {% endblock %}

{% endblock %} {% block content %}

Find out what topics a user Tweets the most about.

{{ form.hidden_tag() }}

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



Once submitted, please allow ~10 seconds 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: {{ top_emojis }}

Note: The emojis returned above were used at least 5 times in this user's Tweets and 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 %}

No data to analyze.

{% else %}
{% if tweet_count == None %}

Total number of Tweets analyzed: 0

{% else %}

Total number of Tweets analyzed: {{ tweet_count }}


Download CSV


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


Top annotation domains:

{% endif %} {% if entity == None or entity == {} %} {% else %}

Top annotation entities:

{% endif %} {% if person == None or person == {} %} {% else %}

Top people:

{% endif %} {% if place == None or place == {} %} {% else %}

Top places:

{% endif %} {% if product == None or product == {} %} {% else %}

Top products:

{% endif %} {% if organization == None or organization == {} %} {% else %}

Top organizations:

{% endif %} {% if other == None or other == {} %} {% else %}

Other frequent topics:

{% endif %}
This application analyzes up to 300 of the user's most recent Tweets.
Only annotations and entities that are present in 2+ Tweets are displayed.
In addition, only entities with a probability score >= 0.5 are displayed.
Read more about Tweet Annotations in the Twitter developer docs.
{% endif %} {% endblock %}