1
0
forked from IPKM/nmreval

39 lines
916 B
ReStructuredText
Raw Normal View History

{{ fullname | escape | underline}}
2022-03-22 20:07:59 +01:00
.. currentmodule:: {{ module }}
.. autoclass:: {{ objname }}
2022-10-20 17:23:15 +02:00
:exclude-members: {% for item in methods %}{%- if not item.startswith('_') or item in ['__call__'] %}{{ item }}, {% endif %}{%- endfor %}
2022-03-22 20:07:59 +01:00
2022-10-20 17:23:15 +02:00
{%- block methods %}
{% if methods %}
2022-10-20 17:23:15 +02:00
.. rubric:: Methods
.. autosummary::
:toctree:
2022-03-22 20:07:59 +01:00
{% for item in methods %}
2022-10-20 17:23:15 +02:00
{%- if not item.startswith('_') or item in ['__call__'] %} ~{{ name }}.{{ item }}
{% endif %}
2022-10-20 17:23:15 +02:00
{%- endfor %}
{%- endif %}
{%- endblock %}
2022-10-20 17:23:15 +02:00
{%- block attributes %}
{%- if attributes %}
.. rubric:: Properties
.. autosummary::
2022-10-20 17:23:15 +02:00
:toctree:
{% for item in attributes %}
2022-10-20 17:23:15 +02:00
{%- if not item.startswith('_') or item in ['__call__'] %} ~{{ name }}.{{ item }}
{% endif %}
2022-10-20 17:23:15 +02:00
{%- endfor %}
{%- endif %}
{%- endblock %}
.. _sphx_glr_backref_{{ fullname }}:
.. minigallery:: {{ objname }}
:add-heading: