计算 Python 包中类和类层次结构的数量

发布于 2024-12-04 19:25:10 字数 102 浏览 3 评论 0原文

我有一个目录,其中包含许多子目录,其中包含与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝海似她心 2024-12-11 19:25:10

您不需要为此编写 Python 脚本。从命令行输入:

grep -c "^class " *.py

并将返回当前目录中每个 .py 文件的类数。要查找一个类是否是顶级类,恐怕您必须导入每个类并查询每个模块。

You don't need to write a Python script for that. From the command line type:

grep -c "^class " *.py

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文