Share your text data anonymously and free
<?php
if(isset($_GET['arg1']) && isset($_GET['arg2'])){
$arg1 = $_GET['arg1'];
$arg2 = $_GET['arg2'];
$command = escapeshellcmd('python go.py ' . $arg1 . ' ' . $arg2);
$output = shell_exec($command);
echo $output;
}
?>