`
dream_people
  • 浏览: 60753 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

我在vi里自动给python代码生成注释的代码,linux

阅读更多

不知道你是不是用vi,如果是的话,可以用这段代码,我是放在缺省路径下的,取名为pyTool

 

在vi的一个函数行进入命令模式,命令为 :pyTool -func

就会给当前这个函数生成注释

 

类上 运行 :pyTool -cloass

就会给当前类生成注释

 

代码如下

 

#!/bin/env python
#coding:utf-8

import os,sys,re
import re,time

class PyAnsy:
    author = 'dream.people'

    def Now(self):
        return "%04d/%02d/%02d %02d:%02d" % time.localtime()[:5]

    def GetFile(self,filename):
        _lines = []
        if filename == '':
            while True:
                _line = sys.stdin.readline()
                if _line == '':
                    break
                _lines.append(_line)
        else:
            _lines = open(filename,"r").readlines()

        return _lines
 
    def ClassComment(self):
        line = self.GetFile('')[0]
        if line == '':
            return

        g = re.match("^( *)class  *([^(:]*).*",line)
        if g == None:
            print line
            return

        blank,classname = g.groups()
        blank += "    "
        comment = blank + '"""\n'
        comment += blank + '@author     :    %s\n' % self.author
        comment += blank + 'comment     :    \n'
        comment += blank + 'create date :    %s\n' % self.Now()
        comment += blank + '-----------------------------------------\n'
        comment += blank + 'modify date :    \n'
        comment += blank + '@author     :    \n'
        comment += blank + 'reason      :    \n'
        comment += blank + '"""'

        print line.rstrip()
        print comment

    def FuncComment(self):
        line = self.GetFile('')[0]
        if line == '':
            return

        g = re.match("^( *)def  *([^(]*)\(([^)]*)\).*",line)
        if g == None:
            print line
            return

        blank,fname,params = g.groups()
        params = params.split(",")
        blank += "    "
        comment = blank + '"""\n'
        comment += blank + '@author     :    %s\n' % self.author
        comment += blank + 'comment     :    \n'
        comment += blank + 'parameter   :    \n'
        for param in params:
            comment += blank + '    %s - \n' % param
        comment += blank + 'return value:    \n'
        comment += blank + 'create date :    %s\n' % self.Now()
        comment += blank + '-----------------------------------------\n'
        comment += blank + 'modify date :    \n'
        comment += blank + '@author     :    \n'
        comment += blank + 'reason      :    \n'
        comment += blank + '"""'

        print line.rstrip()
        print comment


ansy = PyAnsy()
if len(sys.argv) < 2:
    print """命令行: pyTool option [filename]
    选项:
        -func 添加函数备注
"""
 
    sys.exit(-1)

flag = sys.argv[1]

if len(sys.argv) != 3:
    filename = ''
else:
    filename = sys.argv[2]

if flag == '-func':
    ansy.FuncComment()
elif flag == '-class':
    ansy.ClassComment()
else:
    sys.exit(-1)

 
分享到:
评论

相关推荐

    ch7 linux软件开发工具1

    编辑器如vi、emacs、gedit等用于编写源代码,而indent命令则能根据预设风格(如K&R或GNU风格)自动调整代码缩进,保持代码整洁一致。 C程序的编译通常涉及gcc。通过gcc,开发者可以将源代码编译成目标文件,然后...

    python-vimrc:用于Python Cython C开发的VIM配置

    在VIM中,Python支持包括但不限于语法高亮、自动补全、代码跳转等特性。 4. **Cython**:Cython是Python的一个编译器,它允许编写接近Python的代码,但能生成C扩展模块,提高执行速度。在VIM配置中,可能包括了对...

    linux Apache CGI 安装配置

    - 使用文本编辑器(如`vi`)打开`httpd.conf`,取消`ScriptAlias /cgi-bin/ "/usr/local/apache2/cgi-bin/"`这一行的注释(去掉前面的`#`)。 - 重启Apache使配置生效,使用`apachectl restart`命令。 3. **创建...

    labview-toolskit.rar_LabView_

    6. 跨平台支持:LabVIEW支持Windows、Mac OS和Linux等多个操作系统,这意味着用户可以在不同的硬件平台上进行报表生成和数据存储的工作。 7. 整合能力:LabVIEW可以与其他软件和硬件设备无缝集成,例如与MATLAB、...

    5-NSD云计算王者荣耀-面试题参考.pdf

    - `#`: 注释符,在Shell脚本中表示注释。 - `.`, `..`: 当前目录和上一级目录。 - `~`: 用户家目录。 - `*`: 通配符,匹配任意字符。 - `|`: 管道符号,连接两个命令。 7. **向文件写入内容** - 方法一:使用...

Global site tag (gtag.js) - Google Analytics