What is {{ __tool_name }}?
This is an instance of the 4CAT Capture and Analysis Toolkit, a software suite that can capture data
from a variety of online sources, and analyze the data through analytical processors.
4CAT is developed by OILab and the Digital Methods Initiative at the University of Amsterdam.
For more information, take a look at the GitHub repository .
News and updates
{% if news %}
{% for item in news %}
{{ item.time }}
{{ item.text|markdown|safe }}
{% endfor %}
{% else %}
You can add news for your 4CAT instance in news.json
in the 4CAT root folder.
{% endif %}
Available data sources
The following data sources and boards are currently available for analysis:
{% if stats %}
{% for datasource in datasources %}{% if datasource != "overall" %}
{{ stats[datasource]["name"] if "name" in stats[datasource] else datasource|capitalize }}
{% if "boards" in datasources[datasource] and datasources[datasource]["boards"] != "*" and datasources[datasource]["boards"] != ["*"] %}
{% for board in datasources[datasource]["boards"]|sort %}
{{ board }}
{% if datasource in stats and board in stats[datasource]["boards"] %}
({{ stats[datasource]["boards"][board]["posts"]|numberify }} posts
from {{ stats[datasource]["boards"][board]["first"]|datetime('%d %b %Y')|safe }} to {{ stats[datasource]["boards"][board]["last"]|datetime('%d %b %Y'
)
}})
{% endif %}
{% endfor %}
{% endif %}
{% endif %}{% endfor %}
{% else %}
{% for datasource in datasources %}
{{ datasources[datasource].name }}
{% endfor %}
{% endif %}
{% if importables %}
The following datasource{% if importables|length != 1 %}s{% endif %} can be captured via Zeeschuimer :
{% for datasource in importables %}
{{ importables[datasource].name }}
{% endfor %}
{% endif %}
{% endblock %}