-
-
Notifications
You must be signed in to change notification settings - Fork 333
/
pyfixdoc.py
executable file
·518 lines (397 loc) · 13.5 KB
/
pyfixdoc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Implementation of apidoc-ish documentation which generates actual
Markdown that can be used with MkDocs.
* aware of type annotations
* non-bassackwards parameter descriptions (eyes on *you*, GOOG)
* handles forward references (prior to Python 3.8)
* links to source lines in a Git repo
* fixes bugs in `typing` and `inspect`
* does not require use of a plugin
* uses `icecream` for debugging
* b/c Sphinx sucks
You're welcome.
"""
from icecream import ic # type: ignore # pylint: disable=E0401
import inspect
import os
import re
import sys
import traceback
import typing
class PackageDoc:
"""
Because there doesn't appear to be any other Markdown-friendly
docstring support in Python.
See also:
* [PEP 256](https://www.python.org/dev/peps/pep-0256/)
* [`inspect`](https://docs.python.org/3/library/inspect.html)
"""
PAT_PARAM = re.compile(r"( \S+.*\:\n(?:\S.*\n)+)", re.MULTILINE)
PAT_NAME = re.compile(r"^\s+(.*)\:\n(.*)")
PAT_FWD_REF = re.compile(r"ForwardRef\('(.*)'\)")
def __init__ (
self,
module_name: str,
git_url: str,
class_list: typing.List[str],
) -> None:
"""
Constructor, to configure a `PackageDoc` object.
module_name:
name of the Python module
git_url:
URL for the Git source repository
class_list:
list of the classes to include in the apidocs
"""
self.module_name = module_name
self.git_url = git_url
self.class_list = class_list
self.module_obj = sys.modules[self.module_name]
self.md: typing.List[str] = [ "# Reference: `{}` package".format(self.module_name) ]
def show_all_elements (
self
) -> None:
"""
Show all possible elements from `inspect` for the given module, for
debugging purposes.
"""
for name, obj in inspect.getmembers(self.module_obj):
for n, o in inspect.getmembers(obj):
ic(name, n, o)
ic(type(o))
def write_markdown (
self,
path: str,
) -> None:
"""
Output the apidocs markdown to the given path.
path:
path for the output file
"""
ic("writing", path)
with open(path, "w") as f:
for line in self.md:
f.write(line)
f.write("\n")
def build (
self
) -> None:
"""
Build the apidocs documentation as markdown.
"""
todo_list:typing.Dict[ str, typing.Any] = self.get_todo_list()
# markdown for top-level module description
self.md.extend(self.get_docstring(self.module_obj))
# find and format the class definitions
for class_name in self.class_list:
self.format_class(todo_list, class_name)
# format the function definitions and types
self.format_functions()
self.format_types()
def get_todo_list (
self
) -> typing.Dict[ str, typing.Any]:
"""
Walk the module tree to find class definitions to document.
returns:
a dictionary of class objects which need apidocs generated
"""
todo_list: typing.Dict[ str, typing.Any] = {
class_name: class_obj
for class_name, class_obj in inspect.getmembers(self.module_obj, inspect.isclass)
if class_name in self.class_list
}
return todo_list
def get_docstring (
self,
obj,
parse=False,
arg_dict: dict = None,
) -> typing.List[str]:
"""
Get the docstring for the given object.
obj:
class definition for which its docstring will be inspected and parsed
parse:
flag to parse docstring or use the raw text; defaults to `False`
arg_dict:
optional dictionary of forward references, if parsed
returns:
list of lines of markdown
"""
if arg_dict is None:
arg_dict = {}
local_md: typing.List[str] = []
raw_docstring = obj.__doc__
if raw_docstring:
docstring = inspect.cleandoc(raw_docstring)
if parse:
local_md.append(self.parse_method_docstring(docstring, arg_dict))
else:
local_md.append(docstring)
local_md.append("\n")
return local_md
def parse_method_docstring (
self,
docstring: str,
arg_dict: dict,
) -> str:
"""
Parse the given method docstring.
docstring:
input docstring to be parsed
arg_dict:
optional dictionary of forward references
returns:
parsed/fixed docstring, as markdown
"""
local_md: typing.List[str] = []
for chunk in self.PAT_PARAM.split(docstring):
m_param = self.PAT_PARAM.match(chunk)
if m_param:
param = m_param.group()
m_name = self.PAT_NAME.match(param)
if m_name:
name = m_name.group(1).strip()
anno = self.fix_fwd_refs(arg_dict[name])
descrip = m_name.group(2).strip()
if name == "returns":
local_md.append("\n * *{}* : `{}` \n{}".format(name, anno, descrip))
elif name == "yields":
local_md.append("\n * *{}* : \n{}".format(name, descrip))
else:
local_md.append("\n * `{}` : `{}` \n{}".format(name, anno, descrip))
else:
chunk = chunk.strip()
if len(chunk) > 0:
local_md.append(chunk)
return "\n".join(local_md)
def fix_fwd_refs (
self,
anno: str,
) -> typing.Optional[str]:
"""
Substitute the quoted forward references for a given module class.
anno:
raw annotated type for the forward reference
returns:
fixed forward reference, as markdown; or `None` if no annotation is supplied
"""
results: list = []
if not anno:
return None
for term in anno.split(", "):
for chunk in self.PAT_FWD_REF.split(term):
if len(chunk) > 0:
results.append(chunk)
return ", ".join(results)
def document_method (
self,
path_list: list,
name: str,
obj: typing.Any,
func_kind: str,
) -> typing.Tuple[int, typing.List[str]]:
"""
Generate apidocs markdown for the given class method.
path_list:
elements of a class path, as a list
name:
class method name
obj:
class method object
func_kind:
function kind
returns:
line number, plus apidocs for the method as a list of markdown lines
"""
local_md: typing.List[str] = ["---"]
# format a header + anchor
frag = ".".join(path_list + [ name ])
anchor = "#### [`{}` {}](#{})".format(name, func_kind, frag)
local_md.append(anchor)
# link to source code in Git repo
code = obj.__code__
line_num = code.co_firstlineno
file = code.co_filename.replace(os.getcwd(), "")
src_url = "[*\[source\]*]({}{}#L{})\n".format(self.git_url, file, line_num)
local_md.append(src_url)
# format the callable signature
sig = inspect.signature(obj)
arg_list = self.get_arg_list(sig)
arg_list_str = "{}".format(", ".join([ a[0] for a in arg_list ]))
local_md.append("```python")
local_md.append("{}({})".format(name, arg_list_str))
local_md.append("```")
# include the docstring, with return annotation
arg_dict: dict = {
name.split("=")[0]: anno
for name, anno in arg_list
}
arg_dict["yields"] = None
ret = sig.return_annotation
if ret:
arg_dict["returns"] = self.extract_type_annotation(ret)
local_md.extend(self.get_docstring(obj, parse=True, arg_dict=arg_dict))
local_md.append("")
return line_num, local_md
def get_arg_list (
self,
sig: inspect.Signature,
) -> list:
"""
Get the argument list for a given method.
sig:
inspect signature for the method
returns:
argument list of `(arg_name, type_annotation)` pairs
"""
arg_list: list = []
for param in sig.parameters.values():
#ic(param.name, param.empty, param.default, param.annotation, param.kind)
if param.name == "self":
pass
else:
if param.kind == inspect.Parameter.VAR_POSITIONAL:
name = "*{}".format(param.name)
elif param.kind == inspect.Parameter.VAR_KEYWORD:
name = "**{}".format(param.name)
elif param.default == inspect.Parameter.empty:
name = param.name
else:
if isinstance(param.default, str):
default_repr = repr(param.default).replace("'", '"')
else:
default_repr = param.default
name = "{}={}".format(param.name, default_repr)
anno = self.extract_type_annotation(param.annotation)
arg_list.append((name, anno))
return arg_list
def extract_type_annotation (
self,
sig: inspect.Signature,
):
"""
Extract the type annotation for a given method, correcting `typing`
formatting problems as needed.
sig:
inspect signature for the method
returns:
corrected type annotation
"""
type_name = str(sig)
type_class = sig.__class__.__module__
try:
if type_class != "typing":
if type_name.startswith("<class"):
type_name = type_name.split("'")[1]
if type_name == "~AnyStr":
type_name = "typing.AnyStr"
elif type_name.startswith("~"):
type_name = type_name[1:]
except Exception:
ic(type_name)
traceback.print_exc()
finally:
return type_name
def document_type (
self,
path_list: list,
name: str,
obj: typing.Any,
) -> typing.List[str]:
"""
Generate apidocs markdown for the given type definition.
path_list:
elements of a class path, as a list
name:
type name
obj:
type object
returns:
apidocs for the type, as a list of lines of markdown
"""
local_md: typing.List[str] = []
# format a header + anchor
frag = ".".join(path_list + [ name ])
anchor = "#### [`{}` {}](#{})".format(name, "type", frag)
local_md.append(anchor)
# show type definition
local_md.append("```python")
local_md.append("{} = {}".format(name, obj))
local_md.append("```")
local_md.append("")
return local_md
def format_class (
self,
todo_list: typing.Dict[ str, typing.Any],
class_name: str,
) -> None:
"""
Format apidocs as markdown for the given class.
todo_list:
list of classes to be documented
class_name:
name of the class to document
"""
self.md.append("## [`{class_name}` class](#{class_name})".format(class_name=class_name))
class_obj = todo_list[class_name]
docstring = class_obj.__doc__
if docstring:
# add the raw docstring for a class
self.md.append(docstring)
obj_md_pos: typing.Dict[int, typing.List[str]] = {}
for member_name, member_obj in inspect.getmembers(class_obj):
path_list = [self.module_name, class_name]
if member_name.startswith("__") or not member_name.startswith("_"):
if member_name not in class_obj.__dict__:
# inherited method
continue
if inspect.isfunction(member_obj):
func_kind = "method"
elif inspect.ismethod(member_obj):
func_kind = "classmethod"
else:
continue
line_num, obj_md = self.document_method(path_list, member_name, member_obj, func_kind)
obj_md_pos[line_num] = obj_md
for _pos, obj_md in sorted(obj_md_pos.items()):
self.md.extend(obj_md)
def format_functions (
self
) -> None:
"""
Walk the module tree, and for each function definition format its
apidocs as markdown.
"""
self.md.append("---")
self.md.append("## [module functions](#{})".format(self.module_name))
for func_name, func_obj in inspect.getmembers(self.module_obj, inspect.isfunction):
if not func_name.startswith("_"):
_line_num, obj_md = self.document_method([self.module_name], func_name, func_obj, "function")
self.md.extend(obj_md)
def format_types (
self
) -> None:
"""
Walk the module tree, and for each type definition format its apidocs
as markdown.
"""
self.md.append("---")
self.md.append("## [module types](#{})".format(self.module_name))
for name, obj in inspect.getmembers(self.module_obj):
if obj.__class__.__module__ == "typing":
if not str(obj).startswith("~"):
obj_md = self.document_type([self.module_name], name, obj)
self.md.extend(obj_md)
######################################################################
## test entry point
if __name__ == "__main__":
pkg_doc = PackageDoc(
"foo",
"http://example.com/",
[],
)