计算 Python 包中类和类层次结构的数量
我有一个目录,其中包含许多子目录,其中包含与 Python 包相对应的 Python 源代码。我想计算这些目录/包中包含多少个类和根类(层次结构的顶部)。 有什么简单的方法可以做到这一点吗?
I have a directory with many subdirectories with Python source code which correspond to a Python package. I want to count how many classes and root classes (top of hierarchies) are contained in these directories/package.
Any easy way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要为此编写 Python 脚本。从命令行输入:
并将返回当前目录中每个 .py 文件的类数。要查找一个类是否是顶级类,恐怕您必须导入每个类并查询每个模块。
You don't need to write a Python script for that. From the command line type:
and will return the number of classes in the current directory for each .py file. To find if a class is a top class I'm afraid you will have to import each and query each module.