I have the php page which lists the backups with filename and username. the backups are done with python script but for web interface I used php.
Now I want to put t
Yes you can call exec("python pythonscript.py someparams");
or if you need to save the output to a variable use this code
exec("python mypythonscript.py someparams",$output);
var_dump($output);
More informaiton: call python script by php and solve errors
You can call the shell from PHP:
and there are more.