Back to Networkx

Class

doc/_templates/autosummary/class.rst

latest666 B
Original Source

{{ fullname | escape | underline}}

.. currentmodule:: {{ module }}

.. autoclass:: {{ objname }}

{% block methods %} .. automethod:: init

{% if methods %} .. rubric:: {{ _('Methods') }}

.. autosummary:: :toctree: generated/

{% for item in methods %} {% if item != "init" %} ~{{ name }}.{{ item }} {% endif %} {%- endfor %} {% endif %} {% endblock %}

{% block attributes %} {% if attributes %} .. rubric:: {{ _('Attributes') }}

.. autosummary:: :toctree: generated/

{% for item in attributes %} ~{{ name }}.{{ item }} {%- endfor %} {% endif %} {% endblock %}