28 lines
464 B
ReStructuredText
28 lines
464 B
ReStructuredText
{{ objname | escape | underline}}
|
|
|
|
Import as {{ fullname }}
|
|
|
|
.. currentmodule:: {{ module }}
|
|
|
|
.. autoclass:: {{ objname }}
|
|
|
|
{% block methods %}
|
|
{% if methods %}
|
|
.. rubric:: {{ _('Methods') }}
|
|
|
|
.. autosummary::
|
|
:toctree:
|
|
|
|
{% for item in methods %}
|
|
{%- if not item.startswith('_') %}
|
|
~{{ name }}.{{ item }}
|
|
{%- endif %}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
.. minigallery:: {{module}}.{{objname}}
|
|
:add-heading:
|
|
|
|
|