python实现代码统计程序


Posted in Python onSeptember 19, 2019

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

# encoding="utf-8"

"""
统计代码行数
"""

import sys
import os

def count_file_line(path):
 """统计文件的有效行数"""
 countLine = 0
 # 设置一个标志位,当遇到以"""或者'''开头或者结尾的时候,置为False
 flag = True

 # 使用utf-8格式的编码方式读取文件,如果读取失败,将使用gbk编码方式读取文件
 try:
 fp = open(path, "r", encoding="utf-8")
 encoding_type = "utf-8"
 fp.close()
 except:
 encoding_type = "gbk"

 with open(path, "r", encoding=encoding_type) as fp:
 for line in fp:
  # 空行不统计
  if line.strip():
  line = line.strip()
  # 注意下面的这两个elif必须要前面,这样子当('"""')结束之后及时将flag置为True
  if line.endswith('"""') and flag == False:
   flag = True
   continue
  if line.endswith("'''") and flag == False:
   flag = True
   continue
  if flag == False:
   continue
  if line.startswith("#!") or line.startswith("#-*-") or line.startswith("# encoding"):
   countLine += 1
  # 如果以“#”号开头的,不统计
  elif line.startswith("#"):
   continue
  # 如果同时以("'''")或者('"""')开头或者结尾(比如:"""aaa"""),那么不统计
  elif line.startswith('"""') and line.endswith('"""') and line != '"""':
   continue
  elif line.startswith("'''") and line.endswith("'''") and line != "'''":
   continue
  # 如果以("'''")或者('"""')开头或者结尾(比如:aaa"""或者"""bbb),那么不统计
  # 注意下面的这两个elif必须要放后面
  elif line.startswith('"""') and flag == True:
   flag = False
   continue
  elif line.startswith("'''") and flag == True:
   flag = False
   continue
  else:
   countLine += 1
 return countLine

def count_codes(path,file_types=[]):
 """统计所有文件代码行"""
 # 判断path是目录还是文件,如果是目录的话,遍历目录下所有的文件
 if not os.path.exists(path):
 print("您输入的路径不存在!")
 return 0
 countTotalLine = 0
 file_paths = {}
 if os.path.isdir(path):
 for root,dirs,files in os.walk(path):
  for name in files:
  if not file_types:
   file_types = ["txt","py"]
   # print(file_types)
  if os.path.splitext(name)[1][1:] in file_types:
   file_path = os.path.normpath(os.path.join(root,name))
   # print(file_path)
   file_lines = count_file_line(file_path)
   countTotalLine += file_lines
   file_paths[file_path] = file_lines
 else:
 if not file_types:
  file_types = ["txt","py"]
 if os.path.splitext(path)[1][1:] in file_types:
  countTotalLine = count_file_line(path)
  file_paths[path] = count_file_line(path)

 return countTotalLine,file_paths


if __name__ == "__main__":
 # 打印出命令行输入的参数
 # print(sys.argv)
 if len(sys.argv) < 2:
 print("请输入路径!")
 sys.exit()
 path = sys.argv[1]
 # print(path)
 file_types = sys.argv[2:]
 # print(file_types)
 print(count_codes(path,file_types))

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

Python 相关文章推荐
python 解析html之BeautifulSoup
Jul 07 Python
浅谈pyhton学习中出现的各种问题(新手必看)
May 17 Python
python利用有道翻译实现&quot;语言翻译器&quot;的功能实例
Nov 14 Python
详解python的sorted函数对字典按key排序和按value排序
Aug 10 Python
python实现代码统计器
Sep 19 Python
python单例设计模式实现解析
Jan 07 Python
Python接口自动化判断元素原理解析
Feb 24 Python
Python如何输出整数
Jun 07 Python
通过自学python能找到工作吗
Jun 21 Python
Python爬虫简单运用爬取代理IP的实现
Dec 01 Python
python openssl模块安装及用法
Dec 06 Python
Django路由层如何获取正确的url
Jul 15 Python
python tkinter图形界面代码统计工具(更新)
Sep 18 #Python
python3获取url文件大小示例代码
Sep 18 #Python
弄懂这56个Python使用技巧(轻松掌握Python高效开发)
Sep 18 #Python
python3使用GUI统计代码量
Sep 18 #Python
django中的图片验证码功能
Sep 18 #Python
python tkinter图形界面代码统计工具
Sep 18 #Python
Python自动生成代码 使用tkinter图形化操作并生成代码框架
Sep 18 #Python
You might like
php桌面中心(一) 创建数据库
2007/03/11 PHP
phpmyadmin提示The mbstring extension is missing的解决方法
2014/12/17 PHP
js cookies 常见网页木马挂马代码 24小时只加载一次
2009/04/13 Javascript
JavaScript Event学习第六章 事件的访问
2010/02/07 Javascript
javascript作用域容易记错的两个地方分析
2012/06/22 Javascript
JavaScript Math.ceil() 函数使用介绍
2013/12/11 Javascript
详解JavaScript中undefined与null的区别
2014/03/29 Javascript
javaScript中两个等于号和三个等于号之间的区别介绍
2014/06/27 Javascript
[原创]推荐10款最热门jQuery UI框架
2014/08/19 Javascript
js中取得变量绝对值的方法
2015/01/03 Javascript
jquery实现textarea输入框限制字数的方法
2015/01/15 Javascript
jQuery实现获取绑定自定义事件元素的方法
2015/12/02 Javascript
基于jQuery日历插件制作日历
2016/03/11 Javascript
JQuery给select添加/删除节点的实现代码
2016/04/26 Javascript
用JS动态改变表单form里的action值属性的两种方法
2016/05/25 Javascript
angularjs实现搜索的关键字在正文中高亮出来
2017/06/13 Javascript
微信小程序提交form操作示例
2018/12/30 Javascript
elementUI多选框反选的实现代码
2019/04/03 Javascript
JS获取当前时间戳方法解析
2020/08/29 Javascript
vue+elementUI实现简单日历功能
2020/09/24 Javascript
Python中使用PDB库调试程序
2015/04/05 Python
python字符串常用方法
2018/06/14 Python
Python 利用内置set函数对字符串和列表进行去重的方法
2018/06/29 Python
flask框架使用orm连接数据库的方法示例
2018/07/16 Python
Python 字符串与二进制串的相互转换示例
2018/07/23 Python
对Python的多进程锁的使用方法详解
2019/02/18 Python
Python3 Tkinter选择路径功能的实现方法
2019/06/14 Python
python+django+selenium搭建简易自动化测试
2020/08/19 Python
css3动画效果抖动解决方法
2018/09/03 HTML / CSS
实习教师自我鉴定
2013/12/09 职场文书
平面设计专业大学生职业规划书
2014/03/12 职场文书
建筑安全责任书范本
2014/07/24 职场文书
2014员工聘用协议书(最新版)
2014/11/24 职场文书
python Tkinter的简单入门教程
2021/04/11 Python
深入理解redis中multi与pipeline
2021/06/02 Redis
Elasticsearch6.2服务器升配后的bug(避坑指南)
2022/09/23 Servers