You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
351 B
16 lines
351 B
|
|
from pycallgraph2 import PyCallGraph
|
|
from pycallgraph2.output import GraphvizOutput
|
|
from pycallgraph2 import Config
|
|
from pycallgraph2 import GlobbingFilter
|
|
|
|
def main():
|
|
# TODO: 调用各种类、函数
|
|
return
|
|
|
|
if __name__ == "__main__":
|
|
graphviz = GraphvizOutput()
|
|
graphviz.output_file = 'graph.png'
|
|
with PyCallGraph(output=graphviz):
|
|
main()
|