mkdocstrings-python 2.0.4__py3-none-any.whl → 2.0.6__py3-none-any.whl
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.
- mkdocstrings_handlers/python/_internal/handler.py +38 -3
- mkdocstrings_handlers/python/_internal/rendering.py +21 -14
- mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja +4 -4
- mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja +4 -4
- mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja +4 -4
- mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja +4 -4
- mkdocstrings_handlers/python/templates/material/_base/docstring/type_aliases.html.jinja +3 -3
- mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja +1 -1
- {mkdocstrings_python-2.0.4.dist-info → mkdocstrings_python-2.0.6.dist-info}/METADATA +3 -5
- {mkdocstrings_python-2.0.4.dist-info → mkdocstrings_python-2.0.6.dist-info}/RECORD +13 -13
- {mkdocstrings_python-2.0.4.dist-info → mkdocstrings_python-2.0.6.dist-info}/WHEEL +0 -0
- {mkdocstrings_python-2.0.4.dist-info → mkdocstrings_python-2.0.6.dist-info}/entry_points.txt +0 -0
- {mkdocstrings_python-2.0.4.dist-info → mkdocstrings_python-2.0.6.dist-info}/licenses/LICENSE +0 -0
|
@@ -3,13 +3,14 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
import glob
|
|
6
|
+
import inspect
|
|
6
7
|
import os
|
|
7
8
|
import posixpath
|
|
8
9
|
import sys
|
|
9
10
|
from contextlib import suppress
|
|
10
11
|
from dataclasses import asdict
|
|
11
12
|
from pathlib import Path
|
|
12
|
-
from typing import TYPE_CHECKING, Any, BinaryIO, ClassVar
|
|
13
|
+
from typing import TYPE_CHECKING, Any, BinaryIO, Callable, ClassVar
|
|
13
14
|
|
|
14
15
|
from griffe import (
|
|
15
16
|
AliasResolutionError,
|
|
@@ -18,6 +19,10 @@ from griffe import (
|
|
|
18
19
|
ModulesCollection,
|
|
19
20
|
Parser,
|
|
20
21
|
load_extensions,
|
|
22
|
+
parse_auto,
|
|
23
|
+
parse_google,
|
|
24
|
+
parse_numpy,
|
|
25
|
+
parse_sphinx,
|
|
21
26
|
patch_loggers,
|
|
22
27
|
)
|
|
23
28
|
from mkdocs.exceptions import PluginError
|
|
@@ -54,6 +59,34 @@ _logger = get_logger(__name__)
|
|
|
54
59
|
|
|
55
60
|
patch_loggers(get_logger)
|
|
56
61
|
|
|
62
|
+
_PARSER_FUNCTIONS: dict[Parser, Callable] = {
|
|
63
|
+
Parser.auto: parse_auto,
|
|
64
|
+
Parser.google: parse_google,
|
|
65
|
+
Parser.numpy: parse_numpy,
|
|
66
|
+
Parser.sphinx: parse_sphinx,
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
def _filter_parser_options(parser: Parser | None, options: dict[str, Any] | None) -> dict[str, Any] | None:
|
|
71
|
+
"""Filter options unsupported by the selected Griffe parser."""
|
|
72
|
+
if parser is None or options is None:
|
|
73
|
+
return options
|
|
74
|
+
|
|
75
|
+
accepted_options = set(inspect.signature(_PARSER_FUNCTIONS[parser]).parameters) - {"docstring"}
|
|
76
|
+
filtered_options = {}
|
|
77
|
+
for name, value in options.items():
|
|
78
|
+
if name in accepted_options:
|
|
79
|
+
if parser is Parser.auto and name == "per_style_options":
|
|
80
|
+
filtered_options[name] = {
|
|
81
|
+
style: _filter_parser_options(Parser(style), style_options)
|
|
82
|
+
for style, style_options in value.items()
|
|
83
|
+
}
|
|
84
|
+
else:
|
|
85
|
+
filtered_options[name] = value
|
|
86
|
+
else:
|
|
87
|
+
_logger.warning(f"Ignoring unsupported {parser.value} docstring parser option: {name}")
|
|
88
|
+
return filtered_options
|
|
89
|
+
|
|
57
90
|
|
|
58
91
|
class PythonHandler(BaseHandler):
|
|
59
92
|
"""The Python handler class."""
|
|
@@ -195,7 +228,9 @@ class PythonHandler(BaseHandler):
|
|
|
195
228
|
|
|
196
229
|
parser_name = options.docstring_style
|
|
197
230
|
parser = parser_name and Parser(parser_name)
|
|
198
|
-
parser_options
|
|
231
|
+
parser_options: dict[str, Any] | None = None
|
|
232
|
+
if options.docstring_options is not None:
|
|
233
|
+
parser_options = _filter_parser_options(parser, asdict(options.docstring_options))
|
|
199
234
|
|
|
200
235
|
if unknown_module:
|
|
201
236
|
extensions = self.normalize_extension_paths(options.extensions)
|
|
@@ -203,7 +238,7 @@ class PythonHandler(BaseHandler):
|
|
|
203
238
|
extensions=load_extensions(*extensions),
|
|
204
239
|
search_paths=self._paths,
|
|
205
240
|
docstring_parser=parser,
|
|
206
|
-
docstring_options=parser_options,
|
|
241
|
+
docstring_options=parser_options, # type: ignore[arg-type]
|
|
207
242
|
modules_collection=self._modules_collection,
|
|
208
243
|
lines_collection=self._lines_collection,
|
|
209
244
|
allow_inspection=options.allow_inspection,
|
|
@@ -107,7 +107,7 @@ class _StashCrossRefFilter:
|
|
|
107
107
|
|
|
108
108
|
@staticmethod
|
|
109
109
|
def _gen_key(length: int) -> str:
|
|
110
|
-
return "_" + "".join(random.choice(string.ascii_letters + string.digits) for _ in range(max(
|
|
110
|
+
return "_" + "".join(random.choice(string.ascii_letters + string.digits) for _ in range(max(2, length - 1))) # noqa: S311
|
|
111
111
|
|
|
112
112
|
def _gen_stash_key(self, length: int) -> str:
|
|
113
113
|
key = self._gen_key(length)
|
|
@@ -245,7 +245,13 @@ def do_format_attribute(
|
|
|
245
245
|
)
|
|
246
246
|
signature += f": {annotation}"
|
|
247
247
|
if show_value and attribute.value:
|
|
248
|
-
value = template.render(
|
|
248
|
+
value = template.render(
|
|
249
|
+
context.parent,
|
|
250
|
+
expression=attribute.value,
|
|
251
|
+
signature=True,
|
|
252
|
+
annotations_path="source",
|
|
253
|
+
backlink_type="used-by",
|
|
254
|
+
)
|
|
249
255
|
signature += f" = {value}"
|
|
250
256
|
|
|
251
257
|
signature = do_format_code(signature, line_length)
|
|
@@ -414,22 +420,20 @@ def _keep_object(name: str, filters: Sequence[tuple[Pattern, bool]]) -> bool:
|
|
|
414
420
|
|
|
415
421
|
|
|
416
422
|
def _parents(obj: Alias) -> set[str]:
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
parents.add(parent.final_target.path)
|
|
421
|
-
while parent.parent:
|
|
422
|
-
parent = parent.parent
|
|
423
|
+
parents = {obj.path}
|
|
424
|
+
parent = obj.parent
|
|
425
|
+
while parent is not None:
|
|
423
426
|
parents.add(parent.path)
|
|
424
|
-
if parent
|
|
427
|
+
if isinstance(parent, Alias):
|
|
425
428
|
parents.add(parent.final_target.path)
|
|
429
|
+
parent = parent.parent
|
|
426
430
|
return parents
|
|
427
431
|
|
|
428
432
|
|
|
429
433
|
def _remove_cycles(objects: list[Object | Alias]) -> Iterator[Object | Alias]:
|
|
430
434
|
suppress_errors = suppress(AliasResolutionError, CyclicAliasError)
|
|
431
435
|
for obj in objects:
|
|
432
|
-
if obj
|
|
436
|
+
if isinstance(obj, Alias):
|
|
433
437
|
with suppress_errors:
|
|
434
438
|
if obj.final_target.path in _parents(obj):
|
|
435
439
|
continue
|
|
@@ -778,6 +782,8 @@ class AutorefsHook(AutorefsHookInterface):
|
|
|
778
782
|
obj = self.current_object
|
|
779
783
|
while identifier and identifier[0] == ".":
|
|
780
784
|
identifier = identifier[1:]
|
|
785
|
+
if obj.parent is None:
|
|
786
|
+
break
|
|
781
787
|
obj = obj.parent
|
|
782
788
|
identifier = f"{obj.path}.{identifier}" if identifier else obj.path
|
|
783
789
|
|
|
@@ -808,12 +814,13 @@ class AutorefsHook(AutorefsHookInterface):
|
|
|
808
814
|
"module": "mod",
|
|
809
815
|
}.get(self.current_object.kind.value.lower(), "obj")
|
|
810
816
|
origin = self.current_object.path
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
lineno = self.current_object.docstring.lineno or 0
|
|
814
|
-
except AttributeError:
|
|
817
|
+
docstring = self.current_object.docstring
|
|
818
|
+
if docstring is None or docstring.parent is None:
|
|
815
819
|
filepath = self.current_object.filepath
|
|
816
820
|
lineno = 0
|
|
821
|
+
else:
|
|
822
|
+
filepath = docstring.parent.filepath
|
|
823
|
+
lineno = docstring.lineno or 0
|
|
817
824
|
|
|
818
825
|
return AutorefsHookInterface.Context(
|
|
819
826
|
domain="py",
|
|
@@ -43,7 +43,7 @@ Context:
|
|
|
43
43
|
</td>
|
|
44
44
|
<td>
|
|
45
45
|
<div class="doc-md-description">
|
|
46
|
-
{{ attribute.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
46
|
+
{{ attribute.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[attribute.name], config))) }}
|
|
47
47
|
</div>
|
|
48
48
|
</td>
|
|
49
49
|
</tr>
|
|
@@ -66,7 +66,7 @@ Context:
|
|
|
66
66
|
{% endif %}
|
|
67
67
|
–
|
|
68
68
|
<div class="doc-md-description">
|
|
69
|
-
{{ attribute.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
69
|
+
{{ attribute.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[attribute.name], config))) }}
|
|
70
70
|
</div>
|
|
71
71
|
</li>
|
|
72
72
|
{% endfor %}
|
|
@@ -88,7 +88,7 @@ Context:
|
|
|
88
88
|
<td><code><autoref identifier="{{ obj.path }}.{{ attribute.name }}" optional hover>{{ attribute.name }}</autoref></code></td>
|
|
89
89
|
<td class="doc-attribute-details">
|
|
90
90
|
<div class="doc-md-description">
|
|
91
|
-
{{ attribute.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
91
|
+
{{ attribute.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[attribute.name], config))) }}
|
|
92
92
|
</div>
|
|
93
93
|
<p>
|
|
94
94
|
{% if attribute.annotation %}
|
|
@@ -106,4 +106,4 @@ Context:
|
|
|
106
106
|
</tbody>
|
|
107
107
|
</table>
|
|
108
108
|
{% endblock spacy_style %}
|
|
109
|
-
{% endif %}
|
|
109
|
+
{% endif %}
|
|
@@ -35,7 +35,7 @@ Context:
|
|
|
35
35
|
<td><code><autoref identifier="{{ obj.path }}.{{ class.name }}" optional hover>{{ class.name }}</autoref></code></td>
|
|
36
36
|
<td>
|
|
37
37
|
<div class="doc-md-description">
|
|
38
|
-
{{ class.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
38
|
+
{{ class.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[class.name], config))) }}
|
|
39
39
|
</div>
|
|
40
40
|
</td>
|
|
41
41
|
</tr>
|
|
@@ -53,7 +53,7 @@ Context:
|
|
|
53
53
|
<b><code><autoref identifier="{{ obj.path }}.{{ class.name }}" optional hover>{{ class.name }}</autoref></code></b>
|
|
54
54
|
–
|
|
55
55
|
<div class="doc-md-description">
|
|
56
|
-
{{ class.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
56
|
+
{{ class.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[class.name], config))) }}
|
|
57
57
|
</div>
|
|
58
58
|
</li>
|
|
59
59
|
{% endfor %}
|
|
@@ -75,7 +75,7 @@ Context:
|
|
|
75
75
|
<td><code><autoref identifier="{{ obj.path }}.{{ class.name }}" optional hover>{{ class.name }}</autoref></code></td>
|
|
76
76
|
<td class="doc-class-details">
|
|
77
77
|
<div class="doc-md-description">
|
|
78
|
-
{{ class.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
78
|
+
{{ class.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[class.name], config))) }}
|
|
79
79
|
</div>
|
|
80
80
|
</td>
|
|
81
81
|
</tr>
|
|
@@ -83,4 +83,4 @@ Context:
|
|
|
83
83
|
</tbody>
|
|
84
84
|
</table>
|
|
85
85
|
{% endblock spacy_style %}
|
|
86
|
-
{% endif %}
|
|
86
|
+
{% endif %}
|
|
@@ -36,7 +36,7 @@ Context:
|
|
|
36
36
|
<td><code><autoref identifier="{{ obj.path }}.{{ function.name }}" optional hover>{{ function.name }}</autoref></code></td>
|
|
37
37
|
<td>
|
|
38
38
|
<div class="doc-md-description">
|
|
39
|
-
{{ function.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
39
|
+
{{ function.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[function.name], config))) }}
|
|
40
40
|
</div>
|
|
41
41
|
</td>
|
|
42
42
|
</tr>
|
|
@@ -56,7 +56,7 @@ Context:
|
|
|
56
56
|
<b><code><autoref identifier="{{ obj.path }}.{{ function.name }}" optional hover>{{ function.name }}</autoref></code></b>
|
|
57
57
|
–
|
|
58
58
|
<div class="doc-md-description">
|
|
59
|
-
{{ function.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
59
|
+
{{ function.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[function.name], config))) }}
|
|
60
60
|
</div>
|
|
61
61
|
</li>
|
|
62
62
|
{% endif %}
|
|
@@ -80,7 +80,7 @@ Context:
|
|
|
80
80
|
<td><code><autoref identifier="{{ obj.path }}.{{ function.name }}" optional hover>{{ function.name }}</autoref></code></td>
|
|
81
81
|
<td class="doc-function-details">
|
|
82
82
|
<div class="doc-md-description">
|
|
83
|
-
{{ function.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
83
|
+
{{ function.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[function.name], config))) }}
|
|
84
84
|
</div>
|
|
85
85
|
</td>
|
|
86
86
|
</tr>
|
|
@@ -89,4 +89,4 @@ Context:
|
|
|
89
89
|
</tbody>
|
|
90
90
|
</table>
|
|
91
91
|
{% endblock spacy_style %}
|
|
92
|
-
{% endif %}
|
|
92
|
+
{% endif %}
|
|
@@ -35,7 +35,7 @@ Context:
|
|
|
35
35
|
<td><code><autoref identifier="{{ obj.path }}.{{ module.name }}" optional hover>{{ module.name }}</autoref></code></td>
|
|
36
36
|
<td>
|
|
37
37
|
<div class="doc-md-description">
|
|
38
|
-
{{ module.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
38
|
+
{{ module.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[module.name], config))) }}
|
|
39
39
|
</div>
|
|
40
40
|
</td>
|
|
41
41
|
</tr>
|
|
@@ -53,7 +53,7 @@ Context:
|
|
|
53
53
|
<b><code><autoref identifier="{{ obj.path }}.{{ module.name }}" optional hover>{{ module.name }}</autoref></code></b>
|
|
54
54
|
–
|
|
55
55
|
<div class="doc-md-description">
|
|
56
|
-
{{ module.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
56
|
+
{{ module.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[module.name], config))) }}
|
|
57
57
|
</div>
|
|
58
58
|
</li>
|
|
59
59
|
{% endfor %}
|
|
@@ -75,7 +75,7 @@ Context:
|
|
|
75
75
|
<td><code><autoref identifier="{{ obj.path }}.{{ module.name }}" optional hover>{{ module.name }}</autoref></code></td>
|
|
76
76
|
<td class="doc-module-details">
|
|
77
77
|
<div class="doc-md-description">
|
|
78
|
-
{{ module.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
78
|
+
{{ module.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[module.name], config))) }}
|
|
79
79
|
</div>
|
|
80
80
|
</td>
|
|
81
81
|
</tr>
|
|
@@ -83,4 +83,4 @@ Context:
|
|
|
83
83
|
</tbody>
|
|
84
84
|
</table>
|
|
85
85
|
{% endblock spacy_style %}
|
|
86
|
-
{% endif %}
|
|
86
|
+
{% endif %}
|
|
@@ -35,7 +35,7 @@ Context:
|
|
|
35
35
|
<td><code><autoref identifier="{{ obj.path }}.{{ type_alias.name }}" optional hover>{{ type_alias.name }}</autoref></code></td>
|
|
36
36
|
<td>
|
|
37
37
|
<div class="doc-md-description">
|
|
38
|
-
{{ type_alias.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
38
|
+
{{ type_alias.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[type_alias.name], config))) }}
|
|
39
39
|
</div>
|
|
40
40
|
</td>
|
|
41
41
|
</tr>
|
|
@@ -53,7 +53,7 @@ Context:
|
|
|
53
53
|
<b><code><autoref identifier="{{ obj.path }}.{{ type_alias.name }}" optional hover>{{ type_alias.name }}</autoref></code></b>
|
|
54
54
|
–
|
|
55
55
|
<div class="doc-md-description">
|
|
56
|
-
{{ type_alias.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
56
|
+
{{ type_alias.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[type_alias.name], config))) }}
|
|
57
57
|
</div>
|
|
58
58
|
</li>
|
|
59
59
|
{% endfor %}
|
|
@@ -75,7 +75,7 @@ Context:
|
|
|
75
75
|
<td><code><autoref identifier="{{ obj.path }}.{{ type_alias.name }}" optional hover>{{ type_alias.name }}</autoref></code></td>
|
|
76
76
|
<td class="doc-type_alias-details">
|
|
77
77
|
<div class="doc-md-description">
|
|
78
|
-
{{ type_alias.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
78
|
+
{{ type_alias.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook|default(AutorefsHook(obj[type_alias.name], config))) }}
|
|
79
79
|
</div>
|
|
80
80
|
</td>
|
|
81
81
|
</tr>
|
|
@@ -169,4 +169,4 @@ Context:
|
|
|
169
169
|
{%- if config.modernize_annotations and expression is not string -%}
|
|
170
170
|
{%- set expression = expression.modernize() -%}
|
|
171
171
|
{%- endif -%}
|
|
172
|
-
{{ render(expression, config.annotations_path, backlink_type|default("")) }}
|
|
172
|
+
{{ render(expression, annotations_path|default(config.annotations_path), backlink_type|default("")) }}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mkdocstrings-python
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.6
|
|
4
4
|
Summary: A Python handler for mkdocstrings.
|
|
5
5
|
Author-Email: =?utf-8?q?Timoth=C3=A9e_Mazzucotelli?= <dev@pawamoy.fr>
|
|
6
6
|
License-Expression: ISC
|
|
@@ -145,7 +145,7 @@ dependencies = [
|
|
|
145
145
|
<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>
|
|
146
146
|
<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>
|
|
147
147
|
<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>
|
|
148
|
-
<a href="https://github.com/analog-cbarber"><img alt="analog-cbarber" src="https://avatars.githubusercontent.com/u/7408243?u=
|
|
148
|
+
<a href="https://github.com/analog-cbarber"><img alt="analog-cbarber" src="https://avatars.githubusercontent.com/u/7408243?u=fe0e7bf2882d1c9c901a341c2502e1518466527a&v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
149
149
|
<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>
|
|
150
150
|
<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>
|
|
151
151
|
<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>
|
|
@@ -157,17 +157,15 @@ dependencies = [
|
|
|
157
157
|
<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>
|
|
158
158
|
<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>
|
|
159
159
|
<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>
|
|
160
|
-
<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>
|
|
161
160
|
<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>
|
|
162
161
|
<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>
|
|
163
162
|
<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>
|
|
164
163
|
<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>
|
|
165
164
|
<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>
|
|
166
|
-
<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>
|
|
167
165
|
<a href="https://github.com/Cusp-AI"><img alt="Cusp-AI" src="https://avatars.githubusercontent.com/u/178170649?v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
168
166
|
</p></div>
|
|
169
167
|
|
|
170
168
|
|
|
171
|
-
*And
|
|
169
|
+
*And 4 more private sponsor(s).*
|
|
172
170
|
|
|
173
171
|
<!-- sponsors-end -->
|
|
@@ -2,8 +2,8 @@ mkdocstrings_handlers/python/__init__.py,sha256=Kxy1zA4JJy0aWxUa2_xl5PfYV2-mrBKJ
|
|
|
2
2
|
mkdocstrings_handlers/python/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
mkdocstrings_handlers/python/_internal/config.py,sha256=iSnsL-DXqWSm_0YKv-2giDxTdljxZWvDgTGkCo9GBPg,35261
|
|
4
4
|
mkdocstrings_handlers/python/_internal/debug.py,sha256=A6B3w6LWN22kYtvvbmz7vnh8Pr5hzvtrHhM3-Es8Isg,2882
|
|
5
|
-
mkdocstrings_handlers/python/_internal/handler.py,sha256=
|
|
6
|
-
mkdocstrings_handlers/python/_internal/rendering.py,sha256=
|
|
5
|
+
mkdocstrings_handlers/python/_internal/handler.py,sha256=Wn_0S4pw511tfC0m24sfbSNiUDlScDiJqEMFgrITdS8,16972
|
|
6
|
+
mkdocstrings_handlers/python/_internal/rendering.py,sha256=Nrkoi1FeRrsEGOUmiBuu13mm0LJXktQr3Zt2iTb3mQE,28564
|
|
7
7
|
mkdocstrings_handlers/python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
mkdocstrings_handlers/python/templates/material/_base/attribute.html.jinja,sha256=ajtKaGxs9-VJzPNiXbQTYTO6ADq8Ck9M9x2BfXakG0g,4838
|
|
9
9
|
mkdocstrings_handlers/python/templates/material/_base/backlinks.html.jinja,sha256=k8eX0lyQmmooaEotjYngdXO8RJldjixvZW30S5jGXOA,2109
|
|
@@ -11,21 +11,21 @@ mkdocstrings_handlers/python/templates/material/_base/children.html.jinja,sha256
|
|
|
11
11
|
mkdocstrings_handlers/python/templates/material/_base/class.html.jinja,sha256=Wo_g0ag5P7d3rolVRYxtJMIT2U1KC9h7rh8yQFcuprQ,12153
|
|
12
12
|
mkdocstrings_handlers/python/templates/material/_base/docstring.html.jinja,sha256=iKi-31JKoHwG7-w3S88A9YTu9kuV6-c9gwKb8bUtXuw,3440
|
|
13
13
|
mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html.jinja,sha256=VFwImgb1toxkjWqyhTNFQbyYE3d11yXI___3vpIu2u0,687
|
|
14
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja,sha256=
|
|
15
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja,sha256=
|
|
14
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja,sha256=WVy3pU1KGIhk1rFdADmWydj-KUXZW7STC_OWAl0yFyk,4349
|
|
15
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja,sha256=ChyfLTePcGq8_NYXNuBCSufZAzR3yqxu4pXuHySTmxI,3294
|
|
16
16
|
mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html.jinja,sha256=CxkEQ5bThOv0jq-zpkz7ZPMuHohd-6DEpor_Ojr7t-4,967
|
|
17
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja,sha256=
|
|
18
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja,sha256=
|
|
17
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja,sha256=AmPFt0by3CWHL4jBIFNJrVepl1aa467XBVjqqcOUMhM,3842
|
|
18
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja,sha256=_7s-TBJtv8i8qMkOREilNQ1E1VWab9XW-Y7Zo05OJYk,3311
|
|
19
19
|
mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html.jinja,sha256=tnzLsC0GpcnVryFDEao2go1U61DbxWAM-ZVKwC6QxTY,4049
|
|
20
20
|
mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html.jinja,sha256=kKZTWI7DfUWdCEnnzenDc6Rya2WHkPeStMdODjLImpE,7188
|
|
21
21
|
mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html.jinja,sha256=uLQdEAcaiItD91eEm9cikdJ319Yt09otEKOr2WdGJx4,3637
|
|
22
22
|
mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html.jinja,sha256=uhyvkQxAR5JbSgnoh_oglNPm2nb-DsAXi37C7ijUVaU,4765
|
|
23
23
|
mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html.jinja,sha256=a5wE6A89wt_zBk72yev4Qa_FUQiQ8JMLey4TEZYOJz4,4729
|
|
24
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/type_aliases.html.jinja,sha256=
|
|
24
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/type_aliases.html.jinja,sha256=SlNRZDplIBDaSKq0u1n0FaEeXyiWJWh89sJf7edblfI,3405
|
|
25
25
|
mkdocstrings_handlers/python/templates/material/_base/docstring/type_parameters.html.jinja,sha256=P_M8tvUKMS0DPpkS4GiT2FZq_bujQNIJA1tAjw8VWM0,8596
|
|
26
26
|
mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html.jinja,sha256=evSdVXZwKpHIJ7dnCP3njB0DD7rcJPgTPgeG54jRIUE,3612
|
|
27
27
|
mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html.jinja,sha256=bo1Fjfw21VZRdf8MPzReIr8sCFPDoBBWQloXJ42IObQ,4699
|
|
28
|
-
mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja,sha256=
|
|
28
|
+
mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja,sha256=zjjO_q9oCQCpVx6iR0adfog_lhQ85uM4oHZDJO_sKqU,6592
|
|
29
29
|
mkdocstrings_handlers/python/templates/material/_base/function.html.jinja,sha256=AljcQjr1e6laOEpp4LRPKjnQNkN99zcPISxbXeEqPf4,6239
|
|
30
30
|
mkdocstrings_handlers/python/templates/material/_base/labels.html.jinja,sha256=mue5CMl2WQpagj3aYqbUiAQX0P72aLCgY3MX_zEpE8s,786
|
|
31
31
|
mkdocstrings_handlers/python/templates/material/_base/language.html.jinja,sha256=7gyknTiapqCM8TjUHdXkQgZMmYwcuy6Ze0pkntE7g8s,617
|
|
@@ -114,8 +114,8 @@ mkdocstrings_handlers/python/templates/readthedocs/languages/en.html.jinja,sha25
|
|
|
114
114
|
mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html.jinja,sha256=e_DPZvMvaaJm0QyjTxW8SkBEbhMXBgBiMrLJ1osAwZc,46
|
|
115
115
|
mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html.jinja,sha256=OuvrkorxuL0gKZNYneann1bwd1Z2i5bBY7SbC496HDw,46
|
|
116
116
|
mkdocstrings_handlers/python/templates/readthedocs/style.css,sha256=Ds8vF1rSxc2B0c4P10osx4cqXHWMntcSCxmRfX-nfzw,971
|
|
117
|
-
mkdocstrings_python-2.0.
|
|
118
|
-
mkdocstrings_python-2.0.
|
|
119
|
-
mkdocstrings_python-2.0.
|
|
120
|
-
mkdocstrings_python-2.0.
|
|
121
|
-
mkdocstrings_python-2.0.
|
|
117
|
+
mkdocstrings_python-2.0.6.dist-info/METADATA,sha256=JtU8hPL0qhB5_sEDYrWIiEZRGEABbc0NwWA3gGG65a8,12384
|
|
118
|
+
mkdocstrings_python-2.0.6.dist-info/WHEEL,sha256=VP-D4TPS230sME9Z3vb3INXvo1yt0924YRm5AOsk_dE,90
|
|
119
|
+
mkdocstrings_python-2.0.6.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
|
120
|
+
mkdocstrings_python-2.0.6.dist-info/licenses/LICENSE,sha256=JGb4pdPEM8TTjjhr-uNCO7oXkiVrwG5Pz0JamcjNF_s,754
|
|
121
|
+
mkdocstrings_python-2.0.6.dist-info/RECORD,,
|
|
File without changes
|
{mkdocstrings_python-2.0.4.dist-info → mkdocstrings_python-2.0.6.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{mkdocstrings_python-2.0.4.dist-info → mkdocstrings_python-2.0.6.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|