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