Python实现代码统计工具


Posted in Python onSeptember 19, 2019

本文实例为大家分享了Python实现代码统计工具的具体代码,供大家参考,具体内容如下

思路:首先获取所有文件,然后统计每个文件中代码的行数,最后将行数相加.

实现的功能:

统计每个文件的行数;

统计总行数;

支持指定统计文件类型,排除不想统计的文件类型;

排除空行;

排除注释行

import os
import sys
import os.path
#for i in sys.argv:
# print (i)

# 判断单个文件的代码行数
def count_file_lines(file_path):
 line_count = 0
 flag=True
 try:
 fp = open(file_path,"r",encoding="utf-8")
 encoding_type="utf-8"
 fp.close()
 except:
 encoding_type="gbk"
 with open(file_path,"r",encoding=encoding_type) as fp:
 for line in fp:
 #print (line_count)
  if line.strip()=="":
  continue
  else:
  if line.strip().endswith("'''") and flag == False:
   flag=True
   continue
  if line.strip().endswith('"""') and flag == False:
   flag=True
   continue
  if flag == False:
   continue
  if line.strip().startswith("#encoding") or line.strip().startswith("#-*-"):
   line_count += 1
  #elif line.strip().startswith('"""') and line.strip().endswith('"""') and line.strip()!='"""':
 #continue
  #elif line.strip().startswith("'''") and line.strip().endswith("'''") and line.strip()!="'''":
 #continue
  elif line.strip().startswith('#'):
   continue
  elif line.strip().startswith("'''") and flag == True:
   flag = False
   continue
  elif line.strip().startswith('"""') and flag == True:
   flag = False
   continue
  else:
   line_count += 1
 return line_count

def count_code_lines(path,file_types=[]):
 # 判断路径是否存在
 if not os.path.exists(path):
 print("您输入的目录或文件路径不存在")
 return 0

 line_count=0 #代码行总数
 file_lines_dict={} #每个文件代码行数

 # 判断是否为文件
 if os.path.isfile(path):
 file_type = os.path.splitext(path)[1][1:] #取到文件后缀名

 # 判断文件类型是否满足条件
 if len(file_types)==0:
 file_types=["py","cpp","c","java","ruby","ini","go","html","css","js","txt","vbs","php","asp","sh"]
 if file_type in file_types:
 line_count = count_file_lines(path)
 return line_count
 else:
 file_path = []
 for root, dirs, files in os.walk(path):
  for file in files:
  file_path.append(os.path.join(root,file))
  for f in file_path:
   file_type = os.path.splitext(f)[1][1:]
   if len(file_types)==0:
   file_types=

["py","cpp","c","java","ruby","ini","go","html","css","js","txt","vbs","php","asp","sh"]
   if file_type not in file_types:
   continue
   line_num = count_file_lines(f)
   line_count += line_num
   file_lines_dict[f] = line_num
  return line_count,file_lines_dict
 

if __name__=="__main__":
 print (sys.argv)
 if len(sys.argv) < 2:
 print ("请输入待统计行数的代码绝对路径!")
 sys.exit()
 count_path = sys.argv[1]
 file_types = []
 if len(sys.argv) >2:
 for i in sys.argv[2:]:
  file_types.append(i)

#print(count_path,file_types)
print(count_code_lines(count_path,file_types))
#print(count_file_lines("b.py"))

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python实现发送email的几种常用方法
Aug 18 Python
浅谈python新手中常见的疑惑及解答
Jun 14 Python
利用numpy实现一、二维数组的拼接简单代码示例
Dec 15 Python
python实现数据预处理之填充缺失值的示例
Dec 22 Python
python抓取文件夹的所有文件
Feb 27 Python
Django如何自定义model创建数据库索引的顺序
Jun 20 Python
Django 对象关系映射(ORM)源码详解
Aug 06 Python
简单了解python中的与或非运算
Sep 18 Python
浅谈pandas dataframe对除数是零的处理
Jul 20 Python
Python创建自己的加密货币的示例
Mar 01 Python
浅谈Python实现opencv之图片色素的数值运算和逻辑运算
Jun 23 Python
一文搞懂Python Sklearn库使用
Aug 23 Python
python实现统计代码行数的小工具
Sep 19 #Python
python日志模块logbook使用方法
Sep 19 #Python
python统计指定目录内文件的代码行数
Sep 19 #Python
python如何从文件读取数据及解析
Sep 19 #Python
python实现代码统计器
Sep 19 #Python
python实现代码统计程序
Sep 19 #Python
python tkinter图形界面代码统计工具(更新)
Sep 18 #Python
You might like
smarty中js的调用方法示例
2014/10/27 PHP
PHP正则匹配日期和时间(时间戳转换)的实例代码
2016/12/14 PHP
PHP tp5中使用原生sql查询代码实例
2020/10/28 PHP
动态刷新 dorado树的js代码
2009/06/12 Javascript
location.href语句与火狐不兼容的问题
2010/07/04 Javascript
js新闻滚动 js如何实现新闻滚动效果
2013/01/07 Javascript
JQuery操作Select的Options的Bug(IE8兼容性视图模式)
2013/04/21 Javascript
json字符串之间的相互转换示例代码
2014/08/21 Javascript
js仿土豆网带缩略图的焦点图片切换效果实现方法
2015/02/23 Javascript
深入探讨前端框架react
2015/12/09 Javascript
javascript实现保留两位小数的多种方法
2015/12/18 Javascript
jQuery中Chosen三级联动功能实例代码
2017/03/07 Javascript
web前端页面生成exe可执行文件的方法
2018/02/08 Javascript
Bootstrap4 gulp 配置详解
2019/01/06 Javascript
微信网页登录逻辑与实现方法
2019/04/29 Javascript
vue-video-player实现实时视频播放方式(监控设备-rtmp流)
2020/08/10 Javascript
如何在面试中手写出javascript节流和防抖函数
2020/10/22 Javascript
Python中无限元素列表的实现方法
2014/08/18 Python
零基础写python爬虫之HTTP异常处理
2014/11/05 Python
Pyqt QImage 与 np array 转换方法
2019/06/27 Python
对Python中小整数对象池和大整数对象池的使用详解
2019/07/09 Python
python的常见矩阵运算(小结)
2019/08/07 Python
Python全局锁中如何合理运用多线程(多进程)
2019/11/06 Python
django使用F方法更新一个对象多个对象字段的实现
2020/03/28 Python
Python collections.defaultdict模块用法详解
2020/06/18 Python
Django ORM判断查询结果是否为空,判断django中的orm为空实例
2020/07/09 Python
Django model class Meta原理解析
2020/11/14 Python
HTML5之SVG 2D入门3—文本与图像及渲染文本介绍
2013/01/30 HTML / CSS
阿拉伯世界最大的电子商务网站:Souq沙特阿拉伯
2016/10/28 全球购物
某个公司的Java笔面试题
2016/03/11 面试题
linux下进程间通信的方式
2013/01/23 面试题
小学英语教学反思案例
2014/02/04 职场文书
普通员工辞职信范文
2015/05/12 职场文书
暑假打工感想
2015/08/07 职场文书
国庆节到了,利用JS实现一个生成国庆风头像的小工具 详解实现过程
2021/10/05 Javascript
关于mysql中时间日期类型和字符串类型的选择
2021/11/27 MySQL