软件著作权统计代码行数

最近在申请软件著作权,其中有要求要统计行数,发现网上的版本都不尽人意,往往只能统计一层,所以我就改进了一下😁,改成了递归调用版本,这样就不需要再手动遍历文件夹了

#coding:utf-8
import os

class StatLines(object):
    total = 0
    def stat_lines(self,path):
        for root, dirs, files in os.walk(path, topdown=False):
            for file in files:
                if file.endswith('.py'):
                    file = os.path.join(root, file)
                    lines = open(file, encoding='utf-8').readlines()
                    count = 0
                    for line in lines:
                        if line == '\n':
                            continue
                        elif line.startswith('#'):
                            continue
                        else:
                            count += 1
                    self.total += count
                    print('%s has %d lines' %(file,count))
            for dir in dirs:
                path = os.path.join(root, dir)
                self.stat_lines(path)
            
        print('total lines is: %d' %self.total)

if __name__ == '__main__':
    sl = StatLines()
    sl.stat_lines('想要统计的文件夹路径')

全部评论
提交github的merge request应该会有显示行数
点赞 回复 分享
发布于 2023-03-18 08:17 北京
疯狂给这个代码点赞
点赞 回复 分享
发布于 2023-03-19 16:09 湖南
哇改进后的好多了
点赞 回复 分享
发布于 2023-03-19 16:21 广东
ide里面有统计行数的插件
点赞 回复 分享
发布于 2023-03-20 10:07 安徽

相关推荐

10-15 15:00
潍坊学院 golang
跨考小白:这又不是官方
投递拼多多集团-PDD等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
1
分享
牛客网
牛客企业服务