How can I analyze Python code to identify problematic areas?

前端 未结 8 1888
鱼传尺愫
鱼传尺愫 2020-12-07 06:58

I have a large source repository split across multiple projects. I would like to produce a report about the health of the source code, identifying problem areas that need to

8条回答
  •  情深已故
    2020-12-07 07:44

    Pycana works like charm when you need to understand a new project!

    PyCAna (Python Code Analyzer) is a fancy name for a simple code analyzer for python that creates a class diagram after executing your code.

    See how it works: http://pycana.sourceforge.net/

    output:

提交回复
热议问题