mkdocstrings-python 1.18.2__tar.gz → 2.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (401) hide show
  1. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/CHANGELOG.md +26 -3
  2. mkdocstrings_python-2.0.0/PKG-INFO +179 -0
  3. mkdocstrings_python-2.0.0/README.md +142 -0
  4. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/config/pytest.ini +2 -0
  5. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/usage/configuration/docstrings.md +0 -6
  6. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/usage/configuration/general.md +137 -6
  7. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/usage/configuration/headings.md +0 -6
  8. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/usage/configuration/members.md +1 -6
  9. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/usage/configuration/signatures.md +5 -9
  10. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/usage/index.md +104 -0
  11. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/duties.py +20 -64
  12. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/mkdocs.yml +4 -10
  13. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/pyproject.toml +2 -3
  14. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/scripts/get_version.py +6 -1
  15. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/scripts/make.py +48 -13
  16. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/__init__.py +0 -4
  17. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/_internal/config.py +20 -48
  18. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/_internal/debug.py +1 -1
  19. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/_internal/handler.py +26 -45
  20. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/_internal/rendering.py +50 -113
  21. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html.jinja +2 -4
  22. mkdocstrings_python-2.0.0/src/mkdocstrings_handlers/python/templates/material/_base/backlinks.html.jinja +66 -0
  23. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/class.html.jinja +58 -18
  24. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja +4 -8
  25. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja +1 -2
  26. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html.jinja +1 -2
  27. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja +1 -2
  28. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja +1 -2
  29. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html.jinja +4 -8
  30. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html.jinja +7 -14
  31. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html.jinja +4 -8
  32. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html.jinja +5 -10
  33. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html.jinja +5 -10
  34. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/type_aliases.html.jinja +1 -1
  35. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/type_parameters.html.jinja +9 -9
  36. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html.jinja +4 -8
  37. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html.jinja +5 -10
  38. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html.jinja +15 -30
  39. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja +3 -0
  40. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/function.html.jinja +6 -10
  41. {mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs → mkdocstrings_python-2.0.0/src/mkdocstrings_handlers/python/templates/material}/_base/language.html.jinja +3 -6
  42. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/module.html.jinja +4 -8
  43. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/signature.html.jinja +3 -6
  44. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/attributes.html.jinja +1 -2
  45. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/classes.html.jinja +1 -2
  46. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/functions.html.jinja +1 -2
  47. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/modules.html.jinja +1 -2
  48. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/type_aliases.html.jinja +1 -2
  49. mkdocstrings_python-2.0.0/src/mkdocstrings_handlers/python/templates/material/_base/summary.html.jinja +30 -0
  50. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/type_alias.html.jinja +3 -6
  51. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/type_parameters.html.jinja +2 -4
  52. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/style.css +24 -0
  53. mkdocstrings_python-2.0.0/src/mkdocstrings_handlers/python/templates/readthedocs/_base/class.html +11 -0
  54. mkdocstrings_python-2.0.0/src/mkdocstrings_handlers/python/templates/readthedocs/_base/class.html.jinja +251 -0
  55. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html.jinja +2 -4
  56. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html.jinja +2 -4
  57. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html.jinja +3 -6
  58. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html.jinja +2 -4
  59. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html.jinja +2 -4
  60. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html.jinja +2 -4
  61. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html.jinja +2 -4
  62. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html.jinja +2 -4
  63. {mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material → mkdocstrings_python-2.0.0/src/mkdocstrings_handlers/python/templates/readthedocs}/_base/language.html.jinja +3 -6
  64. {mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material → mkdocstrings_python-2.0.0/src/mkdocstrings_handlers/python/templates/readthedocs}/class.html +0 -1
  65. mkdocstrings_python-2.0.0/src/mkdocstrings_handlers/python/templates/readthedocs/class.html.jinja +1 -0
  66. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/test_api.py +4 -6
  67. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/test_handler.py +2 -0
  68. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/test_themes.py +3 -7
  69. mkdocstrings_python-1.18.2/PKG-INFO +0 -117
  70. mkdocstrings_python-1.18.2/README.md +0 -79
  71. mkdocstrings_python-1.18.2/docs/.overrides/main.html +0 -20
  72. mkdocstrings_python-1.18.2/docs/css/insiders.css +0 -124
  73. mkdocstrings_python-1.18.2/docs/insiders/changelog.md +0 -94
  74. mkdocstrings_python-1.18.2/docs/insiders/goals.yml +0 -53
  75. mkdocstrings_python-1.18.2/docs/insiders/index.md +0 -161
  76. mkdocstrings_python-1.18.2/docs/insiders/installation.md +0 -67
  77. mkdocstrings_python-1.18.2/docs/js/insiders.js +0 -74
  78. mkdocstrings_python-1.18.2/scripts/insiders.py +0 -173
  79. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/config.py +0 -17
  80. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/handler.py +0 -17
  81. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/rendering.py +0 -17
  82. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html +0 -10
  83. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/backlinks.html.jinja +0 -17
  84. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/children.html +0 -10
  85. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/class.html +0 -10
  86. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html +0 -10
  87. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html +0 -10
  88. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html +0 -10
  89. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html +0 -10
  90. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html +0 -10
  91. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html +0 -10
  92. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html +0 -10
  93. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html +0 -10
  94. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html +0 -10
  95. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html +0 -10
  96. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html +0 -10
  97. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/type_aliases.html +0 -10
  98. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/type_parameters.html +0 -10
  99. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html +0 -10
  100. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html +0 -10
  101. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html +0 -10
  102. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/expression.html +0 -10
  103. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/function.html +0 -10
  104. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/labels.html +0 -10
  105. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/language.html +0 -10
  106. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/languages/en.html +0 -10
  107. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/languages/ja.html +0 -10
  108. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/languages/zh.html +0 -10
  109. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/module.html +0 -10
  110. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/signature.html +0 -10
  111. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/summary/attributes.html +0 -10
  112. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/summary/classes.html +0 -10
  113. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/summary/functions.html +0 -10
  114. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/summary/modules.html +0 -10
  115. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/summary/type_aliases.html +0 -10
  116. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/summary.html +0 -10
  117. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/summary.html.jinja +0 -35
  118. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/type_alias.html +0 -10
  119. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/_base/type_parameters.html +0 -10
  120. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/attribute.html +0 -2
  121. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/children.html +0 -2
  122. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/admonition.html +0 -2
  123. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/attributes.html +0 -2
  124. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/classes.html +0 -2
  125. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/examples.html +0 -2
  126. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/functions.html +0 -2
  127. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/modules.html +0 -2
  128. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/other_parameters.html +0 -2
  129. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/parameters.html +0 -2
  130. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/raises.html +0 -2
  131. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/receives.html +0 -2
  132. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/returns.html +0 -2
  133. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/warns.html +0 -2
  134. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring/yields.html +0 -2
  135. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/docstring.html +0 -2
  136. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/expression.html +0 -2
  137. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/function.html +0 -2
  138. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/labels.html +0 -2
  139. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/language.html +0 -2
  140. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/languages/en.html +0 -2
  141. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/languages/ja.html +0 -2
  142. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/languages/zh.html +0 -2
  143. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/module.html +0 -2
  144. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/signature.html +0 -2
  145. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/summary/attributes.html +0 -2
  146. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/summary/classes.html +0 -2
  147. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/summary/functions.html +0 -2
  148. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/summary/modules.html +0 -2
  149. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/material/summary.html +0 -2
  150. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html +0 -10
  151. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html +0 -10
  152. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html +0 -10
  153. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html +0 -10
  154. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html +0 -10
  155. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html +0 -10
  156. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html +0 -10
  157. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html +0 -10
  158. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/_base/language.html +0 -10
  159. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/en.html +0 -10
  160. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/ja.html +0 -10
  161. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/zh.html +0 -10
  162. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html +0 -2
  163. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html +0 -2
  164. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html +0 -2
  165. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/raises.html +0 -2
  166. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html +0 -2
  167. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html +0 -2
  168. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/warns.html +0 -2
  169. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html +0 -2
  170. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/language.html +0 -2
  171. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/languages/en.html +0 -2
  172. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html +0 -2
  173. mkdocstrings_python-1.18.2/src/mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html +0 -2
  174. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/CODE_OF_CONDUCT.md +0 -0
  175. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/CONTRIBUTING.md +0 -0
  176. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/LICENSE +0 -0
  177. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/config/black.toml +0 -0
  178. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/config/coverage.ini +0 -0
  179. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/config/git-changelog.toml +0 -0
  180. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/config/mypy.ini +0 -0
  181. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/config/ruff.toml +0 -0
  182. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/config/vscode/launch.json +0 -0
  183. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/config/vscode/settings.json +0 -0
  184. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/config/vscode/tasks.json +0 -0
  185. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/.glossary.md +0 -0
  186. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/.overrides/partials/comments.html +0 -0
  187. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/.overrides/partials/path-item.html +0 -0
  188. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/changelog.md +0 -0
  189. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/code_of_conduct.md +0 -0
  190. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/contributing.md +0 -0
  191. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/credits.md +0 -0
  192. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/css/material.css +0 -0
  193. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/css/mkdocstrings.css +0 -0
  194. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/index.md +0 -0
  195. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/js/feedback.js +0 -0
  196. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/license.md +0 -0
  197. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/logo.png +0 -0
  198. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/reference/api.md +0 -0
  199. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/snippets/package/__init__.py +0 -0
  200. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/snippets/package/generics.py +0 -0
  201. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/snippets/package/modern.py +0 -0
  202. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/usage/customization.md +0 -0
  203. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/usage/docstrings/google.md +0 -0
  204. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/usage/docstrings/numpy.md +0 -0
  205. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/usage/docstrings/sphinx.md +0 -0
  206. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/docs/usage/extensions.md +0 -0
  207. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/scripts/gen_credits.py +0 -0
  208. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/scripts/griffe_extensions.py +0 -0
  209. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/scripts/make +0 -0
  210. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/scripts/mkdocs_hooks.py +0 -0
  211. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/_internal/__init__.py +0 -0
  212. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/py.typed +0 -0
  213. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/children.html.jinja +0 -0
  214. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html.jinja +0 -0
  215. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/labels.html.jinja +0 -0
  216. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/en.html.jinja +0 -0
  217. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/ja.html.jinja +0 -0
  218. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/zh.html.jinja +0 -0
  219. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/attribute.html.jinja +0 -0
  220. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/backlinks.html.jinja +0 -0
  221. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/children.html.jinja +0 -0
  222. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/class.html.jinja +0 -0
  223. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/admonition.html.jinja +0 -0
  224. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/attributes.html.jinja +0 -0
  225. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/classes.html.jinja +0 -0
  226. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/examples.html.jinja +0 -0
  227. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/functions.html.jinja +0 -0
  228. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/modules.html.jinja +0 -0
  229. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/other_parameters.html.jinja +0 -0
  230. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/parameters.html.jinja +0 -0
  231. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/raises.html.jinja +0 -0
  232. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/receives.html.jinja +0 -0
  233. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/returns.html.jinja +0 -0
  234. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/type_aliases.html +0 -0
  235. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/type_aliases.html.jinja +0 -0
  236. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/type_parameters.html +0 -0
  237. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/type_parameters.html.jinja +0 -0
  238. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/warns.html.jinja +0 -0
  239. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring/yields.html.jinja +0 -0
  240. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/docstring.html.jinja +0 -0
  241. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/expression.html.jinja +0 -0
  242. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/function.html.jinja +0 -0
  243. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/labels.html.jinja +0 -0
  244. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/language.html.jinja +0 -0
  245. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/languages/en.html.jinja +0 -0
  246. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/languages/ja.html.jinja +0 -0
  247. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/languages/zh.html.jinja +0 -0
  248. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/module.html.jinja +0 -0
  249. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/signature.html.jinja +0 -0
  250. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/summary/attributes.html.jinja +0 -0
  251. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/summary/classes.html.jinja +0 -0
  252. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/summary/functions.html.jinja +0 -0
  253. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/summary/modules.html.jinja +0 -0
  254. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/summary/type_aliases.html +0 -0
  255. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/summary/type_aliases.html.jinja +0 -0
  256. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/summary.html.jinja +0 -0
  257. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/type_alias.html +0 -0
  258. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/type_alias.html.jinja +0 -0
  259. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/type_parameters.html +0 -0
  260. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/material/type_parameters.html.jinja +0 -0
  261. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/en.html.jinja +0 -0
  262. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/ja.html.jinja +0 -0
  263. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/zh.html.jinja +0 -0
  264. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html.jinja +0 -0
  265. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html.jinja +0 -0
  266. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html.jinja +0 -0
  267. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/raises.html.jinja +0 -0
  268. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html.jinja +0 -0
  269. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html.jinja +0 -0
  270. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/warns.html.jinja +0 -0
  271. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html.jinja +0 -0
  272. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/language.html.jinja +0 -0
  273. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/en.html.jinja +0 -0
  274. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html.jinja +0 -0
  275. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html.jinja +0 -0
  276. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/src/mkdocstrings_handlers/python/templates/readthedocs/style.css +0 -0
  277. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/__init__.py +0 -0
  278. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/conftest.py +0 -0
  279. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/helpers.py +0 -0
  280. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/headings/heading=,separate_signature=False.html +0 -0
  281. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/headings/heading=,separate_signature=True.html +0 -0
  282. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/headings/heading=Some heading,separate_signature=False.html +0 -0
  283. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/headings/heading=Some heading,separate_signature=True.html +0 -0
  284. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=('module_attribute',).html +0 -0
  285. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=().html +0 -0
  286. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=False.html +0 -0
  287. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=None.html +0 -0
  288. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=True.html +0 -0
  289. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=('module_attribute',).html +0 -0
  290. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=().html +0 -0
  291. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=False.html +0 -0
  292. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=None.html +0 -0
  293. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=True.html +0 -0
  294. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=('module_attribute',).html +0 -0
  295. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=().html +0 -0
  296. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=False.html +0 -0
  297. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=None.html +0 -0
  298. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=True.html +0 -0
  299. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=('module_attribute',).html +0 -0
  300. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=().html +0 -0
  301. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=False.html +0 -0
  302. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=None.html +0 -0
  303. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=True.html +0 -0
  304. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=('module_attribute',).html +0 -0
  305. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=().html +0 -0
  306. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=False.html +0 -0
  307. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=None.html +0 -0
  308. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=True.html +0 -0
  309. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=('module_attribute',).html +0 -0
  310. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=().html +0 -0
  311. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=False.html +0 -0
  312. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=None.html +0 -0
  313. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=True.html +0 -0
  314. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=('module_attribute',).html +0 -0
  315. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=().html +0 -0
  316. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=False.html +0 -0
  317. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=None.html +0 -0
  318. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=True.html +0 -0
  319. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=('module_attribute',).html +0 -0
  320. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=().html +0 -0
  321. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=False.html +0 -0
  322. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=None.html +0 -0
  323. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=True.html +0 -0
  324. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=('method1',),members=('module_attribute',).html +0 -0
  325. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=('method1',),members=().html +0 -0
  326. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=('method1',),members=False.html +0 -0
  327. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=('method1',),members=None.html +0 -0
  328. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=('method1',),members=True.html +0 -0
  329. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=(),members=('module_attribute',).html +0 -0
  330. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=(),members=().html +0 -0
  331. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=(),members=False.html +0 -0
  332. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=(),members=None.html +0 -0
  333. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=(),members=True.html +0 -0
  334. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=False,members=('module_attribute',).html +0 -0
  335. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=False,members=().html +0 -0
  336. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=False,members=False.html +0 -0
  337. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=False,members=None.html +0 -0
  338. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=False,members=True.html +0 -0
  339. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=True,members=('module_attribute',).html +0 -0
  340. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=True,members=().html +0 -0
  341. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=True,members=False.html +0 -0
  342. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=True,members=None.html +0 -0
  343. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=(),inherited_members=True,members=True.html +0 -0
  344. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=('method1',),members=('module_attribute',).html +0 -0
  345. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=('method1',),members=().html +0 -0
  346. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=('method1',),members=False.html +0 -0
  347. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=('method1',),members=None.html +0 -0
  348. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=('method1',),members=True.html +0 -0
  349. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=(),members=('module_attribute',).html +0 -0
  350. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=(),members=().html +0 -0
  351. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=(),members=False.html +0 -0
  352. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=(),members=None.html +0 -0
  353. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=(),members=True.html +0 -0
  354. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=False,members=('module_attribute',).html +0 -0
  355. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=False,members=().html +0 -0
  356. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=False,members=False.html +0 -0
  357. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=False,members=None.html +0 -0
  358. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=False,members=True.html +0 -0
  359. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=True,members=('module_attribute',).html +0 -0
  360. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=True,members=().html +0 -0
  361. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=True,members=False.html +0 -0
  362. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=True,members=None.html +0 -0
  363. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=None,inherited_members=True,members=True.html +0 -0
  364. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=('method1',),members=('module_attribute',).html +0 -0
  365. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=('method1',),members=().html +0 -0
  366. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=('method1',),members=False.html +0 -0
  367. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=('method1',),members=None.html +0 -0
  368. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=('method1',),members=True.html +0 -0
  369. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=(),members=('module_attribute',).html +0 -0
  370. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=(),members=().html +0 -0
  371. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=(),members=False.html +0 -0
  372. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=(),members=None.html +0 -0
  373. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=(),members=True.html +0 -0
  374. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=False,members=('module_attribute',).html +0 -0
  375. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=False,members=().html +0 -0
  376. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=False,members=False.html +0 -0
  377. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=False,members=None.html +0 -0
  378. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=False,members=True.html +0 -0
  379. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=True,members=('module_attribute',).html +0 -0
  380. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=True,members=().html +0 -0
  381. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=True,members=False.html +0 -0
  382. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=True,members=None.html +0 -0
  383. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/members/filters=public,inherited_members=True,members=True.html +0 -0
  384. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/overloads/overloads_only=False,separate_signature=False,show_overloads=False.html +0 -0
  385. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/overloads/overloads_only=False,separate_signature=False,show_overloads=True.html +0 -0
  386. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/overloads/overloads_only=False,separate_signature=True,show_overloads=False.html +0 -0
  387. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/overloads/overloads_only=False,separate_signature=True,show_overloads=True.html +0 -0
  388. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/overloads/overloads_only=True,separate_signature=False,show_overloads=False.html +0 -0
  389. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/overloads/overloads_only=True,separate_signature=False,show_overloads=True.html +0 -0
  390. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/overloads/overloads_only=True,separate_signature=True,show_overloads=False.html +0 -0
  391. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/overloads/overloads_only=True,separate_signature=True,show_overloads=True.html +0 -0
  392. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=False,signature_crossrefs=False.html +0 -0
  393. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=False,signature_crossrefs=True.html +0 -0
  394. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=True,signature_crossrefs=False.html +0 -0
  395. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=True,signature_crossrefs=True.html +0 -0
  396. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=False,signature_crossrefs=False.html +0 -0
  397. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=False,signature_crossrefs=True.html +0 -0
  398. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=True,signature_crossrefs=False.html +0 -0
  399. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=True,signature_crossrefs=True.html +0 -0
  400. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/test_end_to_end.py +0 -0
  401. {mkdocstrings_python-1.18.2 → mkdocstrings_python-2.0.0}/tests/test_rendering.py +0 -0
