Python script to compile your python code
Hello, this is a python script to compile your python project and get the compilation error.
This was usefull for me to catch my compilation errors before I could find them suring execution.
result = python_code_compiler.complile("../source_path")
if result is False:
raise Exception('Code has errors')
Hope you all like it :)