Python: Alle Source-Files kompilieren (auch nicht inkludierte)

Python kompiliert automatisch inkludierte Sourcefiles, Betonung liegt auf inkludierte Files. Wie also Python-Dateien kompilieren, die nicht inkludiert werden?

python -m compileall .

oder aus Python heraus:

import py_compile
py_compile.compile("main.py")

Schreibe einen Kommentar