python实现的用于搜索文件并进行内容替换的类实例


Posted in Python onJune 28, 2015

本文实例讲述了python实现的用于搜索文件并进行内容替换的类。分享给大家供大家参考。具体实现方法如下:

#!/usr/bin/python -O
# coding: UTF-8
"""
-replace string in files (recursive)
-display the difference.
v0.2
 - search_string can be a re.compile() object -> use re.sub for replacing
v0.1
 - initial version
  Useable by a small "client" script, e.g.:
-------------------------------------------------------------------------------
#!/usr/bin/python -O
# coding: UTF-8
import sys, re
#sys.path.insert(0,"/path/to/git/repro/") # Please change path
from replace_in_files import SearchAndReplace
SearchAndReplace(
  search_path = "/to/the/files/",
  # e.g.: simple string replace:
  search_string = 'the old string',
  replace_string = 'the new string',
  # e.g.: Regular expression replacing (used re.sub)
  #search_string = re.compile('{% url (.*?) %}'),
  #replace_string = "{% url '\g<1>' %}",
  search_only = True, # Display only the difference
  #search_only = False, # write the new content
  file_filter=("*.py",), # fnmatch-Filter
)
-------------------------------------------------------------------------------
:copyleft: 2009-2011 by Jens Diemer
"""
__author__ = "Jens Diemer"
__license__ = """GNU General Public License v3 or above -
 http://www.opensource.org/licenses/gpl-license.php"""
__url__ = "http://www.jensdiemer.de"
__version__ = "0.2"
import os, re, time, fnmatch, difflib
# FIXME: see http://stackoverflow.com/questions/4730121/cant-get-an-objects-class-name-in-python
RE_TYPE = type(re.compile(""))
class SearchAndReplace(object):
  def __init__(self, search_path, search_string, replace_string,
                    search_only=True, file_filter=("*.*",)):
    self.search_path = search_path
    self.search_string = search_string
    self.replace_string = replace_string
    self.search_only = search_only
    self.file_filter = file_filter
    assert isinstance(self.file_filter, (list, tuple))
    # FIXME: see http://stackoverflow.com/questions/4730121/cant-get-an-objects-class-name-in-python
    self.is_re = isinstance(self.search_string, RE_TYPE)
    print "Search '%s' in [%s]..." % (
      self.search_string, self.search_path
    )
    print "_" * 80
    time_begin = time.time()
    file_count = self.walk()
    print "_" * 80
    print "%s files searched in %0.2fsec." % (
      file_count, (time.time() - time_begin)
    )
  def walk(self):
    file_count = 0
    for root, dirlist, filelist in os.walk(self.search_path):
      if ".svn" in root:
        continue
      for filename in filelist:
        for file_filter in self.file_filter:
          if fnmatch.fnmatch(filename, file_filter):
            self.search_file(os.path.join(root, filename))
            file_count += 1
    return file_count
  def search_file(self, filepath):
    f = file(filepath, "r")
    old_content = f.read()
    f.close()
    if self.is_re or self.search_string in old_content:
      new_content = self.replace_content(old_content, filepath)
      if self.is_re and new_content == old_content:
        return
      print filepath
      self.display_plaintext_diff(old_content, new_content)
  def replace_content(self, old_content, filepath):
    if self.is_re:
      new_content = self.search_string.sub(self.replace_string, old_content)
      if new_content == old_content:
        return old_content
    else:
      new_content = old_content.replace(
        self.search_string, self.replace_string
      )
    if self.search_only != False:
      return new_content
    print "Write new content into %s..." % filepath,
    try:
      f = file(filepath, "w")
      f.write(new_content)
      f.close()
    except IOError, msg:
      print "Error:", msg
    else:
      print "OK"
    print
    return new_content
  def display_plaintext_diff(self, content1, content2):
    """
    Display a diff.
    """
    content1 = content1.splitlines()
    content2 = content2.splitlines()
    diff = difflib.Differ().compare(content1, content2)
    def is_diff_line(line):
      for char in ("-", "+", "?"):
        if line.startswith(char):
          return True
      return False
    print "line | text\n-------------------------------------------"
    old_line = ""
    in_block = False
    old_lineno = lineno = 0
    for line in diff:
      if line.startswith(" ") or line.startswith("+"):
        lineno += 1
      if old_lineno == lineno:
        display_line = "%4s | %s" % ("", line.rstrip())
      else:
        display_line = "%4s | %s" % (lineno, line.rstrip())
      if is_diff_line(line):
        if not in_block:
          print "..."
          # Display previous line
          print old_line
          in_block = True
        print display_line
      else:
        if in_block:
          # Display the next line aber a diff-block
          print display_line
        in_block = False
      old_line = display_line
      old_lineno = lineno
    print "..."
