如何计算 Python 模块的代码行、注释和文档字符串?
是否有工具或代码片段以某种形式生成以下输出:
lines_of_code = 98
lines_of_comments = 24
lines_of_documentation = 11
注 1:然后我将尝试将此数据提供给 Jenkins 绘制图表。
注 2:我知道 CLOC 会统计评论,但我想单独统计评论和文档字符串。
Is there a tool or snippet that produces the following output in some form:
lines_of_code = 98
lines_of_comments = 24
lines_of_documentation = 11
NOTE 1: I will then try to feed this data to Jenkins to graph.
NOTE 2: I am aware that CLOC counts comments but I would like to separately count comments and docstrings.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 PyLint: http://www.logilab.org/857
Look at PyLint: http://www.logilab.org/857