- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试为每个模块及其子模块查找所有缺失的导入语句和错误。
有专门的工具可以满足我的需求吗?
我写的代码,但看起来真的很糟糕,也许这样的东西已经存在了?:
import os
def find_missing_imports(walk):
for items in walk:
d = items[0]
f_list = items[1]
for f in f_list:
module = f[:-3]
# posix_path
module_path = d.lstrip('.').replace('/','.').lstrip('.')
try:
__import__(module_path, fromlist=[module])
except IndentationError, e:
#print(f,e)
pass
except NameError, e:
print(d,f,e)
pass
except Exception, e:
print(f,e)
pass
walk = [[root,files] for root,dirs,files in os.walk('.') for fn in files if fn.endswith('.py')]
find_missing_imports(walk)
输出:
.[snip]
('./Sky_Group_Inventory_Scanner-wxpython/display_image/Dialogs', 'ImageSelectionFrame.py', NameError("name 'wx' is not defined",))
('./Sky_Group_Inventory_Scanner-wxpython/display_image/Dialogs', 'ItemSpecificsDialog.py', NameError("name 'wx' is not defined",))
('./Sky_Group_Inventory_Scanner-wxpython/display_image/Dialogs', 'ReturnCorrectWatchTitle.py', NameError("name 'wx' is not defined",))
.[snip]
重构前我的项目一团糟但有点用,现在重构后它坏了。
根据我在 codereview 上的初始帖子中的建议阅读“实用程序员”后:
我一直在挖掘以下源代码:
/usr/local/lib/python2.7/dist-packages/rope
ROPE 的文档似乎有点稀疏。我也一直在使用 Ninja-IDE,但未能找到解决我面临的问题的方法。
总的来说,我认为我错过了重构的全部内容。
可以看到当前的父目录布局here.
与原来相比before.
如能提供任何帮助,无论是关于填补缺失的术语,还是对于我所要问的问题,都将是极好的。
pylint -E/path/to/module
最佳答案
pip install pylint
将 pylint 指向有问题的文件夹/模块:
pylint/path/to/module > pylint_output
/path/to/module
是您感兴趣的 python 模块的位置。
例如:
my_project
|____ moduleA
|____ __init__.py
|____ A.py
|____ moduleB
|____ __init__.py
|____ B.py
./my_project/moduleA
./my_project/moduleB
这将创建一个包含全局评估的文件:
有趣的是,我的问题的直接答案是在 pylint 结果中会有具有这种布局的行:
************* Module module_name.sub_module.class_name.method_name
R: line_no, column: Issue description 'some_name' (issue-type)
C: line_no, column: Issue description 'some_name' (issue-type)
W: line_no, column: Issue description 'some_name' (issue-type)
E: line_no, column: Issue description 'some_name' (issue-type)
F: line_no, column: Issue description 'some_name' (issue-type)
************* Module module_name.sub_module.class_name.method_name
R: line_no, column: Issue description 'some_name' (issue-type)
C: line_no, column: Issue description 'some_name' (issue-type)
W: line_no, column: Issue description 'some_name' (issue-type)
E: line_no, column: Issue description 'some_name' (issue-type)
F: line_no, column: Issue description 'some_name' (issue-type)
因此,在我的大多数情况下,问题类型 (undefined-variable) 表示尚未导入的模块。 pylint -E/path/to/module
将仅返回 undefined variable 错误。
关于 python 绳 : How to Find all missing imports and errors in all sub modules refactoring,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23644805/
我是一名优秀的程序员,十分优秀!