문제

i have a python file and want to check syntax error without compiling. I know about 'compileall', 'py_compile' but these all compile the code.

도움이 되었습니까?

해결책

So you'll need some static code analysis. There are several tools that can do so with Python:

Personally, I use Pylint. It is rather strict but with some minimal configuration you'll get quickly some useful feedback. It can be installed using pip:

pip install pylint
pylint <my_module>.py

There are some options to scan whole folders. Have a look at http://docs.pylint.org/run.html

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top