代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Python
】
删除注释并编译
作者:
simon-zzm
/ 发布于
2012/12/4
/
819
#!/bin/env python # -*- coding:utf-8 -*- # ------------------------------- # Filename: # Revision: # Date: 2012-12-3 # Author: simonzhang # Email: simon-zzm@163.com # Web: www.simonzhang.net # ------------------------------- import os import re import sys import shutil import compileall def delete_Notes(py_file): # 原始文件只读打开,处理文件追加打开 _tmp_sr_file = open(py_file, "rb").readlines() _tmp_de_file = open("%s.swp" % py_file, "ab") _skip_status = 0 _now_line = 0 _multi_count = 0 # 循环处理 for line in _tmp_sr_file: # 跳过前10行,因为我的开头注释有10行 if _now_line > 10: # 获取开头一位和三位 try: _single_row_notes = line.strip()[0] except: _single_row_notes = "" try: _multi_row_notes = line.strip()[0:3] except: _multi_row_notes = "" # 获取行是否为注释 if _single_row_notes == "#": _skip_status = 1 elif _multi_row_notes == "'''": if _multi_count == 0: _skip_status = 1 _multi_count = 1 else: _skip_status = 1 _multi_count = 0 elif _multi_count == 1: _skip_status = 1 else: _skip_status = 0 else: _skip_status = 0 # 判断是否跳过写入 if _skip_status == 0: _tmp_de_file.write(line) _now_line += 1 _tmp_de_file.close() # 处理完毕将临时文件处理为原始文件 shutil.move("%s.swp" % py_file, py_file) def main(): _get_src_path = sys.argv[1] _get_dec_path = sys.argv[2] if os.path.exists(_get_src_path): # 拷贝原始文件夹 shutil.copytree(_get_src_path, _get_dec_path) # 删除原始文件中的注释 find_py_file = re.compile(r"^.*\.py$") find_walk = os.walk(_get_dec_path) for path,dirs,files in find_walk: for f in files: if find_py_file.search(f): delete_Notes("%s/%s" % (path, f)) # 编译成字节码 compileall.compile_dir(_get_dec_path) else: print "Path Error!" if __name__ == "__main__": main()
试试其它关键字
删除注释
同语言下
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
simon-zzm
贡献的其它代码
(
1
)
.
删除注释并编译
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3