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

{% block title %} Get Resonance Metrics for a Topic of Interest {% endblock %}

{% endblock %} {% block content %}

Find out how a given topic resonates with Twitter users in the UK.

{{ form.hidden_tag() }}

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



Once submitted, please allow ~1 minute for data to be fetched and returned.
{% endblock %} {% block results %} {% if keyword == None %}

No topic to analyze.


For the purpose of this demo, Tweets are only returned if they are in English and if they were sent from the UK.
Replies, retweets and promoted Tweets are also excluded.
{% elif keyword == 0 %}

No Tweets to analyze.


For the purpose of this demo, Tweets are only returned if they are in English and if they were sent from the UK.
Replies, retweets and promoted Tweets are also excluded.
{% elif keyword == 1 %}

An error occurred: {{ status_code }} .


For the purpose of this demo, Tweets are only returned if they are in English and if they were sent from the UK.
Replies, retweets and promoted Tweets are also excluded.
{% else %}

{{ tweet_count }} Tweets were sent from the UK in the past 7 days about the topic "{{ keyword }}".

Aggregate retweet count: {{ retweet_count }}

Aggregate like count: {{ like_count }}

Aggregate quote count: {{ quote_count }}

Aggregate reply count: {{ reply_count }}

Example Tweets:

{% for id in tweet_ids %} {% endfor %}
For the purpose of this demo, Tweets are only returned if they are in English and if they were sent from the UK.
Replies, retweets and promoted Tweets are also excluded.
Aggreate counts are from across all original Tweets returned by the query.
{% endif %} {% endblock %}