python ui-me

{{ title }}

{{ description }}

Select Theme

{% for group in groups.keys() %} {% endfor %}
{% for group, funcs in groups.items() %}
{% for func in funcs %}

{{ func.title or func.name }}

{% if func.description %}

{{ func.description }}

{% endif %}
{% for param in func.parameters %} {% set param_type = param.type %}
{% if param_type and param_type != 'str' %} {{ param_type }} {% endif %}
{% if param_type in ('int', 'float') %} {% elif param_type == 'complex' %} {% elif param_type == 'bool' %} {% elif param_type == 'dict' %} {% elif not param_type %} {% elif param_type in ('List[str]', 'list', 'set', 'tuple', 'List[int]', 'List[float]', 'List[list]', 'List[complex]') %} {% else %} {% endif %}
{% endfor %}
{% endfor %}
{% endfor %}