Comment vérifier si un script Python s'exécute

# using Ubuntu
ps -aux | grep "python"  # will give you the list of python process running
sandy_codes_py