|
| 1 | +{{ fullname | escape | underline }} |
| 2 | + |
| 3 | +.. rubric:: Description |
| 4 | + |
| 5 | +.. automodule:: {{ fullname }} |
| 6 | + |
| 7 | + {% block functions %} |
| 8 | + {% if functions %} |
| 9 | + .. rubric:: Functions |
| 10 | + |
| 11 | + .. autosummary:: |
| 12 | + :toctree: |
| 13 | + {% for item in functions %} |
| 14 | + {{ item }} |
| 15 | + {%- endfor %} |
| 16 | + {% endif %} |
| 17 | + {% endblock %} |
| 18 | + |
| 19 | + {% block classes %} |
| 20 | + {% if classes %} |
| 21 | + .. rubric:: Classes |
| 22 | + |
| 23 | + .. autosummary:: |
| 24 | + :toctree: |
| 25 | + :template: autosummary/class.rst |
| 26 | + {% for item in classes %} |
| 27 | + {{ item }} |
| 28 | + {%- endfor %} |
| 29 | + {% endif %} |
| 30 | + {% endblock %} |
| 31 | + |
| 32 | + {% block exceptions %} |
| 33 | + {% if exceptions %} |
| 34 | + .. rubric:: Exceptions |
| 35 | + |
| 36 | + .. autosummary:: |
| 37 | + :toctree: |
| 38 | + :template: autosummary/class.rst |
| 39 | + {% for item in exceptions %} |
| 40 | + {{ item }} |
| 41 | + {%- endfor %} |
| 42 | + {% endif %} |
| 43 | + {% endblock %} |
| 44 | + |
| 45 | +{% set pasteur_attr = ["pasteur.attribute","pasteur.hierarchy","pasteur.table"] %} |
| 46 | +{% set pasteur_modules = ["pasteur.module", "pasteur.dataset","pasteur.view","pasteur.transform","pasteur.encode","pasteur.synth","pasteur.metric"] %} |
| 47 | +{% set pasteur_misc = ["pasteur.kedro","pasteur.utils","pasteur.extras","pasteur.cli"] %} |
| 48 | + |
| 49 | +.. rubric:: Module-System Modules |
| 50 | + |
| 51 | +.. autosummary:: |
| 52 | + :toctree: |
| 53 | + :template: autosummary/module.rst |
| 54 | + :recursive: |
| 55 | +{% for item in pasteur_modules %} |
| 56 | + {{ item }} |
| 57 | +{%- endfor %} |
| 58 | + |
| 59 | +.. rubric:: Transformation-Related Modules |
| 60 | + |
| 61 | +.. autosummary:: |
| 62 | + :toctree: |
| 63 | + :template: autosummary/module.rst |
| 64 | + :recursive: |
| 65 | +{% for item in pasteur_attr %} |
| 66 | + {{ item }} |
| 67 | +{%- endfor %} |
| 68 | + |
| 69 | +{% block modules %} |
| 70 | +{% if modules|length > pasteur_modules|length + pasteur_misc|length + pasteur_attr|length %} |
| 71 | +.. rubric:: Other Modules |
| 72 | + |
| 73 | +.. autosummary:: |
| 74 | + :toctree: |
| 75 | + :template: autosummary/module.rst |
| 76 | + :recursive: |
| 77 | +{% for item in modules %} |
| 78 | + {% if item not in pasteur_modules and item not in pasteur_attr and item not in pasteur_misc %} |
| 79 | + {{ item }} |
| 80 | + {% endif %} |
| 81 | +{%- endfor %} |
| 82 | +{% endif %} |
| 83 | +{% endblock %} |
| 84 | + |
| 85 | +.. rubric:: Miscellaneous Modules |
| 86 | + |
| 87 | +.. autosummary:: |
| 88 | + :toctree: |
| 89 | + :template: autosummary/module.rst |
| 90 | + :recursive: |
| 91 | +{% for item in pasteur_misc %} |
| 92 | + {{ item }} |
| 93 | +{%- endfor %} |
0 commit comments