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

{% block title %} Get Profiles for a Given Topic {% endblock %}

{% endblock %} {% block content %}

Find users who care about a topic of interest.

Select an annotation domain and annotation entity below:

{{ domains_form.hidden_tag() }}

1. First select the domain:

{{domains_form.select.label}} {{domains_form.select}}



{{ entities_form.hidden_tag() }}

2. Then select an entity within that domain:

{{entities_form.select.label}} {{entities_form.select}}



Note: the lists of domains and entities available above are not exhaustive and have been compiled for demonstrative purposes only.

Once submitted, please allow ~30 seconds for data to be fetched and returned.
{% endblock %} {% block results %} {% if users == [] %}

No data to analyze.


For the purpose of this demo, this application only returns verified profiles based on a sample of non-promoted Tweets in English from the past 7 days.
{% elif users == 0 %}

Something went wrong. Try again later.


For the purpose of this demo, this application only returns verified profiles based on a sample of non-promoted Tweets in English from the past 7 days.
{% elif users == 1 %}

No data to analyze. Try another topic.


For the purpose of this demo, this application only returns verified profiles based on a sample of non-promoted Tweets in English from the past 7 days.
{% else %}
{% for user in users %} {% endfor %}
For the purpose of this demo, this application only returns verified profiles based on a sample of non-promoted Tweets in English from the past 7 days.
{% endif %} {% endblock %}