Synopsis
{% for signature in endpoints %}
{% if is_section and loop.first %}{% endif %}
- {{signature}}
{% if is_section and loop.first %}{% endif %}
{% endfor %}
{% if description %}
Description
{% for p in description %}
{{ p }}
{% endfor %}
{% endif %}
{% if is_callable %}{% if args %}
Inputs
{% for argname, desc in args %}
- {{ argname }}
- {{ desc|indent(2, false) }}
{% else %}
(None)
{% endfor %}
{% endif %}
Options
{% for argname, desc in kwargs %}
- {{ argname }}
- {{ desc|indent(2, false) }}
{% endfor %}
Detail
Put "help" in the query string ("?help") for more help about a
particular endpoint.
{% endif %}