<?php
	header('Access-Control-Allow-Origin: *');
	session_start();
	$Size = $_GET["Size"];
	print "Size($Size)<br>";
	$command = "/bin/python listNodes.py 33" . escapeshellarg($Size) . " 2>&1";
	$output = shell_exec($command);
	echo $output;
?>

