Tag: 框架代码

什么是最好的Python库模块的骨架代码?

很多python IDE将会以如下模板启动你: print 'hello world' 这是不够的…所以这里是我的骨架代码来开始这个问题: 我的模块骨架,简短版本: #!/usr/bin/env python """ Module Docstring """ # ## Code goes here. # def test(): """Testing Docstring""" pass if __name__=='__main__': test() 和, 我的模块骨架,长版本: #!/usr/bin/env python # -*- coding: ascii -*- """ Module Docstring Docstrings: http://www.python.org/dev/peps/pep-0257/ """ __author__ = 'Joe Author (joe.author@website.org)' __copyright__ = 'Copyright (c) 2009-2010 Joe Author' __license__ […]