{% extends 'base.html' %} {% block title %} Accueil {% endblock %} {% block content %}

Data analysis applications

Dash applications

{% for route, app in router.items() %}
{{ app.name }}

{{ app.doc }}

{% endfor %}

API Endpoints

{% for name, endpoint in endpoints.items() %}
{{ name }} /api/{{ name }}
Documentation
{% if endpoint.docstring %}

{{ endpoint.docstring }}

{% else %}

Not documented

{% endif %}
Parameters
    {% for parameter in endpoint.parameters %}
  • {{ parameter.name }} {% if parameter.get("type") %} {{ parameter.type }} {% endif %}
  • {% endfor %}
{% if endpoint.get("return_type") %}
Returns
{{ endpoint.return_type }} {% endif %}
{% endfor %}
{% endblock %}