File tree Expand file tree Collapse file tree 19 files changed +641
-391
lines changed
Expand file tree Collapse file tree 19 files changed +641
-391
lines changed Original file line number Diff line number Diff line change @@ -76,8 +76,8 @@ instance/
7676.scrapy
7777
7878# Sphinx documentation
79- docs /sphinx / _build /
80- docs /sphinx / content /api
79+ docs /_build /
80+ docs /content /generated /
8181
8282# PyBuilder
8383target /
Original file line number Diff line number Diff line change 1+ code .literal {
2+ color : # 404040 !important ;
3+ background-color : # fbfbfb !important ;
4+ }
Original file line number Diff line number Diff line change 1+ {{ objname | escape | underline}}
2+
3+ .. currentmodule :: {{ module }}
4+
5+ .. auto{{ objtype }}:: {{ objname }}
Original file line number Diff line number Diff line change 1+ {{ fullname | escape | underline}}
2+
3+ .. currentmodule :: {{ module }}
4+
5+ .. auto{{ objtype }}:: {{ objname }}
Original file line number Diff line number Diff line change 1+ {{ objname | escape | underline}}
2+
3+ .. currentmodule :: {{ module }}
4+
5+ .. autoclass :: {{ objname }}
6+
7+ {% block methods %}
8+ .. automethod :: __init__
9+
10+ {% if methods %}
11+ .. rubric :: {{ _('Methods') }}
12+
13+ .. autosummary ::
14+ :toctree:
15+ :nosignatures:
16+ {% for item in methods %}
17+ ~{{ name }}.{{ item }}
18+ {%- endfor %}
19+ {% endif %}
20+ {% endblock %}
21+
22+ {% block attributes %}
23+ {% if attributes %}
24+ .. rubric :: {{ _('Attributes') }}
25+
26+ .. autosummary ::
27+ :toctree:
28+ :nosignatures:
29+ {% for item in attributes %}
30+ ~{{ name }}.{{ item }}
31+ {%- endfor %}
32+ {% endif %}
33+ {% endblock %}
Original file line number Diff line number Diff line change 1+ {{ objname | escape | underline}}
2+
3+ .. currentmodule :: {{ module }}
4+
5+ .. auto{{ objtype }}:: {{ objname }}
Original file line number Diff line number Diff line change 1+ {{ objname | escape | underline}}
2+
3+ .. currentmodule :: {{ module }}
4+
5+ .. auto{{ objtype }}:: {{ objname }}
Original file line number Diff line number Diff line change 1+ {{ fullname | escape | underline}}
2+
3+ .. automodule :: {{ fullname }}
4+
5+ {% block attributes %}
6+ {% if attributes %}
7+ .. rubric :: {{ _('Module Attributes') }}
8+
9+ .. autosummary ::
10+ :toctree:
11+ :nosignatures:
12+ {% for item in attributes %}
13+ {{ item }}
14+ {%- endfor %}
15+ {% endif %}
16+ {% endblock %}
17+
18+ {% block functions %}
19+ {% if functions %}
20+ .. rubric :: {{ _('Functions') }}
21+
22+ .. autosummary ::
23+ :toctree:
24+ :nosignatures:
25+ {% for item in functions %}
26+ {{ item }}
27+ {%- endfor %}
28+ {% endif %}
29+ {% endblock %}
30+
31+ {% block classes %}
32+ {% if classes %}
33+ .. rubric :: {{ _('Classes') }}
34+
35+ .. autosummary ::
36+ :toctree:
37+ {% for item in classes %}
38+ {{ item }}
39+ {%- endfor %}
40+ {% endif %}
41+ {% endblock %}
42+
43+ {% block exceptions %}
44+ {% if exceptions %}
45+ .. rubric :: {{ _('Exceptions') }}
46+
47+ .. autosummary ::
48+ :toctree:
49+ {% for item in exceptions %}
50+ {{ item }}
51+ {%- endfor %}
52+ {% endif %}
53+ {% endblock %}
54+
55+ {% block modules %}
56+ {% if modules %}
57+ .. rubric :: Modules
58+
59+ .. autosummary ::
60+ :toctree:
61+ :recursive:
62+ {% for item in modules %}
63+ {{ item }}
64+ {%- endfor %}
65+ {% endif %}
66+ {% endblock %}
You can’t perform that action at this time.
0 commit comments