@@ -5,6 +5,32 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  <!-- insertion marker -->
8
+ ## [2.0.0](https://github.com/mkdocstrings/python/releases/tag/2.0.0) - 2025-11-27
9
+
10
+ <small>[Compare with 1.19.0](https://github.com/mkdocstrings/python/compare/1.19.0...2.0.0)</small>
11
+
12
+ ### Code Refactoring
13
+
14
+ - Remove deprecated code for v2 ([c10afdb](https://github.com/mkdocstrings/python/commit/c10afdb98d590a23c8840c7c0cdd6c358094dc2c) by Timothée Mazzucotelli).
15
+
16
+ ## [1.19.0](https://github.com/mkdocstrings/python/releases/tag/1.19.0) - 2025-11-10
17
+
18
+ <small>[Compare with 1.18.2](https://github.com/mkdocstrings/python/compare/1.18.2...1.19.0)</small>
19
+
20
+ ### Features
21
+
22
+ - Release scoped and relative cross-references ([872afc5](https://github.com/mkdocstrings/python/commit/872afc584f33f50a133472afdc9355734a5e51ec) by Timothée Mazzucotelli).
23
+ - Release `__all__` ordering feature ([84aaebc](https://github.com/mkdocstrings/python/commit/84aaebcb4991c0245bf7ca8d7024c9d04942b0c1) by Timothée Mazzucotelli).
24
+ - Release public filter feature ([3be14cc](https://github.com/mkdocstrings/python/commit/3be14cc07bc9429d7ce01c748d825e2db1559212) by Timothée Mazzucotelli).
25
+ - Release backlinks feature ([ae7cc2d](https://github.com/mkdocstrings/python/commit/ae7cc2d7d8ea5711d8ce06620edd534a3e2b47aa) by Timothée Mazzucotelli).
26
+ - Release expression modernization feature ([dbadd1e](https://github.com/mkdocstrings/python/commit/dbadd1e898bb2e67515077d152890bdbbf0b3eb1) by Timothée Mazzucotelli).
27
+ - Release visually-lighter admonitions for source code blocks ([fdaeb48](https://github.com/mkdocstrings/python/commit/fdaeb48a0f2208bafd14f2f7ead42bca37bea665) by Timothée Mazzucotelli).
28
+ - Release inheritance diagram features ([669b42e](https://github.com/mkdocstrings/python/commit/669b42ebd7c154c81764fa98c052cf857f7aa406) by Timothée Mazzucotelli).
29
+
30
+ ### Code Refactoring
31
+
32
+ - Update code base for Python 3.10 ([b696ed2](https://github.com/mkdocstrings/python/commit/b696ed2224756472a3617fa3cc18b69d0418ed71) by Timothée Mazzucotelli).
33
+
8
34
  ## [1.18.2](https://github.com/mkdocstrings/python/releases/tag/1.18.2) - 2025-08-28
9
35
 
10
36
  <small>[Compare with 1.18.1](https://github.com/mkdocstrings/python/compare/1.18.1...1.18.2)</small>
@@ -487,9 +513,6 @@ Importing from submodules is now deprecated: the public API is fully exposed und
487
513
  - [`griffe-inherited-docstrings`](https://mkdocstrings.github.io/griffe-inherited-docstrings/), a Griffe extension for inheriting docstrings
488
514
  - [`griffe2md`](https://mkdocstrings.github.io/griffe2md/), a tool to output API docs to Markdown using Griffe
489
515
 
490
- See the complete list of features and projects here:
491
- https://pawamoy.github.io/insiders/#500-plasmavac-user-guide.
492
-
493
516
  ## [1.7.5](https://github.com/mkdocstrings/python/releases/tag/1.7.5) - 2023-11-21
494
517
 
495
518
  <small>[Compare with 1.7.4](https://github.com/mkdocstrings/python/compare/1.7.4...1.7.5)</small>
@@ -0,0 +1,179 @@
1
+ Metadata-Version: 2.4
2
+ Name: mkdocstrings-python
3
+ Version: 2.0.0
4
+ Summary: A Python handler for mkdocstrings.
5
+ Author-Email: =?utf-8?q?Timoth=C3=A9e_Mazzucotelli?= <dev@pawamoy.fr>
6
+ License-Expression: ISC
7
+ License-File: LICENSE
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Topic :: Documentation
19
+ Classifier: Topic :: Software Development
20
+ Classifier: Topic :: Software Development :: Documentation
21
+ Classifier: Topic :: Utilities
22
+ Classifier: Typing :: Typed
23
+ Project-URL: Homepage, https://mkdocstrings.github.io/python
24
+ Project-URL: Documentation, https://mkdocstrings.github.io/python
25
+ Project-URL: Changelog, https://mkdocstrings.github.io/python/changelog
26
+ Project-URL: Repository, https://github.com/mkdocstrings/python
27
+ Project-URL: Issues, https://github.com/mkdocstrings/python/issues
28
+ Project-URL: Discussions, https://github.com/mkdocstrings/python/discussions
29
+ Project-URL: Gitter, https://gitter.im/mkdocstrings/python
30
+ Project-URL: Funding, https://github.com/sponsors/pawamoy
31
+ Requires-Python: >=3.10
32
+ Requires-Dist: mkdocstrings>=0.30
33
+ Requires-Dist: mkdocs-autorefs>=1.4
34
+ Requires-Dist: griffe>=1.13
35
+ Requires-Dist: typing-extensions>=4.0; python_version < "3.11"
36
+ Description-Content-Type: text/markdown
37
+
38
+ <h1 align="center">mkdocstrings-python</h1>
39
+
40
+ <p align="center">A Python handler for <a href="https://github.com/mkdocstrings/mkdocstrings"><i>mkdocstrings</i></a>.</p>
41
+
42
+ [![ci](https://github.com/mkdocstrings/python/workflows/ci/badge.svg)](https://github.com/mkdocstrings/python/actions?query=workflow%3Aci)
43
+ [![documentation](https://img.shields.io/badge/docs-mkdocs-708FCC.svg?style=flat)](https://mkdocstrings.github.io/python/)
44
+ [![pypi version](https://img.shields.io/pypi/v/mkdocstrings-python.svg)](https://pypi.org/project/mkdocstrings-python/)
45
+ [![gitter](https://img.shields.io/badge/matrix-chat-4DB798.svg?style=flat)](https://app.gitter.im/#/room/#mkdocstrings_python:gitter.im)
46
+
47
+ ---
48
+
49
+ <p align="center"><img src="logo.png"></p>
50
+
51
+ The Python handler uses [Griffe](https://mkdocstrings.github.io/griffe)
52
+ to collect documentation from Python source code.
53
+ The word "griffe" can sometimes be used instead of "signature" in French.
54
+ Griffe is able to visit the Abstract Syntax Tree (AST) of the source code to extract useful information.
55
+ It is also able to execute the code (by importing it) and introspect objects in memory
56
+ when source code is not available. Finally, it can parse docstrings following different styles.
57
+
58
+ ## Installation
59
+
60
+ You can install this handler as a *mkdocstrings* extra:
61
+
62
+ ```toml title="pyproject.toml"
63
+ # PEP 621 dependencies declaration
64
+ # adapt to your dependencies manager
65
+ [project]
66
+ dependencies = [
67
+ "mkdocstrings[python]>=0.18",
68
+ ]
69
+ ```
70
+
71
+ You can also explicitly depend on the handler:
72
+
73
+ ```toml title="pyproject.toml"
74
+ # PEP 621 dependencies declaration
75
+ # adapt to your dependencies manager
76
+ [project]
77
+ dependencies = [
78
+ "mkdocstrings-python",
79
+ ]
80
+ ```
81
+
82
+ ## Preview
83
+
84
+ <!-- TODO: update the GIF with a more recent screen capture. Maybe use mp4 instead -->
85
+ ![mkdocstrings_python_gif](https://user-images.githubusercontent.com/3999221/77157838-7184db80-6aa2-11ea-9f9a-fe77405202de.gif)
86
+
87
+ ## Features
88
+
89
+ - **Data collection from source code**: collection of the object-tree and the docstrings is done thanks to
90
+ [Griffe](https://github.com/mkdocstrings/griffe).
91
+
92
+ - **Support for type annotations:** Griffe collects your type annotations and *mkdocstrings* uses them
93
+ to display parameter types or return types. It is even able to automatically add cross-references
94
+ to other objects from your API, from the standard library or third-party libraries!
95
+ See [how to load inventories](https://mkdocstrings.github.io/usage/#cross-references-to-other-projects-inventories) to enable it.
96
+
97
+ - **Recursive documentation of Python objects:** just use the module dotted-path as an identifier, and you get the full
98
+ module docs. You don't need to inject documentation for each class, function, etc.
99
+
100
+ - **Support for documented attributes:** attributes (variables) followed by a docstring (triple-quoted string) will
101
+ be recognized by Griffe in modules, classes and even in `__init__` methods.
102
+
103
+ - **Multiple docstring-styles support:** common support for Google-style, Numpydoc-style,
104
+ and Sphinx-style docstrings. See [Griffe's documentation](https://mkdocstrings.github.io/griffe/docstrings/) on docstrings support.
105
+
106
+ - **Admonition support in Google docstrings:** blocks like `Note:` or `Warning:` will be transformed
107
+ to their [admonition](https://squidfunk.github.io/mkdocs-material/reference/admonitions/) equivalent.
108
+ *We do not support nested admonitions in docstrings!*
109
+
110
+ - **Every object has a TOC entry:** we render a heading for each object, meaning *MkDocs* picks them into the Table
111
+ of Contents, which is nicely displayed by the Material theme. Thanks to *mkdocstrings* cross-reference ability,
112
+ you can reference other objects within your docstrings, with the classic Markdown syntax:
113
+ `[this object][package.module.object]` or directly with `[package.module.object][]`
114
+
115
+ - **Source code display:** *mkdocstrings* can add a collapsible div containing the highlighted source code
116
+ of the Python object.
117
+
118
+ ## Sponsors
119
+
120
+ <!-- sponsors-start -->
121
+
122
+ <div id="premium-sponsors" style="text-align: center;">
123
+
124
+ <div id="silver-sponsors"><b>Silver sponsors</b><p>
125
+ <a href="https://squidfunk.github.io/mkdocs-material/"><img alt="Material for MkDocs" src="https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/logo.svg" style="height: 320px; "></a><br>
126
+ <a href="https://fastapi.tiangolo.com/"><img alt="FastAPI" src="https://raw.githubusercontent.com/tiangolo/fastapi/master/docs/en/docs/img/logo-margin/logo-teal.png" style="height: 200px; "></a><br>
127
+ <a href="https://docs.pydantic.dev/latest/"><img alt="Pydantic" src="https://pydantic.dev/assets/for-external/pydantic_logfire_logo_endorsed_lithium_rgb.svg" style="height: 180px; "></a><br>
128
+ </p></div>
129
+
130
+ <div id="bronze-sponsors"><b>Bronze sponsors</b><p>
131
+ <a href="https://www.nixtla.io/"><picture><source media="(prefers-color-scheme: light)" srcset="https://www.nixtla.io/img/logo/full-black.svg"><source media="(prefers-color-scheme: dark)" srcset="https://www.nixtla.io/img/logo/full-white.svg"><img alt="Nixtla" src="https://www.nixtla.io/img/logo/full-black.svg" style="height: 60px; "></picture></a><br>
132
+ </p></div>
133
+ </div>
134
+
135
+ ---
136
+
137
+ <div id="sponsors"><p>
138
+ <a href="https://github.com/ofek"><img alt="ofek" src="https://avatars.githubusercontent.com/u/9677399?u=386c330f212ce467ce7119d9615c75d0e9b9f1ce&v=4" style="height: 32px; border-radius: 100%;"></a>
139
+ <a href="https://github.com/samuelcolvin"><img alt="samuelcolvin" src="https://avatars.githubusercontent.com/u/4039449?u=42eb3b833047c8c4b4f647a031eaef148c16d93f&v=4" style="height: 32px; border-radius: 100%;"></a>
140
+ <a href="https://github.com/tlambert03"><img alt="tlambert03" src="https://avatars.githubusercontent.com/u/1609449?u=922abf0524b47739b37095e553c99488814b05db&v=4" style="height: 32px; border-radius: 100%;"></a>
141
+ <a href="https://github.com/ssbarnea"><img alt="ssbarnea" src="https://avatars.githubusercontent.com/u/102495?u=c7bd9ddf127785286fc939dd18cb02db0a453bce&v=4" style="height: 32px; border-radius: 100%;"></a>
142
+ <a href="https://github.com/femtomc"><img alt="femtomc" src="https://avatars.githubusercontent.com/u/34410036?u=f13a71daf2a9f0d2da189beaa94250daa629e2d8&v=4" style="height: 32px; border-radius: 100%;"></a>
143
+ <a href="https://github.com/cmarqu"><img alt="cmarqu" src="https://avatars.githubusercontent.com/u/360986?v=4" style="height: 32px; border-radius: 100%;"></a>
144
+ <a href="https://github.com/kolenaIO"><img alt="kolenaIO" src="https://avatars.githubusercontent.com/u/77010818?v=4" style="height: 32px; border-radius: 100%;"></a>
145
+ <a href="https://github.com/ramnes"><img alt="ramnes" src="https://avatars.githubusercontent.com/u/835072?u=3fca03c3ba0051e2eb652b1def2188a94d1e1dc2&v=4" style="height: 32px; border-radius: 100%;"></a>
146
+ <a href="https://github.com/machow"><img alt="machow" src="https://avatars.githubusercontent.com/u/2574498?u=c41e3d2f758a05102d8075e38d67b9c17d4189d7&v=4" style="height: 32px; border-radius: 100%;"></a>
147
+ <a href="https://github.com/BenHammersley"><img alt="BenHammersley" src="https://avatars.githubusercontent.com/u/99436?u=4499a7b507541045222ee28ae122dbe3c8d08ab5&v=4" style="height: 32px; border-radius: 100%;"></a>
148
+ <a href="https://github.com/trevorWieland"><img alt="trevorWieland" src="https://avatars.githubusercontent.com/u/28811461?u=74cc0e3756c1d4e3d66b5c396e1d131ea8a10472&v=4" style="height: 32px; border-radius: 100%;"></a>
149
+ <a href="https://github.com/laenan8466"><img alt="laenan8466" src="https://avatars.githubusercontent.com/u/21331242?v=4" style="height: 32px; border-radius: 100%;"></a>
150
+ <a href="https://github.com/MarcoGorelli"><img alt="MarcoGorelli" src="https://avatars.githubusercontent.com/u/33491632?u=7de3a749cac76a60baca9777baf71d043a4f884d&v=4" style="height: 32px; border-radius: 100%;"></a>
151
+ <a href="https://github.com/analog-cbarber"><img alt="analog-cbarber" src="https://avatars.githubusercontent.com/u/7408243?u=642fc2bdcc9904089c62fe5aec4e03ace32da67d&v=4" style="height: 32px; border-radius: 100%;"></a>
152
+ <a href="https://github.com/OdinManiac"><img alt="OdinManiac" src="https://avatars.githubusercontent.com/u/22727172?u=36ab20970f7f52ae8e7eb67b7fcf491fee01ac22&v=4" style="height: 32px; border-radius: 100%;"></a>
153
+ <a href="https://github.com/rstudio-sponsorship"><img alt="rstudio-sponsorship" src="https://avatars.githubusercontent.com/u/58949051?u=0c471515dd18111be30dfb7669ed5e778970959b&v=4" style="height: 32px; border-radius: 100%;"></a>
154
+ <a href="https://github.com/schlich"><img alt="schlich" src="https://avatars.githubusercontent.com/u/21191435?u=6f1240adb68f21614d809ae52d66509f46b1e877&v=4" style="height: 32px; border-radius: 100%;"></a>
155
+ <a href="https://github.com/SuperCowPowers"><img alt="SuperCowPowers" src="https://avatars.githubusercontent.com/u/6900187?v=4" style="height: 32px; border-radius: 100%;"></a>
156
+ <a href="https://github.com/butterlyn"><img alt="butterlyn" src="https://avatars.githubusercontent.com/u/53323535?v=4" style="height: 32px; border-radius: 100%;"></a>
157
+ <a href="https://github.com/livingbio"><img alt="livingbio" src="https://avatars.githubusercontent.com/u/10329983?v=4" style="height: 32px; border-radius: 100%;"></a>
158
+ <a href="https://github.com/NemetschekAllplan"><img alt="NemetschekAllplan" src="https://avatars.githubusercontent.com/u/912034?v=4" style="height: 32px; border-radius: 100%;"></a>
159
+ <a href="https://github.com/EricJayHartman"><img alt="EricJayHartman" src="https://avatars.githubusercontent.com/u/9259499?u=7e58cc7ec0cd3e85b27aec33656aa0f6612706dd&v=4" style="height: 32px; border-radius: 100%;"></a>
160
+ <a href="https://github.com/15r10nk"><img alt="15r10nk" src="https://avatars.githubusercontent.com/u/44680962?u=f04826446ff165742efa81e314bd03bf1724d50e&v=4" style="height: 32px; border-radius: 100%;"></a>
161
+ <a href="https://github.com/cdwilson"><img alt="cdwilson" src="https://avatars.githubusercontent.com/u/14631?v=4" style="height: 32px; border-radius: 100%;"></a>
162
+ <a href="https://github.com/activeloopai"><img alt="activeloopai" src="https://avatars.githubusercontent.com/u/34816118?v=4" style="height: 32px; border-radius: 100%;"></a>
163
+ <a href="https://github.com/roboflow"><img alt="roboflow" src="https://avatars.githubusercontent.com/u/53104118?v=4" style="height: 32px; border-radius: 100%;"></a>
164
+ <a href="https://github.com/wrath-codes"><img alt="wrath-codes" src="https://avatars.githubusercontent.com/u/90050913?u=b26582409dfff8ce2b60016fd119be09309708da&v=4" style="height: 32px; border-radius: 100%;"></a>
165
+ <a href="https://github.com/leodevian"><img alt="leodevian" src="https://avatars.githubusercontent.com/u/167141781?v=4" style="height: 32px; border-radius: 100%;"></a>
166
+ <a href="https://github.com/cmclaughlin"><img alt="cmclaughlin" src="https://avatars.githubusercontent.com/u/1061109?u=ddf6eec0edd2d11c980f8c3aa96e3d044d4e0468&v=4" style="height: 32px; border-radius: 100%;"></a>
167
+ <a href="https://github.com/blaisep"><img alt="blaisep" src="https://avatars.githubusercontent.com/u/254456?u=97d584b7c0a6faf583aa59975df4f993f671d121&v=4" style="height: 32px; border-radius: 100%;"></a>
168
+ <a href="https://github.com/RapidataAI"><img alt="RapidataAI" src="https://avatars.githubusercontent.com/u/104209891?v=4" style="height: 32px; border-radius: 100%;"></a>
169
+ <a href="https://github.com/rodolphebarbanneau"><img alt="rodolphebarbanneau" src="https://avatars.githubusercontent.com/u/46493454?u=6c405452a40c231cdf0b68e97544e07ee956a733&v=4" style="height: 32px; border-radius: 100%;"></a>
170
+ <a href="https://github.com/theSymbolSyndicate"><img alt="theSymbolSyndicate" src="https://avatars.githubusercontent.com/u/111542255?v=4" style="height: 32px; border-radius: 100%;"></a>
171
+ <a href="https://github.com/blakeNaccarato"><img alt="blakeNaccarato" src="https://avatars.githubusercontent.com/u/20692450?u=bb919218be30cfa994514f4cf39bb2f7cf952df4&v=4" style="height: 32px; border-radius: 100%;"></a>
172
+ <a href="https://github.com/ChargeStorm"><img alt="ChargeStorm" src="https://avatars.githubusercontent.com/u/26000165?v=4" style="height: 32px; border-radius: 100%;"></a>
173
+ <a href="https://github.com/Alphadelta14"><img alt="Alphadelta14" src="https://avatars.githubusercontent.com/u/480845?v=4" style="height: 32px; border-radius: 100%;"></a>
174
+ </p></div>
175
+
176
+
177
+ *And 8 more private sponsor(s).*
178
+
179
+ <!-- sponsors-end -->
@@ -0,0 +1,142 @@
1
+ <h1 align="center">mkdocstrings-python</h1>
2
+
3
+ <p align="center">A Python handler for <a href="https://github.com/mkdocstrings/mkdocstrings"><i>mkdocstrings</i></a>.</p>
4
+
5
+ [![ci](https://github.com/mkdocstrings/python/workflows/ci/badge.svg)](https://github.com/mkdocstrings/python/actions?query=workflow%3Aci)
6
+ [![documentation](https://img.shields.io/badge/docs-mkdocs-708FCC.svg?style=flat)](https://mkdocstrings.github.io/python/)
7
+ [![pypi version](https://img.shields.io/pypi/v/mkdocstrings-python.svg)](https://pypi.org/project/mkdocstrings-python/)
8
+ [![gitter](https://img.shields.io/badge/matrix-chat-4DB798.svg?style=flat)](https://app.gitter.im/#/room/#mkdocstrings_python:gitter.im)
9
+
10
+ ---
11
+
12
+ <p align="center"><img src="logo.png"></p>
13
+
14
+ The Python handler uses [Griffe](https://mkdocstrings.github.io/griffe)
15
+ to collect documentation from Python source code.
16
+ The word "griffe" can sometimes be used instead of "signature" in French.
17
+ Griffe is able to visit the Abstract Syntax Tree (AST) of the source code to extract useful information.
18
+ It is also able to execute the code (by importing it) and introspect objects in memory
19
+ when source code is not available. Finally, it can parse docstrings following different styles.
20
+
21
+ ## Installation
22
+
23
+ You can install this handler as a *mkdocstrings* extra:
24
+
25
+ ```toml title="pyproject.toml"
26
+ # PEP 621 dependencies declaration
27
+ # adapt to your dependencies manager
28
+ [project]
29
+ dependencies = [
30
+ "mkdocstrings[python]>=0.18",
31
+ ]
32
+ ```
33
+
34
+ You can also explicitly depend on the handler:
35
+
36
+ ```toml title="pyproject.toml"
37
+ # PEP 621 dependencies declaration
38
+ # adapt to your dependencies manager
39
+ [project]
40
+ dependencies = [
41
+ "mkdocstrings-python",
42
+ ]
43
+ ```
44
+
45
+ ## Preview
46
+
47
+ <!-- TODO: update the GIF with a more recent screen capture. Maybe use mp4 instead -->
48
+ ![mkdocstrings_python_gif](https://user-images.githubusercontent.com/3999221/77157838-7184db80-6aa2-11ea-9f9a-fe77405202de.gif)
49
+
50
+ ## Features
51
+
52
+ - **Data collection from source code**: collection of the object-tree and the docstrings is done thanks to
53
+ [Griffe](https://github.com/mkdocstrings/griffe).
54
+
55
+ - **Support for type annotations:** Griffe collects your type annotations and *mkdocstrings* uses them
56
+ to display parameter types or return types. It is even able to automatically add cross-references
57
+ to other objects from your API, from the standard library or third-party libraries!
58
+ See [how to load inventories](https://mkdocstrings.github.io/usage/#cross-references-to-other-projects-inventories) to enable it.
59
+
60
+ - **Recursive documentation of Python objects:** just use the module dotted-path as an identifier, and you get the full
61
+ module docs. You don't need to inject documentation for each class, function, etc.
62
+
63
+ - **Support for documented attributes:** attributes (variables) followed by a docstring (triple-quoted string) will
64
+ be recognized by Griffe in modules, classes and even in `__init__` methods.
65
+
66
+ - **Multiple docstring-styles support:** common support for Google-style, Numpydoc-style,
67
+ and Sphinx-style docstrings. See [Griffe's documentation](https://mkdocstrings.github.io/griffe/docstrings/) on docstrings support.
68
+
69
+ - **Admonition support in Google docstrings:** blocks like `Note:` or `Warning:` will be transformed
70
+ to their [admonition](https://squidfunk.github.io/mkdocs-material/reference/admonitions/) equivalent.
71
+ *We do not support nested admonitions in docstrings!*
72
+
73
+ - **Every object has a TOC entry:** we render a heading for each object, meaning *MkDocs* picks them into the Table
74
+ of Contents, which is nicely displayed by the Material theme. Thanks to *mkdocstrings* cross-reference ability,
75
+ you can reference other objects within your docstrings, with the classic Markdown syntax:
76
+ `[this object][package.module.object]` or directly with `[package.module.object][]`
77
+
78
+ - **Source code display:** *mkdocstrings* can add a collapsible div containing the highlighted source code
79
+ of the Python object.
80
+
81
+ ## Sponsors
82
+
83
+ <!-- sponsors-start -->
84
+
85
+ <div id="premium-sponsors" style="text-align: center;">
86
+
87
+ <div id="silver-sponsors"><b>Silver sponsors</b><p>
88
+ <a href="https://squidfunk.github.io/mkdocs-material/"><img alt="Material for MkDocs" src="https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/logo.svg" style="height: 320px; "></a><br>
89
+ <a href="https://fastapi.tiangolo.com/"><img alt="FastAPI" src="https://raw.githubusercontent.com/tiangolo/fastapi/master/docs/en/docs/img/logo-margin/logo-teal.png" style="height: 200px; "></a><br>
90
+ <a href="https://docs.pydantic.dev/latest/"><img alt="Pydantic" src="https://pydantic.dev/assets/for-external/pydantic_logfire_logo_endorsed_lithium_rgb.svg" style="height: 180px; "></a><br>
91
+ </p></div>
92
+
93
+ <div id="bronze-sponsors"><b>Bronze sponsors</b><p>
94
+ <a href="https://www.nixtla.io/"><picture><source media="(prefers-color-scheme: light)" srcset="https://www.nixtla.io/img/logo/full-black.svg"><source media="(prefers-color-scheme: dark)" srcset="https://www.nixtla.io/img/logo/full-white.svg"><img alt="Nixtla" src="https://www.nixtla.io/img/logo/full-black.svg" style="height: 60px; "></picture></a><br>
95
+ </p></div>
96
+ </div>
97
+
98
+ ---
99
+
100
+ <div id="sponsors"><p>
101
+ <a href="https://github.com/ofek"><img alt="ofek" src="https://avatars.githubusercontent.com/u/9677399?u=386c330f212ce467ce7119d9615c75d0e9b9f1ce&v=4" style="height: 32px; border-radius: 100%;"></a>
102
+ <a href="https://github.com/samuelcolvin"><img alt="samuelcolvin" src="https://avatars.githubusercontent.com/u/4039449?u=42eb3b833047c8c4b4f647a031eaef148c16d93f&v=4" style="height: 32px; border-radius: 100%;"></a>
103
+ <a href="https://github.com/tlambert03"><img alt="tlambert03" src="https://avatars.githubusercontent.com/u/1609449?u=922abf0524b47739b37095e553c99488814b05db&v=4" style="height: 32px; border-radius: 100%;"></a>
104
+ <a href="https://github.com/ssbarnea"><img alt="ssbarnea" src="https://avatars.githubusercontent.com/u/102495?u=c7bd9ddf127785286fc939dd18cb02db0a453bce&v=4" style="height: 32px; border-radius: 100%;"></a>
105
+ <a href="https://github.com/femtomc"><img alt="femtomc" src="https://avatars.githubusercontent.com/u/34410036?u=f13a71daf2a9f0d2da189beaa94250daa629e2d8&v=4" style="height: 32px; border-radius: 100%;"></a>
106
+ <a href="https://github.com/cmarqu"><img alt="cmarqu" src="https://avatars.githubusercontent.com/u/360986?v=4" style="height: 32px; border-radius: 100%;"></a>
107
+ <a href="https://github.com/kolenaIO"><img alt="kolenaIO" src="https://avatars.githubusercontent.com/u/77010818?v=4" style="height: 32px; border-radius: 100%;"></a>
108
+ <a href="https://github.com/ramnes"><img alt="ramnes" src="https://avatars.githubusercontent.com/u/835072?u=3fca03c3ba0051e2eb652b1def2188a94d1e1dc2&v=4" style="height: 32px; border-radius: 100%;"></a>
109
+ <a href="https://github.com/machow"><img alt="machow" src="https://avatars.githubusercontent.com/u/2574498?u=c41e3d2f758a05102d8075e38d67b9c17d4189d7&v=4" style="height: 32px; border-radius: 100%;"></a>
110
+ <a href="https://github.com/BenHammersley"><img alt="BenHammersley" src="https://avatars.githubusercontent.com/u/99436?u=4499a7b507541045222ee28ae122dbe3c8d08ab5&v=4" style="height: 32px; border-radius: 100%;"></a>
111
+ <a href="https://github.com/trevorWieland"><img alt="trevorWieland" src="https://avatars.githubusercontent.com/u/28811461?u=74cc0e3756c1d4e3d66b5c396e1d131ea8a10472&v=4" style="height: 32px; border-radius: 100%;"></a>
112
+ <a href="https://github.com/laenan8466"><img alt="laenan8466" src="https://avatars.githubusercontent.com/u/21331242?v=4" style="height: 32px; border-radius: 100%;"></a>
113
+ <a href="https://github.com/MarcoGorelli"><img alt="MarcoGorelli" src="https://avatars.githubusercontent.com/u/33491632?u=7de3a749cac76a60baca9777baf71d043a4f884d&v=4" style="height: 32px; border-radius: 100%;"></a>
114
+ <a href="https://github.com/analog-cbarber"><img alt="analog-cbarber" src="https://avatars.githubusercontent.com/u/7408243?u=642fc2bdcc9904089c62fe5aec4e03ace32da67d&v=4" style="height: 32px; border-radius: 100%;"></a>
115
+ <a href="https://github.com/OdinManiac"><img alt="OdinManiac" src="https://avatars.githubusercontent.com/u/22727172?u=36ab20970f7f52ae8e7eb67b7fcf491fee01ac22&v=4" style="height: 32px; border-radius: 100%;"></a>
116
+ <a href="https://github.com/rstudio-sponsorship"><img alt="rstudio-sponsorship" src="https://avatars.githubusercontent.com/u/58949051?u=0c471515dd18111be30dfb7669ed5e778970959b&v=4" style="height: 32px; border-radius: 100%;"></a>
117
+ <a href="https://github.com/schlich"><img alt="schlich" src="https://avatars.githubusercontent.com/u/21191435?u=6f1240adb68f21614d809ae52d66509f46b1e877&v=4" style="height: 32px; border-radius: 100%;"></a>
118
+ <a href="https://github.com/SuperCowPowers"><img alt="SuperCowPowers" src="https://avatars.githubusercontent.com/u/6900187?v=4" style="height: 32px; border-radius: 100%;"></a>
119
+ <a href="https://github.com/butterlyn"><img alt="butterlyn" src="https://avatars.githubusercontent.com/u/53323535?v=4" style="height: 32px; border-radius: 100%;"></a>
120
+ <a href="https://github.com/livingbio"><img alt="livingbio" src="https://avatars.githubusercontent.com/u/10329983?v=4" style="height: 32px; border-radius: 100%;"></a>
121
+ <a href="https://github.com/NemetschekAllplan"><img alt="NemetschekAllplan" src="https://avatars.githubusercontent.com/u/912034?v=4" style="height: 32px; border-radius: 100%;"></a>
122
+ <a href="https://github.com/EricJayHartman"><img alt="EricJayHartman" src="https://avatars.githubusercontent.com/u/9259499?u=7e58cc7ec0cd3e85b27aec33656aa0f6612706dd&v=4" style="height: 32px; border-radius: 100%;"></a>
123
+ <a href="https://github.com/15r10nk"><img alt="15r10nk" src="https://avatars.githubusercontent.com/u/44680962?u=f04826446ff165742efa81e314bd03bf1724d50e&v=4" style="height: 32px; border-radius: 100%;"></a>
124
+ <a href="https://github.com/cdwilson"><img alt="cdwilson" src="https://avatars.githubusercontent.com/u/14631?v=4" style="height: 32px; border-radius: 100%;"></a>
125
+ <a href="https://github.com/activeloopai"><img alt="activeloopai" src="https://avatars.githubusercontent.com/u/34816118?v=4" style="height: 32px; border-radius: 100%;"></a>
126
+ <a href="https://github.com/roboflow"><img alt="roboflow" src="https://avatars.githubusercontent.com/u/53104118?v=4" style="height: 32px; border-radius: 100%;"></a>
127
+ <a href="https://github.com/wrath-codes"><img alt="wrath-codes" src="https://avatars.githubusercontent.com/u/90050913?u=b26582409dfff8ce2b60016fd119be09309708da&v=4" style="height: 32px; border-radius: 100%;"></a>
128
+ <a href="https://github.com/leodevian"><img alt="leodevian" src="https://avatars.githubusercontent.com/u/167141781?v=4" style="height: 32px; border-radius: 100%;"></a>
129
+ <a href="https://github.com/cmclaughlin"><img alt="cmclaughlin" src="https://avatars.githubusercontent.com/u/1061109?u=ddf6eec0edd2d11c980f8c3aa96e3d044d4e0468&v=4" style="height: 32px; border-radius: 100%;"></a>
130
+ <a href="https://github.com/blaisep"><img alt="blaisep" src="https://avatars.githubusercontent.com/u/254456?u=97d584b7c0a6faf583aa59975df4f993f671d121&v=4" style="height: 32px; border-radius: 100%;"></a>
131
+ <a href="https://github.com/RapidataAI"><img alt="RapidataAI" src="https://avatars.githubusercontent.com/u/104209891?v=4" style="height: 32px; border-radius: 100%;"></a>
132
+ <a href="https://github.com/rodolphebarbanneau"><img alt="rodolphebarbanneau" src="https://avatars.githubusercontent.com/u/46493454?u=6c405452a40c231cdf0b68e97544e07ee956a733&v=4" style="height: 32px; border-radius: 100%;"></a>
133
+ <a href="https://github.com/theSymbolSyndicate"><img alt="theSymbolSyndicate" src="https://avatars.githubusercontent.com/u/111542255?v=4" style="height: 32px; border-radius: 100%;"></a>
134
+ <a href="https://github.com/blakeNaccarato"><img alt="blakeNaccarato" src="https://avatars.githubusercontent.com/u/20692450?u=bb919218be30cfa994514f4cf39bb2f7cf952df4&v=4" style="height: 32px; border-radius: 100%;"></a>
135
+ <a href="https://github.com/ChargeStorm"><img alt="ChargeStorm" src="https://avatars.githubusercontent.com/u/26000165?v=4" style="height: 32px; border-radius: 100%;"></a>
136
+ <a href="https://github.com/Alphadelta14"><img alt="Alphadelta14" src="https://avatars.githubusercontent.com/u/480845?v=4" style="height: 32px; border-radius: 100%;"></a>
137
+ </p></div>
138
+
139
+
140
+ *And 8 more private sponsor(s).*
141
+
142
+ <!-- sponsors-end -->
@@ -10,6 +10,8 @@ testpaths =
10
10
  # action:message_regex:warning_class:module_regex:line
11
11
  filterwarnings =
12
12
  error
13
+ default::EncodingWarning
14
+ error::EncodingWarning:python
13
15
  # TODO: Remove once pytest-xdist 4 is released.
14
16
  ignore:.*rsyncdir:DeprecationWarning:xdist
15
17
  # TODO: Remove once mkdocstrings stops setting fallback function.
@@ -327,9 +327,6 @@ class Thing:
327
327
  [](){#option-relative_crossrefs}
328
328
  ## `relative_crossrefs`
329
329
 
330
- [:octicons-heart-fill-24:{ .pulse } Sponsors only](../../insiders/index.md){ .insiders } &mdash;
331
- [:octicons-tag-24: Insiders 1.9.0](../../insiders/changelog.md#1.9.0)
332
-
333
330
  - **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
334
331
  <!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
335
332
 
@@ -440,9 +437,6 @@ INFO: **There is an alternative, third-party Python handler that handles relativ
440
437
  [](){#option-scoped_crossrefs}
441
438
  ## `scoped_crossrefs`
442
439
 
443
- [:octicons-heart-fill-24:{ .pulse } Sponsors only](../../insiders/index.md){ .insiders } &mdash;
444
- [:octicons-tag-24: Insiders 1.9.0](../../insiders/changelog.md#1.9.0)
445
-
446
440
  - **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
447
441
  <!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
448
442
 
@@ -63,9 +63,6 @@ plugins:
63
63
  [](){#option-backlinks}
64
64
  ## `backlinks`
65
65
 
66
- [:octicons-heart-fill-24:{ .pulse } Sponsors only](../../insiders/index.md){ .insiders } &mdash;
67
- [:octicons-tag-24: Insiders 1.10.0](../../insiders/changelog.md#1.10.0)
68
-
69
66
  - **:octicons-package-24: Type <code><autoref identifier="typing.Literal" optional>Literal</autoref>["flat", "tree", False]</code> :material-equal: `False`{ title="default value" }**
70
67
 
71
68
  The `backlinks` option enables rendering of backlinks within your API documentation.
@@ -269,6 +266,143 @@ plugins:
269
266
 
270
267
  WARNING: **Packages are loaded only once.** When mkdocstrings-python collects data from a Python package (thanks to [Griffe](https://mkdocstrings.github.io/griffe/)), it collects *the entire package* and *caches it*. Next time an object from the same package is rendered, the package is retrieved from the cache and not collected again. The `force_inspection` option will therefore only have an effect the first time a package is collected, and will do nothing for objects rendered afterwards.
271
268
 
269
+ [](){#option-inheritance_diagram_direction}
270
+ ## `inheritance_diagram_direction`
271
+
272
+ The direction of the Mermaid chart presenting the inheritance diagram of a class, `TD` by default.
273
+
274
+ ```yaml title="mkdocs.yml"
275
+ extra_javascript:
276
+ - https://unpkg.com/mermaid@10.9.0/dist/mermaid.min.js
277
+ ```
278
+
279
+ ```yaml title="in mkdocs.yml (global configuration)"
280
+ plugins:
281
+ - mkdocstrings:
282
+ handlers:
283
+ python:
284
+ options:
285
+ inheritance_diagram_direction: TD
286
+ ```
287
+
288
+ ```md title="or in docs/some_page.md (local configuration)"
289
+ ::: path.to.object
290
+ options:
291
+ inheritance_diagram_direction: TD
292
+ ```
293
+
294
+ /// admonition | Preview
295
+ type: preview
296
+
297
+
298
+ With the following classes:
299
+
300
+ ```python
301
+ class SuperAbstract:
302
+ """Super abstract class."""
303
+ class Mixin1:
304
+ """Mixin 1."""
305
+ class Abstract(SuperAbstract, Mixin1):
306
+ """Abstract class."""
307
+ class Mixin2A:
308
+ """Mixin 2A."""
309
+ class Mixin2B(Mixin2A):
310
+ """Mixin 2B."""
311
+ class Concrete(Abstract, Mixin2B):
312
+ """Concrete class."""
313
+ class SuperConcrete(Concrete):
314
+ """Super concrete class."""
315
+ ```
316
+
317
+ //// tab | `TD` (or `TB`)
318
+
319
+ ```mermaid
320
+ flowchart TD
321
+ SuperConcrete[SuperConcrete]
322
+ Concrete[Concrete]
323
+ Abstract[Abstract]
324
+ SuperAbstract[SuperAbstract]
325
+ Mixin1[Mixin1]
326
+ Mixin2B[Mixin2B]
327
+ Mixin2A[Mixin2A]
328
+
329
+ Concrete --> SuperConcrete
330
+ Abstract --> Concrete
331
+ SuperAbstract --> Abstract
332
+ Mixin1 --> Abstract
333
+ Mixin2B --> Concrete
334
+ Mixin2A --> Mixin2B
335
+ ```
336
+
337
+ ////
338
+
339
+ //// tab | `BT`
340
+
341
+ ```mermaid
342
+ flowchart BT
343
+ SuperConcrete[SuperConcrete]
344
+ Concrete[Concrete]
345
+ Abstract[Abstract]
346
+ SuperAbstract[SuperAbstract]
347
+ Mixin1[Mixin1]
348
+ Mixin2B[Mixin2B]
349
+ Mixin2A[Mixin2A]
350
+
351
+ Concrete --> SuperConcrete
352
+ Abstract --> Concrete
353
+ SuperAbstract --> Abstract
354
+ Mixin1 --> Abstract
355
+ Mixin2B --> Concrete
356
+ Mixin2A --> Mixin2B
357
+ ```
358
+
359
+ ////
360
+
361
+ //// tab | `RL`
362
+
363
+ ```mermaid
364
+ flowchart RL
365
+ SuperConcrete[SuperConcrete]
366
+ Concrete[Concrete]
367
+ Abstract[Abstract]
368
+ SuperAbstract[SuperAbstract]
369
+ Mixin1[Mixin1]
370
+ Mixin2B[Mixin2B]
371
+ Mixin2A[Mixin2A]
372
+
373
+ Concrete --> SuperConcrete
374
+ Abstract --> Concrete
375
+ SuperAbstract --> Abstract
376
+ Mixin1 --> Abstract
377
+ Mixin2B --> Concrete
378
+ Mixin2A --> Mixin2B
379
+ ```
380
+
381
+ ////
382
+
383
+ //// tab | `LR`
384
+
385
+ ```mermaid
386
+ flowchart LR
387
+ SuperConcrete[SuperConcrete]
388
+ Concrete[Concrete]
389
+ Abstract[Abstract]
390
+ SuperAbstract[SuperAbstract]
391
+ Mixin1[Mixin1]
392
+ Mixin2B[Mixin2B]
393
+ Mixin2A[Mixin2A]
394
+
395
+ Concrete --> SuperConcrete
396
+ Abstract --> Concrete
397
+ SuperAbstract --> Abstract
398
+ Mixin1 --> Abstract
399
+ Mixin2B --> Concrete
400
+ Mixin2A --> Mixin2B
401
+ ```
402
+
403
+ ////
404
+ ///
405
+
272
406
  [](){#option-preload_modules}
273
407
  ## `preload_modules`
274
408
 
@@ -366,9 +500,6 @@ plugins:
366
500
  [](){#option-show_inheritance_diagram}
367
501
  ## `show_inheritance_diagram`
368
502
 
369
- [:octicons-heart-fill-24:{ .pulse } Sponsors only](../../insiders/index.md){ .insiders } &mdash;
370
- [:octicons-tag-24: Insiders 1.7.0](../../insiders/changelog.md#1.7.0)
371
-
372
503
  - **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
373
504
  <!-- - **:octicons-project-template-24: Template :material-null:** (contained in [`class.html`][class template]) -->
374
505
 
@@ -77,8 +77,6 @@ plugins:
77
77
  [](){#option-parameter_headings}
78
78
  ## `parameter_headings`
79
79
 
80
- [:octicons-tag-24: Insiders 1.6.0](../../insiders/changelog.md#1.6.0)
81
-
82
80
  - **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
83
81
  <!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
84
82
 
@@ -537,8 +535,6 @@ plugins:
537
535
  [](){#option-show_symbol_type_heading}
538
536
  ## `show_symbol_type_heading`
539
537
 
540
- [:octicons-tag-24: Insiders 1.1.0](../../insiders/changelog.md#1.1.0)
541
-
542
538
  - **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
543
539
  <!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
544
540
 
@@ -602,8 +598,6 @@ plugins:
602
598
  [](){#option-show_symbol_type_toc}
603
599
  ## `show_symbol_type_toc`
604
600
 
605
- [:octicons-tag-24: Insiders 1.1.0](../../insiders/changelog.md#1.1.0)
606
-
607
601
  - **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
608
602
  <!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
609
603
 
@@ -269,7 +269,7 @@ class Main(Base):
269
269
 
270
270
  The members ordering to use. Possible values:
271
271
 
272
- - `__all__` ([:octicons-heart-fill-24:{ .pulse } Sponsors only](../../insiders/index.md){ .insiders } &mdash; [:octicons-tag-24: Insiders 1.12.0](../../insiders/changelog.md#1.12.0)): Order according to `__all__` attributes. Since classes do not define `__all__` attributes, you can specify a second ordering method by using a list.
272
+ - `__all__`: Order according to `__all__` attributes. Since classes do not define `__all__` attributes, you can specify a second ordering method by using a list.
273
273
  - `alphabetical`: Order by the members names.
274
274
  - `source`: Order members as they appear in the source file.
275
275
 
@@ -351,9 +351,6 @@ A list of filters, or `"public"`.
351
351
 
352
352
  [](){#option-filters-public}
353
353
 
354
- [:octicons-heart-fill-24:{ .pulse } Sponsors only](../../insiders/index.md){ .insiders } &mdash;
355
- [:octicons-tag-24: Insiders 1.11.0](../../insiders/changelog.md#1.11.0)
356
-
357
354
  The `public` filtering method will include only public objects: those added to the `__all__` attribute of modules, or not starting with a single underscore. Special methods and attributes ("dunder" methods/attributes, starting and ending with two underscores), like `__init__`, `__call__`, `__mult__`, etc., are always considered public.
358
355
 
359
356
  **List of filters**
@@ -577,8 +574,6 @@ package
577
574
  [](){#option-summary}
578
575
  ## `summary`
579
576
 
580
- [:octicons-tag-24: Insiders 1.2.0](../../insiders/changelog.md#1.2.0)
581
-
582
577
  - **:octicons-package-24: Type <code><autoref identifier="bool" optional>bool</autoref> | <autoref identifier="dict" optional>dict</autoref>[<autoref identifier="str" optional>str</autoref>, <autoref identifier="bool" optional>bool</autoref>]</code> :material-equal: `False`{ title="default value" }**
583
578
  <!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
584
579