phpython Code
a python interpreter written in php
Status: Pre-Alpha
Brought to you by:
francescobianco
--- a/trunk/python/python.lib.php +++ b/trunk/python/python.lib.php @@ -27,4 +27,7 @@ } } - +function python_file($filename) { + $code = file_get_contents($filename); + python_eval($code); +}