Pylint是一個Python代碼風格的檢查工具,功能上相似於pychecker,默認用PEP8做爲代碼風格標準,它所提供的功能包括:檢查代碼行的長度,檢查變量命名是否符合規範,檢查聲明的接口是否被真正的實現等等,詳細信息參考:http://docs.pylint.org/。linux
安裝:windows
sudo apt-get install pylint ? #Ubuntu工具
pip install pyint ? #windowsui
更多安裝方式能夠查看:http://www.pylint.org/#install編碼
使用:spa
pylint [options] module_or_package接口
好比運行:pylint setup.py ?,輸出:ip
No config file found, using default configurationget
************* Module setupstring
C: 1,0: Missing docstring
C: 6,0: Invalid name "here" for type constant (should match (([A-Z_][A-Z0-9_]*)|(__.*__))$)
C: 10,0: Invalid name "requires" for type constant (should match (([A-Z_][A-Z0-9_]*)|(__.*__))$)
C: 31,0: Comma not followed by a space
if sys.version_info[:3] < (2,5,0):
這部分是源代碼的分析結果,其格式是: 第一行都是這樣子: ****************** Module 模塊的名稱 接下來的幾行就是message,其格式爲:
MESSAGE TYPE: LINE NUM:[OBJECT:] MESSAGE MESSAGE有以下幾種類型:
pylint -r n 第二部分就是一些統計報告,這部分能夠不關注。