forked from pcarruscag/FADO
-
Notifications
You must be signed in to change notification settings - Fork 1
/
documentation.py
61 lines (55 loc) · 1.89 KB
/
documentation.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
# Copyright 2019-2020, FADO Contributors (cf. AUTHORS.md)
#
# This file is part of FADO.
#
# FADO is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# FADO is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with FADO. If not, see <https://www.gnu.org/licenses/>.
import inspect
def printDocumentation(obj=None):
"""
Prints the documentation strings of an object (class or function).
For classes print the documentation for all "public" and documented methods.
"""
if obj is None:
printDocumentation(printDocumentation)
return
#end
# Documentation for a function
if str(obj).startswith("<function"):
if not obj.__doc__: return
sig = str(inspect.signature(obj))
sig = sig.replace("(self, ","(")
sig = sig.replace("(self,","(")
sig = sig.replace("(self","(")
name = str(obj).split()[1] + sig
print("")
print(name)
print("-"*len(name))
print(inspect.getdoc(obj))
print("\n"+"*"*80)
return
#end
# Documentation for classes
className = str(obj).split(".")[-1].split("'")[0]
name = className + str(inspect.signature(obj))
print("")
print(name)
print("-"*len(name))
print(inspect.getdoc(obj))
print("\n"+"*"*80+"\n")
for methodName in dir(obj):
if methodName.startswith("_"): continue
method = getattr(obj,methodName)
printDocumentation(method)
#end
#end