472 Stimmen

Wie kann ich die Syntax eines Python-Skripts überprüfen, ohne es auszuführen?

Ich benutzte früher perl -c programfile um die Syntax eines Perl-Programms zu prüfen und es dann zu beenden, ohne es auszuführen. Gibt es eine gleichwertige Möglichkeit, dies für ein Python-Skript zu tun?

15voto

user1338062 Punkte 10425
python -m compileall -q .

Kompiliert alles im aktuellen Verzeichnis rekursiv und gibt nur Fehler aus.

$ python -m compileall --help
usage: compileall.py [-h] [-l] [-r RECURSION] [-f] [-q] [-b] [-d DESTDIR] [-x REGEXP] [-i FILE] [-j WORKERS] [--invalidation-mode {checked-hash,timestamp,unchecked-hash}] [FILE|DIR [FILE|DIR ...]]

Utilities to support installing Python libraries.

positional arguments:
  FILE|DIR              zero or more file and directory names to compile; if no arguments given, defaults to the equivalent of -l sys.path

optional arguments:
  -h, --help            show this help message and exit
  -l                    don't recurse into subdirectories
  -r RECURSION          control the maximum recursion level. if `-l` and `-r` options are specified, then `-r` takes precedence.
  -f                    force rebuild even if timestamps are up to date
  -q                    output only error messages; -qq will suppress the error messages as well.
  -b                    use legacy (pre-PEP3147) compiled file locations
  -d DESTDIR            directory to prepend to file paths for use in compile-time tracebacks and in runtime tracebacks in cases where the source file is unavailable
  -x REGEXP             skip files matching the regular expression; the regexp is searched for in the full path of each file considered for compilation
  -i FILE               add all the files and directories listed in FILE to the list considered for compilation; if "-", names are read from stdin
  -j WORKERS, --workers WORKERS
                        Run compileall concurrently
  --invalidation-mode {checked-hash,timestamp,unchecked-hash}
                        set .pyc invalidation mode; defaults to "checked-hash" if the SOURCE_DATE_EPOCH environment variable is set, and "timestamp" otherwise.

Der Exit-Wert ist 1, wenn Syntaxfehler gefunden wurden.

Danke C2H5OH.

2voto

shakhmatov Punkte 2683

Vielleicht ist der Online-Checker PEP8 nützlich: http://pep8online.com/

1voto

Josh Punkte 632

Danke für die obigen Antworten @Rosh Oxymoron. Ich habe das Skript verbessert, um alle Dateien in einem Verzeichnis zu scannen, die Python-Dateien sind. Also für uns faule Leute einfach das Verzeichnis angeben und es wird alle Dateien in diesem Verzeichnis scannen, die Python sind.

import sys
import glob, os

os.chdir(sys.argv[1])
for file in glob.glob("*.py"):
    source = open(file, 'r').read() + '\n'
    compile(source, file, 'exec')

Save this as checker.py and run python checker.py ~/YOURDirectoryTOCHECK

0voto

Yordan Georgiev Punkte 4516

Aus irgendeinem Grund (ich bin ein Py-Neuling ...) funktionierte der Aufruf -m nicht ...

Hier ist also eine Bash-Wrapper-Funktion ...

# ---------------------------------------------------------
# check the python synax for all the *.py files under the
# <<product_version_dir/sfw/python
# ---------------------------------------------------------
doCheckPythonSyntax(){

    doLog "DEBUG START doCheckPythonSyntax"

    test -z "$sleep_interval" || sleep "$sleep_interval"
    cd $product_version_dir/sfw/python
    # python3 -m compileall "$product_version_dir/sfw/python"

    # foreach *.py file ...
    while read -r f ; do \

        py_name_ext=$(basename $f)
        py_name=${py_name_ext%.*}

        doLog "python3 -c \"import $py_name\""
        # doLog "python3 -m py_compile $f"

        python3 -c "import $py_name"
        # python3 -m py_compile "$f"
        test $! -ne 0 && sleep 5

    done < <(find "$product_version_dir/sfw/python" -type f -name "*.py")

    doLog "DEBUG STOP  doCheckPythonSyntax"
}
# eof func doCheckPythonSyntax

CodeJaeger.com

CodeJaeger ist eine Gemeinschaft für Programmierer, die täglich Hilfe erhalten..
Wir haben viele Inhalte, und Sie können auch Ihre eigenen Fragen stellen oder die Fragen anderer Leute lösen.

Powered by:

X