if __name__ == "__main__":
  SearchAndReplace(
    search_path=".",
    # e.g.: simple string replace:
    search_string='the old string',
    replace_string='the new string',
    # e.g.: Regular expression replacing (used re.sub)
    #search_string  = re.compile('{% url (.*?) %}'),
    #replace_string = "{% url '\g<1>' %}",
    search_only=True, # Display only the difference
#    search_only   = False, # write the new content
    file_filter=("*.py",), # fnmatch-Filter
  )

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
python获取一组数据里最大值max函数用法实例
May 26 Python
详解Django之admin组件的使用和源码剖析
May 04 Python
python如何生成各种随机分布图
Aug 27 Python
python解析含有重复key的json方法
Jan 22 Python
Python实现KNN(K-近邻)算法的示例代码
Mar 05 Python
详解python列表(list)的使用技巧及高级操作
Aug 15 Python
Pyqt5 关于流式布局和滚动条的综合使用示例代码
Mar 24 Python
windows10环境下用anaconda和VScode配置的图文教程
Mar 30 Python
Python爬虫谷歌Chrome F12抓包过程原理解析
Jun 04 Python
使用Django的JsonResponse返回数据的实现
Jan 15 Python
numba提升python运行速度的实例方法
Jan 25 Python
Python中异常处理用法
Nov 27 Python
python实现简单ftp客户端的方法
Jun 28 #Python
基于进程内通讯的python聊天室实现方法
Jun 28 #Python
python实现的简单RPG游戏流程实例
Jun 28 #Python
python实现自动登录人人网并采集信息的方法
Jun 28 #Python
Python实现将绝对URL替换成相对URL的方法
Jun 28 #Python
python实现将html表格转换成CSV文件的方法
Jun 28 #Python
python实现根据主机名字获得所有ip地址的方法
Jun 28 #Python
You might like
php设计模式 Command(命令模式)
2011/06/26 PHP
PHP 处理TXT文件(打开/关闭/检查/读取)
2013/05/13 PHP
php定时计划任务与fsockopen持续进程实例
2014/05/23 PHP
网站导致浏览器崩溃的原因总结(多款浏览器) 推荐
2010/04/15 Javascript
jquery自动将form表单封装成json的具体实现
2014/03/17 Javascript
Jquery 实现checkbox全选方法
2015/01/28 Javascript
jquery实现清新实用的网页菜单效果
2015/08/28 Javascript
深入剖析JavaScript中的函数currying柯里化
2016/04/29 Javascript
Javascript Function.prototype.bind详细分析
2016/12/29 Javascript
用director.js实现前端路由使用实例
2017/01/27 Javascript
jQuery实现获取隐藏div高度的方法示例
2017/02/09 Javascript
JavaScript获取select中text值的方法
2017/02/13 Javascript
Vue.js仿Metronic高级表格(二)数据渲染
2017/04/19 Javascript
Angular4学习之Angular CLI的安装与使用教程
2018/01/04 Javascript
js canvas实现二维码和图片合成的海报
2020/11/19 Javascript
Vue入门学习笔记【基本概念、对象、过滤器、指令等】
2019/04/13 Javascript
html5以及jQuery实现本地图片上传前的预览代码实例讲解
2021/03/01 jQuery
跟老齐学Python之for循环语句
2014/10/02 Python
在Python的框架中为MySQL实现restful接口的教程
2015/04/08 Python
解决pycharm无法调用pip安装的包问题
2018/05/18 Python
Django中使用Celery的教程详解
2018/08/24 Python
Python3.5常见内置方法参数用法实例详解
2019/04/29 Python
django-初始配置(纯手写)详解
2019/07/30 Python
python+tkinter实现学生管理系统
2019/08/20 Python
详解Python3 中的字符串格式化语法
2020/01/15 Python
使用sklearn对多分类的每个类别进行指标评价操作
2020/06/11 Python
浅谈优化Django ORM中的性能问题
2020/07/09 Python
美国在线印刷公司:PsPrint
2017/10/12 全球购物
AVI-8手表美国官方商店:AVI-8 USA
2019/04/10 全球购物
机械专业技术员求职信
2014/06/14 职场文书
给妈妈洗脚活动方案
2014/08/16 职场文书
酒店七夕情人节活动策划方案
2014/08/24 职场文书
2017寒假社会实践心得体会范文
2016/01/14 职场文书
Pandas加速代码之避免使用for循环
2021/05/30 Python
MYSQL 的10大经典优化案例场景实战
2021/09/14 MySQL
python turtle绘图命令及案例
2021/11/23 Python